|
@@ -15,6 +15,7 @@ import org.jeecg.modules.wzOutboundOrder.mapper.WzOutboundOrderHMapper;
|
|
|
import org.jeecg.modules.wzOutboundOrder.service.IWzOutboundOrderHService;
|
|
|
import org.jeecg.modules.wzOutboundOrder.vo.CLFCompareResultVO;
|
|
|
import org.jeecg.modules.wzOutboundOrder.vo.WzOutboundOrderBDetailListVO;
|
|
|
+import org.jeecg.modules.wzOutboundOrderBNew.mapper.WzOutboundOrderBNewMapper;
|
|
|
import org.jeecgframework.poi.excel.def.NormalExcelConstants;
|
|
|
import org.jeecgframework.poi.excel.entity.ExportParams;
|
|
|
import org.jeecgframework.poi.excel.view.JeecgEntityExcelView;
|
|
@@ -47,6 +48,11 @@ public class WzOutboundOrderHServiceImpl extends ServiceImpl<WzOutboundOrderHMap
|
|
|
|
|
|
@Autowired
|
|
|
private RedisUtil redisUtil;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ @SuppressWarnings("all")
|
|
|
+ private WzOutboundOrderBNewMapper orderBNewMapper;
|
|
|
+
|
|
|
/**查询列表*/
|
|
|
public List<WzOutboundOrderH> wzHlist(Wrapper<WzOutboundOrderH> queryWrapper) {
|
|
|
return this.getBaseMapper().selectList(queryWrapper);
|
|
@@ -80,17 +86,20 @@ public class WzOutboundOrderHServiceImpl extends ServiceImpl<WzOutboundOrderHMap
|
|
|
|
|
|
@Override
|
|
|
public List<CLfCompareDO> getCLFCompareDoListByTaskNoList(String tasknos) {
|
|
|
- return hMapper.getCLFCompareDoListByTaskNoList(tasknos);
|
|
|
+ //return hMapper.getCLFCompareDoListByTaskNoList(tasknos);
|
|
|
+ return orderBNewMapper.getCLFCompareDoListByTaskNoList(tasknos);
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
public List<WzOutboundOrderBDetailListVO> getClfList(String taskno) {
|
|
|
- return hMapper.getClfList(taskno);
|
|
|
+ //return hMapper.getClfList(taskno);
|
|
|
+ return orderBNewMapper.getClfList(taskno);
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
public List<CLfCompareDO> getCLFCompareDoListByTaskNoListHasPcCode(String taskno,Boolean hasPcCode,Double proportion) {
|
|
|
- return hMapper.getCLFCompareDoListByTaskNoListHasPcCode(taskno,hasPcCode,proportion);
|
|
|
+ //return hMapper.getCLFCompareDoListByTaskNoListHasPcCode(taskno,hasPcCode,proportion);
|
|
|
+ return orderBNewMapper.getCLFCompareDoListByTaskNoListHasPcCode(taskno,hasPcCode,proportion);
|
|
|
}
|
|
|
|
|
|
@Override
|