| | |
| | | |
| | | import com.baomidou.mybatisplus.plugins.Page; |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | import zy.cloud.wms.common.model.MatnrDto; |
| | | import zy.cloud.wms.manager.entity.LocDetl; |
| | | import zy.cloud.wms.manager.entity.param.StockTransferParam; |
| | | |
| | |
| | | |
| | | /** |
| | | * 查看当前订单号的物料在库存中是否充足 |
| | | * @param number |
| | | * @param dtos |
| | | */ |
| | | void checkLocDetlCount(String number); |
| | | void checkLocDetlCount(List<MatnrDto> dtos); |
| | | |
| | | List<StockTransferParam> checkLocDetlCountOfRes(String number); |
| | | List<StockTransferParam> checkLocDetlCountOfRes(List<MatnrDto> dtos); |
| | | |
| | | /** |
| | | * 减少库存 |
| | |
| | | */ |
| | | List<LocDetl> getStockStatisExcel(); |
| | | |
| | | /** |
| | | * 获取当前物料的采购单数量 |
| | | * @return |
| | | */ |
| | | Double getStockByDocType34(String matnr); |
| | | |
| | | } |