|
@@ -80,19 +80,19 @@ public class VenderUtil {
|
|
|
infoCodeSet.add(infoCode);
|
|
|
}
|
|
|
|
|
|
- if (infoCodeSet.contains("DPBrandID") && infoCodeSet.contains("Brand")) {
|
|
|
+ if (infoCodeSet.contains("DPBrandID")) {
|
|
|
processBrand(item);
|
|
|
}
|
|
|
- if (infoCodeSet.contains("DPMaintainerID") && (infoCodeSet.contains("Maintainer") || infoCodeSet.contains("MaintainerContactor") || infoCodeSet.contains("MaintainerPhone"))) {
|
|
|
+ if (infoCodeSet.contains("DPMaintainerID")) {
|
|
|
processNameContactPhone(item, "DPMaintainerID", "Maintainer", "MaintainerContactor", "MaintainerPhone");
|
|
|
}
|
|
|
- if (infoCodeSet.contains("DPManufacturerID") && (infoCodeSet.contains("Manufacturer") || infoCodeSet.contains("ManufacturerContactor") || infoCodeSet.contains("ManufacturerPhone"))) {
|
|
|
+ if (infoCodeSet.contains("DPManufacturerID")) {
|
|
|
processNameContactPhone(item, "DPManufacturerID", "Manufacturer", "ManufacturerContactor", "ManufacturerPhone");
|
|
|
}
|
|
|
- if (infoCodeSet.contains("DPSupplierID") && (infoCodeSet.contains("Supplier") || infoCodeSet.contains("SupplierContactor") || infoCodeSet.contains("SupplierPhone"))) {
|
|
|
+ if (infoCodeSet.contains("DPSupplierID")) {
|
|
|
processNameContactPhone(item, "DPSupplierID", "Supplier", "SupplierContactor", "SupplierPhone");
|
|
|
}
|
|
|
- if (infoCodeSet.contains("DPSpecificationID") && infoCodeSet.contains("Specification")) {
|
|
|
+ if (infoCodeSet.contains("DPSpecificationID")) {
|
|
|
processSpecific(item);
|
|
|
}
|
|
|
|
|
@@ -163,10 +163,17 @@ public class VenderUtil {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if(newCTMRecord == null || !VenderInfo.specificMap.keySet().contains(newCTMRecord.getS_value()) || newStandRecord == null) {
|
|
|
+ if(newCTMRecord == null || !VenderInfo.specificMap.keySet().contains(newCTMRecord.getS_value())) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
+ if(newStandRecord == null) {
|
|
|
+ String timeNow = CommonUtil.getNowTimeString();
|
|
|
+ newStandRecord = new ObjectInfoRecord(newCTMRecord.getProject_id(), newCTMRecord.getObj_type(), newCTMRecord.getObj_id(), "Specification");
|
|
|
+ newStandRecord.setTime(timeNow);
|
|
|
+ item.put("Specification@"+timeNow, newStandRecord);
|
|
|
+ }
|
|
|
+
|
|
|
SpecificatDTO specificatDTO = VenderInfo.specificMap.get(newCTMRecord.getS_value());
|
|
|
newStandRecord.setS_value(specificatDTO.getSpecName());
|
|
|
}
|
|
@@ -234,19 +241,33 @@ public class VenderUtil {
|
|
|
|
|
|
String venderId = newCTMRecord.getS_value();
|
|
|
|
|
|
- if(VenderInfo.venderMap.containsKey(venderId) && nameRecord != null) {
|
|
|
+ String timeNow = CommonUtil.getNowTimeString();
|
|
|
+ if(VenderInfo.venderMap.containsKey(venderId)) {
|
|
|
+ if(nameRecord == null) {
|
|
|
+ nameRecord = new ObjectInfoRecord(newCTMRecord.getProject_id(), newCTMRecord.getObj_type(), newCTMRecord.getObj_id(), nameCode);
|
|
|
+ nameRecord.setTime(timeNow);
|
|
|
+ item.put(nameCode+"@"+timeNow, nameRecord);
|
|
|
+ }
|
|
|
+
|
|
|
nameRecord.setS_value(VenderInfo.venderMap.get(venderId).getVenderName());
|
|
|
}
|
|
|
|
|
|
if(VenderInfo.venderContMap.containsKey(venderId)) {
|
|
|
VenderContactDTO venderContactDTO = VenderInfo.venderContMap.get(venderId);
|
|
|
- if(contactRecord != null) {
|
|
|
- contactRecord.setS_value(venderContactDTO.getName());
|
|
|
+
|
|
|
+ if(contactRecord == null) {
|
|
|
+ contactRecord = new ObjectInfoRecord(newCTMRecord.getProject_id(), newCTMRecord.getObj_type(), newCTMRecord.getObj_id(), contactCode);
|
|
|
+ contactRecord.setTime(timeNow);
|
|
|
+ item.put(contactCode+"@"+timeNow, contactRecord);
|
|
|
}
|
|
|
+ contactRecord.setS_value(venderContactDTO.getName());
|
|
|
|
|
|
- if(phoneRecord != null) {
|
|
|
- phoneRecord.setS_value(venderContactDTO.getPhone());
|
|
|
+ if(phoneRecord == null) {
|
|
|
+ phoneRecord = new ObjectInfoRecord(newCTMRecord.getProject_id(), newCTMRecord.getObj_type(), newCTMRecord.getObj_id(), phoneCode);
|
|
|
+ phoneRecord.setTime(timeNow);
|
|
|
+ item.put(phoneCode+"@"+timeNow, phoneRecord);
|
|
|
}
|
|
|
+ phoneRecord.setS_value(venderContactDTO.getPhone());
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -279,10 +300,17 @@ public class VenderUtil {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if(newCTMRecord == null || !VenderInfo.brandMap.keySet().contains(newCTMRecord.getS_value()) || newStandRecord == null) {
|
|
|
+ if(newCTMRecord == null || !VenderInfo.brandMap.keySet().contains(newCTMRecord.getS_value())) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
+ if(newStandRecord == null) {
|
|
|
+ String timeNow = CommonUtil.getNowTimeString();
|
|
|
+ newStandRecord = new ObjectInfoRecord(newCTMRecord.getProject_id(), newCTMRecord.getObj_type(), newCTMRecord.getObj_id(), "Brand");
|
|
|
+ newStandRecord.setTime(timeNow);
|
|
|
+ item.put("Brand@"+timeNow, newStandRecord);
|
|
|
+ }
|
|
|
+
|
|
|
BrandDTO brandDTO = VenderInfo.brandMap.get(newCTMRecord.getS_value());
|
|
|
newStandRecord.setS_value(brandDTO.getBrandName());
|
|
|
}
|