|
@@ -371,11 +371,12 @@ public class BilletHotsendBaseServiceImpl extends ServiceImpl<BilletHotsendBaseM
|
|
|
isStorageBill.setShiftGroup(shiftGroup);
|
|
|
isStorageBill.setShift(shift);
|
|
|
storageBillService.updateById(isStorageBill);
|
|
|
- }else {
|
|
|
- if (!isStorageBill.getCcmNo().equals(ccmNo)){
|
|
|
- log.info("{}{}", ",铸机号与钢坯不一致,C端自动化热装<保存>失败!", JSON.toJSON(isStorageBill));
|
|
|
- return;
|
|
|
- }
|
|
|
+ }else if (!isStorageBill.getCcmNo().equals(ccmNo)){
|
|
|
+ // 更新铸机号,到装运单
|
|
|
+ isStorageBill.setCcmNo(ccmNo);
|
|
|
+ isStorageBill.setShiftGroup(shiftGroup);
|
|
|
+ isStorageBill.setShift(shift);
|
|
|
+ storageBillService.updateById(isStorageBill);
|
|
|
}
|
|
|
|
|
|
BilletHotsend billetHotsends = new BilletHotsend();
|