|
|
|
|
@ -252,11 +252,11 @@ public class PdaLoadServiceImpl extends BaseServiceImpl<WorkPlanMapper, WorkPlan |
|
|
|
|
.ppsName(processSetMap.get(prWorkPlan.getPpsId()).getName()) |
|
|
|
|
.makeTeam(teamSet.getTsName()) |
|
|
|
|
.wpItemList(wpItemList) |
|
|
|
|
.material(part.getMaterial()) |
|
|
|
|
.prodIdent(yieldOrder.getProductIdent()) |
|
|
|
|
.platingInfo(part.getPlate()) |
|
|
|
|
.plateCode(part.getPlateCode()) |
|
|
|
|
.configCode(part.getConfigCode()) |
|
|
|
|
.material(part != null ? part.getMaterial() : null) |
|
|
|
|
.prodIdent(part != null ? yieldOrder.getProductIdent() : null) |
|
|
|
|
.platingInfo(part != null ? part.getPlate() : null) |
|
|
|
|
.plateCode(part != null ? part.getPlateCode() : null) |
|
|
|
|
.configCode(part != null ? part.getConfigCode() : null) |
|
|
|
|
.build(); |
|
|
|
|
|
|
|
|
|
// orderInfo.material
|
|
|
|
|
|