Commit 7f7d90a15ee25b00065193cc9dd452207c9abc4a

Authored by 周峰
1 parent bcd39707

自动组盘成功,返回前端结果data设置为null

huaheng-wms-core/src/main/java/org/jeecg/modules/wms/shipment/shipmentCombination/service/impl/ShipmentCombinationServiceImpl.java
... ... @@ -135,9 +135,9 @@ public class ShipmentCombinationServiceImpl implements IShipmentCombinationServi
135 135 }
136 136 }
137 137 if (over) {
138   - return Result.OK("出库单已经配盘");
  138 + return Result.OK("出库单已经配盘", null);
139 139 }
140   - return Result.OK("自动组盘成功");
  140 + return Result.OK("自动组盘成功", null);
141 141 }
142 142  
143 143 @Override
... ... @@ -210,7 +210,7 @@ public class ShipmentCombinationServiceImpl implements IShipmentCombinationServi
210 210 throw new ServiceException(result.getMessage());
211 211 }
212 212 }
213   - return Result.OK("自动组盘成功");
  213 + return Result.OK("自动组盘成功", null);
214 214 }
215 215  
216 216 @Override
... ...