Adam Saghy created FINERACT-2805:
------------------------------------
Summary: Correct parameter comparison in updatePostDatedChecks
validation
Key: FINERACT-2805
URL: https://issues.apache.org/jira/browse/FINERACT-2805
Project: Apache Fineract
Issue Type: Bug
Affects Versions: 1.15.0
Reporter: Adam Saghy
Fix For: 1.16.0
Previously, the condition for checking a change in the check number parameter
was comparing the new input value against {{this.accountNo}} instead of
{{{}this.checkNo{}}}:
{{if (command.isChangeInLongParameterNamed("checkNo", this.accountNo))}}
This error causes unexpected validation behaviors when updating check
information. This fix switches the parameter reference to the correct field
variable:
{{if (command.isChangeInLongParameterNamed("checkNo", this.checkNo))}}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)