|
|
@ -939,20 +939,20 @@ public class WarehouseTrayTypeServiceImpl extends BaseServiceImpl<WarehouseTrayT |
|
|
|
if(chuanFlag){ |
|
|
|
if(chuanFlag){ |
|
|
|
if(Objects.isNull(warehouseTrayGoodsEntity)){ |
|
|
|
if(Objects.isNull(warehouseTrayGoodsEntity)){ |
|
|
|
//存入有数据库存品与托盘绑定关系表
|
|
|
|
//存入有数据库存品与托盘绑定关系表
|
|
|
|
warehouseTrayGoodsService.saveEntityStock(materialId, marketId,trayTypeEntity,incomingBatch,1, "1"); |
|
|
|
warehouseTrayGoodsService.saveEntityStock(materialId, marketId,trayTypeEntity,incomingBatch,materialCode,1, "1"); |
|
|
|
}else{ |
|
|
|
}else{ |
|
|
|
warehouseTrayGoodsService.updateEntityStock(warehouseTrayGoodsEntity,1); |
|
|
|
warehouseTrayGoodsService.updateEntityStock(warehouseTrayGoodsEntity,1); |
|
|
|
} |
|
|
|
} |
|
|
|
}else{ |
|
|
|
}else{ |
|
|
|
if(Objects.isNull(warehouseTrayGoodsEntity)){ |
|
|
|
if(Objects.isNull(warehouseTrayGoodsEntity)){ |
|
|
|
//存入有数据库存品与托盘绑定关系表
|
|
|
|
//存入有数据库存品与托盘绑定关系表
|
|
|
|
warehouseTrayGoodsService.saveEntityStock(materialId, marketId,trayTypeEntity,incomingBatch,1, "0"); |
|
|
|
warehouseTrayGoodsService.saveEntityStock(materialId, marketId,trayTypeEntity,incomingBatch,materialCode,1, "0"); |
|
|
|
}else{ |
|
|
|
}else{ |
|
|
|
warehouseTrayGoodsService.updateEntityStock(warehouseTrayGoodsEntity,-1); |
|
|
|
warehouseTrayGoodsService.updateEntityStock(warehouseTrayGoodsEntity,-1); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
// //添加上拖日志表
|
|
|
|
// //添加上拖日志表
|
|
|
|
warehouseTrayGoodsLogService.saveLogStock(materialId, marketId,trayTypeEntity,incomingBatch,1, "1", "分拣打托:有数据库存品 分拣", "1"); |
|
|
|
warehouseTrayGoodsLogService.saveLogStock(materialId, marketId,trayTypeEntity,incomingBatch,materialCode,1, "1", "分拣打托:有数据库存品 分拣", "1"); |
|
|
|
|
|
|
|
|
|
|
|
updateNumByTrayTypeId(trayTypeEntity); |
|
|
|
updateNumByTrayTypeId(trayTypeEntity); |
|
|
|
|
|
|
|
|
|
|
@ -975,6 +975,7 @@ public class WarehouseTrayTypeServiceImpl extends BaseServiceImpl<WarehouseTrayT |
|
|
|
Long trayTypeId = trayGoodsEntity.getTrayTypeId(); |
|
|
|
Long trayTypeId = trayGoodsEntity.getTrayTypeId(); |
|
|
|
Integer num = trayGoodsEntity.getNum(); |
|
|
|
Integer num = trayGoodsEntity.getNum(); |
|
|
|
Long materialId = trayGoodsEntity.getAssociationId(); |
|
|
|
Long materialId = trayGoodsEntity.getAssociationId(); |
|
|
|
|
|
|
|
String materialCode = trayGoodsEntity.getAssociationValue(); |
|
|
|
Long marketId = trayGoodsEntity.getMarketId(); |
|
|
|
Long marketId = trayGoodsEntity.getMarketId(); |
|
|
|
Long trayId = trayGoodsEntity.getTrayId(); |
|
|
|
Long trayId = trayGoodsEntity.getTrayId(); |
|
|
|
String incomingBatch = trayGoodsEntity.getIncomingBatch(); |
|
|
|
String incomingBatch = trayGoodsEntity.getIncomingBatch(); |
|
|
@ -1003,7 +1004,7 @@ public class WarehouseTrayTypeServiceImpl extends BaseServiceImpl<WarehouseTrayT |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//添加下托日志
|
|
|
|
//添加下托日志
|
|
|
|
warehouseTrayGoodsLogService.saveLogStock(materialId,marketId,trayTypeEntity,incomingBatch,num,"0","分拣打托:有数据库存品分拣","2"); |
|
|
|
warehouseTrayGoodsLogService.saveLogStock(materialId,marketId,trayTypeEntity,incomingBatch,materialCode,num,"0","分拣打托:有数据库存品分拣","2"); |
|
|
|
|
|
|
|
|
|
|
|
updateNumByTrayTypeId(trayTypeEntity); |
|
|
|
updateNumByTrayTypeId(trayTypeEntity); |
|
|
|
|
|
|
|
|
|
|
@ -1137,6 +1138,7 @@ public class WarehouseTrayTypeServiceImpl extends BaseServiceImpl<WarehouseTrayT |
|
|
|
} |
|
|
|
} |
|
|
|
String marketName = stockListEntity.getMarketName(); |
|
|
|
String marketName = stockListEntity.getMarketName(); |
|
|
|
Long materialId = stockListEntity.getMaterialId(); |
|
|
|
Long materialId = stockListEntity.getMaterialId(); |
|
|
|
|
|
|
|
String cargoNumber = stockListEntity.getCargoNumber(); |
|
|
|
BasicMaterialEntity materialEntity = basicMaterialClient.getMaterialOwnId(materialId); |
|
|
|
BasicMaterialEntity materialEntity = basicMaterialClient.getMaterialOwnId(materialId); |
|
|
|
if(Objects.isNull(materialEntity)){ |
|
|
|
if(Objects.isNull(materialEntity)){ |
|
|
|
log.warn("#########saveTrayTypeByStock: 未找到物料信息 materialId={}",materialId); |
|
|
|
log.warn("#########saveTrayTypeByStock: 未找到物料信息 materialId={}",materialId); |
|
|
@ -1193,20 +1195,20 @@ public class WarehouseTrayTypeServiceImpl extends BaseServiceImpl<WarehouseTrayT |
|
|
|
if(chuanFlag){ |
|
|
|
if(chuanFlag){ |
|
|
|
if(Objects.isNull(warehouseTrayGoodsEntity)){ |
|
|
|
if(Objects.isNull(warehouseTrayGoodsEntity)){ |
|
|
|
//存入有数据库存品与托盘绑定关系表
|
|
|
|
//存入有数据库存品与托盘绑定关系表
|
|
|
|
warehouseTrayGoodsService.saveEntityStock(materialId, marketId,trayTypeEntity,incomingBatch,num, "1"); |
|
|
|
warehouseTrayGoodsService.saveEntityStock(materialId, marketId,trayTypeEntity,incomingBatch,cargoNumber,num, "1"); |
|
|
|
}else{ |
|
|
|
}else{ |
|
|
|
warehouseTrayGoodsService.updateEntityStock(warehouseTrayGoodsEntity,num); |
|
|
|
warehouseTrayGoodsService.updateEntityStock(warehouseTrayGoodsEntity,num); |
|
|
|
} |
|
|
|
} |
|
|
|
}else{ |
|
|
|
}else{ |
|
|
|
if(Objects.isNull(warehouseTrayGoodsEntity)){ |
|
|
|
if(Objects.isNull(warehouseTrayGoodsEntity)){ |
|
|
|
//存入有数据库存品与托盘绑定关系表
|
|
|
|
//存入有数据库存品与托盘绑定关系表
|
|
|
|
warehouseTrayGoodsService.saveEntityStock(materialId, marketId,trayTypeEntity,incomingBatch,num, "0"); |
|
|
|
warehouseTrayGoodsService.saveEntityStock(materialId, marketId,trayTypeEntity,incomingBatch,cargoNumber,num, "0"); |
|
|
|
}else{ |
|
|
|
}else{ |
|
|
|
warehouseTrayGoodsService.updateEntityStock(warehouseTrayGoodsEntity,-num); |
|
|
|
warehouseTrayGoodsService.updateEntityStock(warehouseTrayGoodsEntity,-num); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
// //添加上拖日志表
|
|
|
|
// //添加上拖日志表
|
|
|
|
warehouseTrayGoodsLogService.saveLogStock(materialId, marketId,trayTypeEntity,incomingBatch,num, "1", "分拣打托:无数据库存品 分拣", "1"); |
|
|
|
warehouseTrayGoodsLogService.saveLogStock(materialId, marketId,trayTypeEntity,incomingBatch,cargoNumber,num, "1", "分拣打托:无数据库存品 分拣", "1"); |
|
|
|
|
|
|
|
|
|
|
|
updateNumByTrayTypeId(trayTypeEntity); |
|
|
|
updateNumByTrayTypeId(trayTypeEntity); |
|
|
|
|
|
|
|
|
|
|
@ -1251,6 +1253,7 @@ public class WarehouseTrayTypeServiceImpl extends BaseServiceImpl<WarehouseTrayT |
|
|
|
WarehouseTrayGoodsEntity trayGoodsEntity = warehouseTrayGoodsService.getById(trayGoodsId); |
|
|
|
WarehouseTrayGoodsEntity trayGoodsEntity = warehouseTrayGoodsService.getById(trayGoodsId); |
|
|
|
Long trayTypeId = trayGoodsEntity.getTrayTypeId(); |
|
|
|
Long trayTypeId = trayGoodsEntity.getTrayTypeId(); |
|
|
|
Long materialId = trayGoodsEntity.getAssociationId(); |
|
|
|
Long materialId = trayGoodsEntity.getAssociationId(); |
|
|
|
|
|
|
|
String materialCode = trayGoodsEntity.getAssociationValue(); |
|
|
|
Long marketId = trayGoodsEntity.getMarketId(); |
|
|
|
Long marketId = trayGoodsEntity.getMarketId(); |
|
|
|
String incomingBatch = trayGoodsEntity.getIncomingBatch(); |
|
|
|
String incomingBatch = trayGoodsEntity.getIncomingBatch(); |
|
|
|
WarehouseTrayTypeEntity trayTypeEntity = baseMapper.selectById(trayTypeId); |
|
|
|
WarehouseTrayTypeEntity trayTypeEntity = baseMapper.selectById(trayTypeId); |
|
|
@ -1258,7 +1261,7 @@ public class WarehouseTrayTypeServiceImpl extends BaseServiceImpl<WarehouseTrayT |
|
|
|
warehouseTrayGoodsService.updateEntityStock(trayGoodsEntity,enterNum); |
|
|
|
warehouseTrayGoodsService.updateEntityStock(trayGoodsEntity,enterNum); |
|
|
|
|
|
|
|
|
|
|
|
//添加下托日志 Long materialId,Long marketId, WarehouseTrayTypeEntity trayTypeEntity,Integer num, String bindingType, String remark, String palletizingType
|
|
|
|
//添加下托日志 Long materialId,Long marketId, WarehouseTrayTypeEntity trayTypeEntity,Integer num, String bindingType, String remark, String palletizingType
|
|
|
|
warehouseTrayGoodsLogService.saveLogStock(materialId,marketId,trayTypeEntity,incomingBatch,Math.abs(enterNum),"0","下架:库存品部分下架","2"); |
|
|
|
warehouseTrayGoodsLogService.saveLogStock(materialId,marketId,trayTypeEntity,incomingBatch,materialCode,Math.abs(enterNum),"0","下架:库存品部分下架","2"); |
|
|
|
|
|
|
|
|
|
|
|
updateNumByTrayTypeId(trayTypeEntity); |
|
|
|
updateNumByTrayTypeId(trayTypeEntity); |
|
|
|
} |
|
|
|
} |
|
|
|