RQM 2.0.1 iFix003 - Formal Review
2 answers
I tried to reproduce the problem in my 2.0.1 iFix 3 server but was unable to. I see the following check in the code:
if (obj.status == Constants.TYPE_REJECTED && obj.comment == "") {
return {
msg: Constants.APPROVAL_REJECT_REASON_DUPLICATED_WARNING_APPROVAL_TABLE,
value: false
};
}
I am wondering if somehow obj.comment is getting overwritten with a null string ? Can you please provide more details (or perhaps set a breakpoint in the validate() function of ApprovalTable.js; not sure if you know how to debug RQM using FireBug) ?
if (obj.status == Constants.TYPE_REJECTED && obj.comment == "") {
return {
msg: Constants.APPROVAL_REJECT_REASON_DUPLICATED_WARNING_APPROVAL_TABLE,
value: false
};
}
I am wondering if somehow obj.comment is getting overwritten with a null string ? Can you please provide more details (or perhaps set a breakpoint in the validate() function of ApprovalTable.js; not sure if you know how to debug RQM using FireBug) ?
I tried to reproduce the problem in my 2.0.1 iFix 3 server but was unable to. I see the following check in the code:
if (obj.status == Constants.TYPE_REJECTED && obj.comment == "") {
return {
msg: Constants.APPROVAL_REJECT_REASON_DUPLICATED_WARNING_APPROVAL_TABLE,
value: false
};
}
I am wondering if somehow obj.comment is getting overwritten with a null string ? Can you please provide more details (or perhaps set a breakpoint in the validate() function of ApprovalTable.js; not sure if you know how to debug RQM using FireBug) ?
What is your FF version? I haven't used Firebug but will try.