|
|
|
@ -1488,6 +1488,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
carsLoadScanEntity.setTrayCode(trayCode); |
|
|
|
|
carsLoadScanEntity.setNum(1); |
|
|
|
|
carsLoadScanEntity.setType(1); |
|
|
|
|
carsLoadScanEntity.setIsSupple(0); |
|
|
|
|
if(Objects.isNull(parcelListEntity)){ |
|
|
|
|
carsLoadScanEntity.setLoadingAbnormal(1); |
|
|
|
|
isAbnormal = 1; |
|
|
|
@ -1711,6 +1712,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
carsLoadScanEntity.setScanCode(goodsName); |
|
|
|
|
carsLoadScanEntity.setScanStatus("1"); |
|
|
|
|
carsLoadScanEntity.setNum(enterNum); |
|
|
|
|
carsLoadScanEntity.setIsSupple(0); |
|
|
|
|
carsLoadScanEntity.setLoadingAbnormal(isAbnormal); |
|
|
|
|
carsLoadScanEntity.setType(2); |
|
|
|
|
carsLoadScanEntity.setIsData(isData); |
|
|
|
@ -1957,12 +1959,24 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
@Override |
|
|
|
|
public R zeroSuppleList(LoadCarsDTO loadCarsDTO) { |
|
|
|
|
|
|
|
|
|
Long warehouseId = loadCarsDTO.getWarehouseId(); |
|
|
|
|
Integer pageNum = loadCarsDTO.getPageNum(); |
|
|
|
|
Integer pageSize = loadCarsDTO.getPageSize(); |
|
|
|
|
IPage<Object> page = new Page<>(); |
|
|
|
|
page.setCurrent(loadCarsDTO.getPageNum()); |
|
|
|
|
page.setSize(loadCarsDTO.getPageSize()); |
|
|
|
|
|
|
|
|
|
//查询当前仓零担在库列表
|
|
|
|
|
IPage<JSONObject> pageList = distributionStockArticleClient.findZeroListByWarehouseId(warehouseId,pageNum,pageSize); |
|
|
|
|
// IPage<JSONObject> pageList = distributionStockArticleClient.findZeroListByWarehouseId(warehouseId,pageNum,pageSize);
|
|
|
|
|
IPage<JSONObject> pageList = baseMapper.findZeroListByWarehouseId(page,loadCarsDTO); |
|
|
|
|
return R.data(pageList); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R useZeroList(LoadCarsDTO loadCarsDTO) { |
|
|
|
|
IPage<Object> page = new Page<>(); |
|
|
|
|
page.setCurrent(loadCarsDTO.getPageNum()); |
|
|
|
|
page.setSize(loadCarsDTO.getPageSize()); |
|
|
|
|
|
|
|
|
|
IPage<JSONObject> pageList = baseMapper.useZeroList(page,loadCarsDTO); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return R.data(pageList); |
|
|
|
|
} |
|
|
|
|