| | |
| | | * @Version: V1.0 |
| | | */ |
| | | public interface IPmsProcessBillMaterialsDetailService extends IService<PmsProcessBillMaterialsDetail> { |
| | | /** |
| | | * 根据物料Id查询明细 |
| | | * @param materialId |
| | | * @return |
| | | */ |
| | | List<PmsProcessBillMaterialsDetail> queryByMaterialId(String materialId); |
| | | |
| | | /** |
| | |
| | | * @param collect |
| | | */ |
| | | void saveBatchDetail(String materialsId, List<OrderBomDTO> collect); |
| | | |
| | | /** |
| | | * 物料拉动选择物料使用 |
| | | * 根据成品、半成品物料号 查询可选择的物料数据 |
| | | * @param materialNumber 成品、半成品物料编码 |
| | | * @return |
| | | */ |
| | | List<PmsProcessBillMaterialsDetail> queryByMaterialNumber(String materialNumber); |
| | | } |