pbom发布和导入SAP时项目类别为F项,则给POTX1 赋值来源EBOM的父级物料编码
This commit is contained in:
parent
03158f4578
commit
58ac1426be
|
|
@ -265,6 +265,10 @@ public class BomNewPbomExportToSAPImpl implements IBomNewPbomExportToSAP {
|
||||||
t.setIDNRK("");
|
t.setIDNRK("");
|
||||||
t.setPOTX1(child.getMaterialDesc());
|
t.setPOTX1(child.getMaterialDesc());
|
||||||
}
|
}
|
||||||
|
//项目类别为F项,则给POTX1 赋值来源EBOM的父级物料编码 by luohj 20240826
|
||||||
|
if(ProjectTypeInputTypeEnum.ProjectTypeEnum.TYPE_F.getValue().equalsIgnoreCase(child.getProjectType())){
|
||||||
|
t.setPOTX1(child.getSourceParentMaterialNo());
|
||||||
|
}
|
||||||
t.setChildRowId(child.getRowId());
|
t.setChildRowId(child.getRowId());
|
||||||
return t;
|
return t;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue