Commit f267cfd89df046f2cc91fb5323bb76171ce1977c
1 parent
ac0ca5e3
fix(出库单详情-批量删除):只有新建状态的出库单明细才能删除
Showing
1 changed file
with
2 additions
and
0 deletions
huaheng-wms-core/src/main/java/org/jeecg/modules/wms/shipment/shipmentHeader/service/IShipmentDetailService.java
... | ... | @@ -34,4 +34,6 @@ public interface IShipmentDetailService extends IService<ShipmentDetail> { |
34 | 34 | boolean updateStatusById(int status, int id); |
35 | 35 | |
36 | 36 | public void importFinishedProduct(List<ShipmentDetail> shipmentDetailList); |
37 | + | |
38 | + public Result removeDetailListById(List<String> idList); | |
37 | 39 | } |
... | ... |