Commit f94c385c049ec9d4ad5e6ca862d030736181526b
1 parent
f7cd6300
feat:修复待入库明细里面,主体颜色没有取到值的问题。
Showing
2 changed files
with
2 additions
and
2 deletions
src/main/java/com/huaheng/api/mes/service/MesServiceImpl.java
... | ... | @@ -188,7 +188,7 @@ public class MesServiceImpl implements IMesService { |
188 | 188 | receiptDetail.setProductionWorker(receiptHeader.getProductionWorker()); |
189 | 189 | receiptDetail.setProductionWorkerName(receiptHeader.getProductionWorkerName()); |
190 | 190 | receiptDetail.setPaintStatus(receiptHeader.getPaintStatus()); |
191 | - | |
191 | + receiptDetail.setMaterialColor(receiptHeader.getMaterialColor()); | |
192 | 192 | |
193 | 193 | //判断是否为必须入库平库物料,通知单号带“展会”两个字的物料也必须入平库 |
194 | 194 | if (material == null || !judgeIsFlatWarehouse(material, receiptDetail.getNoticeNo())) { |
... | ... |
src/main/java/com/huaheng/api/wcs/service/warecellAllocation/LocationAllocationServiceImpl.java
... | ... | @@ -132,7 +132,7 @@ public class LocationAllocationServiceImpl implements LocationAllocationService |
132 | 132 | } |
133 | 133 | } |
134 | 134 | if (bigContainerLocations.isEmpty()) { |
135 | - return null; | |
135 | + return "可能是大托盘库位不够用了"; | |
136 | 136 | } |
137 | 137 | if (entry && bigContainerLocations.size() <= 4) {//留4个大托盘库位移库用 |
138 | 138 | return "可能是大托盘库位不够用了"; |
... | ... |