added SG IH & KV to Change Items
parent
8e112b155a
commit
d5b122b612
|
|
@ -63,6 +63,8 @@ public class Change {
|
||||||
.addFieldId("ChangeImplementerPersonId", 610023232)
|
.addFieldId("ChangeImplementerPersonId", 610023232)
|
||||||
.addFieldId("PackageType", 670031016)
|
.addFieldId("PackageType", 670031016)
|
||||||
.addFieldId("Contract", 670031002)
|
.addFieldId("Contract", 670031002)
|
||||||
|
.addFieldId("SupportGroupIH", 1000003229)
|
||||||
|
.addFieldId("SupportGroupKV", 1000000015)
|
||||||
.build();
|
.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -129,13 +131,14 @@ public class Change {
|
||||||
change.setCoordinatorSg(getValueStringByID(entry, "CoordinatorSg"));
|
change.setCoordinatorSg(getValueStringByID(entry, "CoordinatorSg"));
|
||||||
change.setCoordinatorSgId(getValueStringByID(entry, "CoordinatorSgId"));
|
change.setCoordinatorSgId(getValueStringByID(entry, "CoordinatorSgId"));
|
||||||
change.setSupportGroupId(getValueStringByID(entry, "SupportGroupId"));
|
change.setSupportGroupId(getValueStringByID(entry, "SupportGroupId"));
|
||||||
|
change.setSupportGroupKV(getValueStringByID(entry, "SupportGroupKV"));
|
||||||
|
change.setSupportGroupIH(getValueStringByID(entry, "SupportGroupIH"));
|
||||||
change.setProviderCluster(getValueStringByID(entry, "ProviderCluster"));
|
change.setProviderCluster(getValueStringByID(entry, "ProviderCluster"));
|
||||||
change.setChangeImplementer(getValueStringByID(entry, "ChangeImplementer"));
|
change.setChangeImplementer(getValueStringByID(entry, "ChangeImplementer"));
|
||||||
change.setChangeImplementerLogin(getValueStringByID(entry, "ChangeImplementerLogin"));
|
change.setChangeImplementerLogin(getValueStringByID(entry, "ChangeImplementerLogin"));
|
||||||
change.setChangeImplementerPersonId(getValueStringByID(entry, "ChangeImplementerPersonId"));
|
change.setChangeImplementerPersonId(getValueStringByID(entry, "ChangeImplementerPersonId"));
|
||||||
change.setPackageType(getValueStringByID(entry, "PackageType"));
|
change.setPackageType(getValueStringByID(entry, "PackageType"));
|
||||||
change.setContract(getValueStringByID(entry, "Contract"));
|
change.setContract(getValueStringByID(entry, "Contract"));
|
||||||
|
|
||||||
change.setImplementerEdit(
|
change.setImplementerEdit(
|
||||||
Optional.ofNullable(entry.get(queryChange.getFieldId("ChangeCoordinator")))
|
Optional.ofNullable(entry.get(queryChange.getFieldId("ChangeCoordinator")))
|
||||||
.map(Object::toString)
|
.map(Object::toString)
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,8 @@ public class ChangeItem {
|
||||||
private int state;
|
private int state;
|
||||||
private String contract;
|
private String contract;
|
||||||
private String supportGroup;
|
private String supportGroup;
|
||||||
|
private String supportGroupIH;
|
||||||
|
private String supportGroupKV;
|
||||||
private String coordinatorSgId;
|
private String coordinatorSgId;
|
||||||
private String coordinatorSg;
|
private String coordinatorSg;
|
||||||
private String supportGroupId;
|
private String supportGroupId;
|
||||||
|
|
@ -156,6 +158,22 @@ public class ChangeItem {
|
||||||
this.changeImplementerPersonId = changeImplementerPersonId;
|
this.changeImplementerPersonId = changeImplementerPersonId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getSupportGroupKV() {
|
||||||
|
return this.supportGroupKV;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSupportGroupKV(String supportGroupKV) {
|
||||||
|
this.supportGroupKV = supportGroupKV;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getSupportGroupIH() {
|
||||||
|
return this.supportGroupIH;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSupportGroupIH(String supportGroupIH) {
|
||||||
|
this.supportGroupIH = supportGroupIH;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* Gets the status reason of the change item.
|
* Gets the status reason of the change item.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue