|
|
|
@ -148,12 +148,12 @@ public class PartInformationServiceImpl extends ServiceImpl<PartInformationMappe |
|
|
|
String site = inData.getSite(); |
|
|
|
String buNo = inData.getBuNo(); |
|
|
|
String partNo = inData.getPartNo(); |
|
|
|
//String functionType = "IP"; |
|
|
|
String umId = inData.getUmId() == null ? "" : inData.getUmId(); |
|
|
|
String familyId = inData.getFamilyID() == null ? "" : inData.getFamilyID(); |
|
|
|
String productGroupId1 = inData.getOtherGroup1() == null ? "" : inData.getOtherGroup1(); |
|
|
|
String productGroupId2 = inData.getOtherGroup2() == null ? "" : inData.getOtherGroup2(); |
|
|
|
String productGroupId3 = inData.getOtherGroup3() == null ? "" : inData.getOtherGroup3(); |
|
|
|
String codeNo = inData.getCodeNo() == null ? "" : inData.getCodeNo(); |
|
|
|
List<Object> params = new ArrayList<>(); |
|
|
|
params.add(site); |
|
|
|
params.add(buNo); |
|
|
|
@ -163,6 +163,7 @@ public class PartInformationServiceImpl extends ServiceImpl<PartInformationMappe |
|
|
|
params.add(productGroupId1); |
|
|
|
params.add(productGroupId2); |
|
|
|
params.add(productGroupId3); |
|
|
|
params.add(codeNo); |
|
|
|
// 执行方法 |
|
|
|
List<Map<String, Object>> resultList = procedureDao.getProcedureData("checkSavePart", params); |
|
|
|
return resultList.get(0); |
|
|
|
@ -232,6 +233,7 @@ public class PartInformationServiceImpl extends ServiceImpl<PartInformationMappe |
|
|
|
String productGroupId1 = inData.getOtherGroup1() == null ? "" : inData.getOtherGroup1(); |
|
|
|
String productGroupId2 = inData.getOtherGroup2() == null ? "" : inData.getOtherGroup2(); |
|
|
|
String productGroupId3 = inData.getOtherGroup3() == null ? "" : inData.getOtherGroup3(); |
|
|
|
String codeNo = inData.getCodeNo() == null ? "" : inData.getCodeNo(); |
|
|
|
List<Object> params = new ArrayList<>(); |
|
|
|
params.add(site); |
|
|
|
params.add(buNo); |
|
|
|
@ -241,6 +243,7 @@ public class PartInformationServiceImpl extends ServiceImpl<PartInformationMappe |
|
|
|
params.add(productGroupId1); |
|
|
|
params.add(productGroupId2); |
|
|
|
params.add(productGroupId3); |
|
|
|
params.add(codeNo); |
|
|
|
// 执行方法 |
|
|
|
List<Map<String, Object>> resultList = procedureDao.getProcedureData("checkUpdatePart", params); |
|
|
|
return resultList.get(0); |
|
|
|
|