1
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user