| | |
| | | import org.jeecg.modules.lsw.entity.LswMaterialInventory; |
| | | import org.jeecg.modules.lsw.vo.LswMaterialInventoryVo; |
| | | import org.jeecg.modules.lsw.vo.MaterialInventoryStatisticsVO; |
| | | import org.jeecg.modules.lsw.vo.MaterialInventoryVO; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | */ |
| | | public interface ILswMaterialInventoryService extends IService<LswMaterialInventory> { |
| | | /** 通过物料编码和线边库id查询物料库存 */ |
| | | List<LswMaterialInventoryVo> selectLineSideMaterialInventoryByMaterialNumber(List<String> bomMaterialNumberList, String factoryId); |
| | | List<LswMaterialInventoryVo> selectLineSideMaterialInventoryByMaterialNumber(List<String> bomMaterialNumberList, String factoryId, String heatFlag); |
| | | |
| | | /** |
| | | * 库存统计 |
| | |
| | | * @return |
| | | */ |
| | | LswMaterialInventory queryByMaterialNumberAndBatchNumber(String materialNumber, String batchNumber, String warehouseId); |
| | | |
| | | /** |
| | | * 查询物料库存 |
| | | * @param factoryId |
| | | * @return |
| | | */ |
| | | List<MaterialInventoryVO> queryMaterialInventory(String factoryId); |
| | | } |