Commit d2c8658d6c8d235ab9ef85f5e9e510107c0bccb0
1 parent
647b6130
组盘失败提示信息改为显示物料名称
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/huaheng/pc/shipment/shipmentContainerHeader/service/ShipmentContainerHeaderServiceImpl.java
... | ... | @@ -562,7 +562,7 @@ public class ShipmentContainerHeaderServiceImpl extends ServiceImpl<ShipmentCont |
562 | 562 | } |
563 | 563 | inventoryList.removeAll(removeInventoryList); |
564 | 564 | if (inventoryList.size()<1 && lock){ |
565 | - return AjaxResult.error("明细id为"+item.getId()+"的物料所在托盘全部处于锁定状态,请完成或取消任务后再进行组盘"); | |
565 | + return AjaxResult.error("'"+item.getMaterialName()+"' 所在托盘全部处于锁定状态,请完成或取消任务后再进行组盘"); | |
566 | 566 | } |
567 | 567 | |
568 | 568 | if(inventoryList.size() < 1 && item.getWaveId() != 0){ |
... | ... |