|
@@ -661,6 +661,8 @@ public class StackingAndLoadingVehiclesServiceImpl extends ServiceImpl<StackingA
|
|
|
loadingParams.setStackingAndLoadingVehiclesList(stackingAndLoadingVehiclesLists);
|
|
|
|
|
|
List<StackingAndLoadingVehicles> stackingAndLoadingVehiclesList = loadingParams.getStackingAndLoadingVehiclesList();
|
|
|
+
|
|
|
+ log.info("{}{}", "自动化下垛结果集合:", JSON.toJSON(stackingAndLoadingVehiclesList));
|
|
|
// 获取所有的坯号集合
|
|
|
List<String> billetNosList = stackingAndLoadingVehiclesList.stream().map(StackingAndLoadingVehicles::getBilletNos)
|
|
|
.flatMap(billetNos -> {
|
|
@@ -839,8 +841,10 @@ public class StackingAndLoadingVehiclesServiceImpl extends ServiceImpl<StackingA
|
|
|
.set(StackingAndLoadingVehicles::getShiftGroup, null);
|
|
|
StackingAndLoadingVehicles stackingAndLoadingVehicles = new StackingAndLoadingVehicles();
|
|
|
BeanUtils.copyProperties(x, stackingAndLoadingVehicles);
|
|
|
+ log.info("{}{}", "自动化下垛初始化容器后的信息", JSON.toJSON(stackingAndLoadingVehicles));
|
|
|
stackingAndLoadingVehiclesMapper.update(stackingAndLoadingVehicles, updateWrapper);
|
|
|
});
|
|
|
+
|
|
|
// 3 保存 下垛日志 stacking_up_log
|
|
|
List<StackingDownLog> stackingDownLogList = new ArrayList<>();
|
|
|
List<RollClubTwoDetails> addRollClubTwoDetailsList = new ArrayList<>();
|
|
@@ -1152,6 +1156,7 @@ public class StackingAndLoadingVehiclesServiceImpl extends ServiceImpl<StackingA
|
|
|
stackingAndLoadingVehicles.setSpec(billetBasicInfo.getSpec());
|
|
|
stackingAndLoadingVehicles.setSteel(billetBasicInfo.getGrade());
|
|
|
stackingAndLoadingVehicles.setCreateDate(new Date());
|
|
|
+ log.info("{}{}", "》》》》》》》自动化起跺容器中的信息:", JSON.toJSON(stackingAndLoadingVehicles));
|
|
|
baseMapper.update(stackingAndLoadingVehicles, queryWrapperSA);
|
|
|
});
|
|
|
// 3 保存 起垛日志 stacking_up_log
|