Merge pull request #2579 from neilLasrado/jv-fix

Journal entries recalc totals on del of accounts table row
This commit is contained in:
Nabin Hait 2015-01-14 11:27:25 +05:30
commit 0bcf3e307c

View File

@ -282,3 +282,8 @@ frappe.ui.form.on("Journal Entry Account", "party", function(frm, cdt, cdn) {
});
}
})
frappe.ui.form.on("Journal Entry Account", "accounts_remove", function(frm) {
cur_frm.cscript.update_totals(frm.doc);
});