This commit is contained in:
van
2026-05-19 23:15:05 +08:00
parent 379a11ae63
commit 4aec0177dd
9 changed files with 104 additions and 4 deletions

View File

@@ -5,6 +5,7 @@ import com.ruoyi.jarvis.domain.ErpGoofishOrder;
import com.ruoyi.jarvis.domain.ErpGoofishOrderEventLog;
import com.ruoyi.jarvis.domain.ErpGoofishOrderEventLogQuery;
import com.ruoyi.jarvis.dto.GoofishShipPreviewVo;
import com.ruoyi.jarvis.dto.GoofishRrsLogisticsStatsVo;
import java.util.List;
@@ -17,6 +18,9 @@ public interface IErpGoofishOrderService {
*/
void asyncPipelineAfterNotify(String appid, JSONObject notifyBody);
/** 日日顺 + 关联京东出库统计(侧边栏):已出库(去重运单口径)/待出库 */
GoofishRrsLogisticsStatsVo selectRrsJdLinkedLogisticsStats();
List<ErpGoofishOrder> selectList(ErpGoofishOrder query);
ErpGoofishOrder selectById(Long id);

View File

@@ -9,6 +9,7 @@ import com.ruoyi.jarvis.domain.JDOrder;
import com.ruoyi.jarvis.domain.ErpGoofishOrderEventLogQuery;
import com.ruoyi.jarvis.domain.ErpOpenConfig;
import com.ruoyi.jarvis.dto.GoofishNotifyMessage;
import com.ruoyi.jarvis.dto.GoofishRrsLogisticsStatsVo;
import com.ruoyi.jarvis.dto.GoofishShipPreviewVo;
import com.ruoyi.jarvis.mapper.ErpGoofishOrderEventLogMapper;
import com.ruoyi.jarvis.mapper.ErpGoofishOrderMapper;
@@ -83,6 +84,12 @@ public class ErpGoofishOrderServiceImpl implements IErpGoofishOrderService {
goofishOrderPipeline.runFullPipeline(appid, notifyBody);
}
@Override
public GoofishRrsLogisticsStatsVo selectRrsJdLinkedLogisticsStats() {
GoofishRrsLogisticsStatsVo vo = erpGoofishOrderMapper.selectRrsJdLinkedLogisticsStats();
return vo != null ? vo : new GoofishRrsLogisticsStatsVo();
}
@Override
public List<ErpGoofishOrder> selectList(ErpGoofishOrder query) {
return erpGoofishOrderMapper.selectList(query);