|
@@ -152,6 +152,11 @@ public class StackingAndLoadingVehiclesServiceImpl extends ServiceImpl<StackingA
|
|
|
});
|
|
|
|
|
|
StorageBill storageBill = loadingParams.getStorageBill();
|
|
|
+ if (storageBill != null && "1024".equals(storageBill.getTypeConfigId())){
|
|
|
+ result.put("fail", "请先确认目的地,垛位装车失败!");
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
String rollHeightStorageBillId = String.valueOf(IdWorker.getId());
|
|
|
handleStackDepartCommon(billetHotsend, stackingAndLoadingVehiclesList, loadingParams, billetHotsendTypeConfig, storageBill, rollHeightStorageBillId, rollClubCommonList);
|
|
|
|
|
@@ -579,6 +584,11 @@ public class StackingAndLoadingVehiclesServiceImpl extends ServiceImpl<StackingA
|
|
|
});
|
|
|
|
|
|
StorageBill storageBill = loadingParams.getStorageBill();
|
|
|
+ if (storageBill != null && "1024".equals(storageBill.getTypeConfigId())){
|
|
|
+ result.put("fail", "请先确认目的地,垛位发车失败!");
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
String rollHeightStorageBillId = String.valueOf(IdWorker.getId());
|
|
|
handleStackDepartCommon(billetHotsend, stackingAndLoadingVehiclesList, loadingParams, billetHotsendTypeConfig, storageBill, rollHeightStorageBillId, rollClubCommonList);
|
|
|
Map<String, List<RollClubCommon>> rollClubCommonListttt = groupByShiftAttributes(rollClubCommonList);
|