|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_d2d_mar
_______________________________________________ Mifos-issues mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mifos-issues

Issues fixed with https://github.com/openMF/mifosx-community-apps/pull/98
1) User Interface does not allow deleting a charge while creating a loan application
>>seems to be because of check typeof data.charges === "array" ... typeof data.charges is an object
2) If the loan product has one predifined charge and we are adding more charges to it, this results in Id's being repeated for the second charge (works fine from the third chrage onwards)
and hence does not work as expected during a save (the second charge overwrites the first)
>> also happening as chargeindex is being calculated based on
if(typeof data.charges === "array") {
chargeIndex = data["charges"].length;
}
should be typeof data.charges === "object"
3) Unable to delete the last charge (or all charges together) while editing a loan application
>> send empty charges as a workaround