rev:修改bom单明细表增加aps相关字段。

This commit is contained in:
2023-07-20 16:10:16 +08:00
parent 7e7bbe64ba
commit d43b0ba9eb
2 changed files with 3 additions and 3 deletions

View File

@@ -258,7 +258,7 @@ public class BomServiceImpl implements BomService {
//Bom主表
WQLObject wo_pdm_bi_bom = WQLObject.getWQLObject("pdm_bi_bom");
//Bom明细表
WQLObject wo_pdm_bomdtl_aps = WQLObject.getWQLObject("pdm_bi_bomdtl_aps");
WQLObject pdm_bi_bomdtl = WQLObject.getWQLObject("pdm_bi_bomdtl");
//物料表
WQLObject wo_material = WQLObject.getWQLObject("md_me_materialbase");
//原材料对应半成品
@@ -429,7 +429,7 @@ public class BomServiceImpl implements BomService {
bomDtlParam.put("manufacture", "");
}
//插入原材料明细
wo_pdm_bomdtl_aps.insert(bomDtlParam);
pdm_bi_bomdtl.insert(bomDtlParam);
}
}
if(j == 13) {
@@ -460,7 +460,7 @@ public class BomServiceImpl implements BomService {
bomDtlParam.put("instruction_type", "U");
bomDtlParam.put("instruction_code", "M");
//插入明细表
wo_pdm_bomdtl_aps.insert(bomDtlParam);
pdm_bi_bomdtl.insert(bomDtlParam);
}
}
}