| | |
| | | private String unit; |
| | | private String batchNo; |
| | | |
| | | @Schema(description = "销售订单号") |
| | | private String salesContractNo; |
| | | |
| | | @Schema(description = "源单号") |
| | | private String sourceOrderNo; |
| | | |
| | | |
| | | //入库类型 |
| | | private String recordType; |
| | |
| | | |
| | | List<StockInventory> listSelectableBatchNoByProductModelIds(@Param("productModelIds") List<Long> productModelIds); |
| | | |
| | | List<StockInventory> getByModelId(@Param("productModelId") Long productModelId); |
| | | List<StockInventoryDto> getByModelId(@Param("productModelId") Long productModelId); |
| | | |
| | | IPage<StockInventoryDto> getBatchNoQty(Page page, @Param("ew") StockInventoryDto stockInventoryDto); |
| | | } |
| | |
| | | |
| | | Boolean thawStock(StockInventoryDto stockInventoryDto); |
| | | |
| | | List<StockInventory> getByModelId(Long modelId); |
| | | List<StockInventoryDto> getByModelId(Long modelId); |
| | | |
| | | IPage<StockInventoryDto> getBatchNoQty(Page page, StockInventoryDto stockInventoryDto); |
| | | } |
| | |
| | | } |
| | | |
| | | @Override |
| | | public List<StockInventory> getByModelId(Long modelId) { |
| | | public List<StockInventoryDto> getByModelId(Long modelId) { |
| | | return stockInventoryMapper.getByModelId(modelId); |
| | | } |
| | | |