workItem.getValue(WorkItemAttributes.MODIFIED_BY) return nothing in web UI
Dears,
We need to populate a custom field, Contributor type, with the value of the attribute Modified by or with the logged in user. So we created the following script. The way the script works is in the eclipse client, but it does not work in the web interface. Could you please correct me on this script? and let us know the right script for my requirement. Thanks in advance
dojo.provide("br.com.bb.alm.mergeReq.ValidadoPor");
dojo.require("com.ibm.team.workitem.api.common.WorkItemAttributes");
(function() {
dojo.declare("br.com.bb.alm.mergeReq.ValidadoPor", null, {
getValue: function(attribute, workItem, configuration) {
var WorkItemAttributes = com.ibm.team.workitem.api.common.WorkItemAttributes;
//valor padrão;
var result = workItem.getValue("attr.mergeReq.validadoPor");
var status = workItem.getValue(WorkItemAttributes.STATE);
//verifica se o estado é "Aprovado para Entrega"
if(status === "br.com.bb.workitem.workflow.mergeReq.state.s4") {
result = workItem.getValue(WorkItemAttributes.MODIFIED_BY);
} else if(status === "br.com.bb.workitem.workflow.mergeReq.state.s1") {
result = null;
}
return result;
}
});
})();
Comments
Donald Nong
Jan 31 '18, 11:06 p.m.Have you done any debugging on the web client? Has the scripted been triggered? Is the variable "status" has the correct value? Does the code workItem.getValue() get called at all?
1 vote