for tax account, rate is no more mandatory

This commit is contained in:
Anand Doshi
2012-11-29 18:29:56 +05:30
parent b12d5363bc
commit 681d21dd1f
2 changed files with 3 additions and 8 deletions

View File

@@ -185,9 +185,9 @@ erpnext.AccountsChart = Class.extend({
// tax rate if tax
$(fd.account_type.input).change(function() {
if($(this).val()=='Tax') {
$(fd.tax_rate.wrapper).toggle(true);
$(fd.tax_rate.wrapper).toggle(true);
} else {
$(fd.tax_rate.wrapper).toggle(false);
$(fd.tax_rate.wrapper).toggle(false);
}
})
@@ -214,6 +214,7 @@ erpnext.AccountsChart = Class.extend({
// show
d.onshow = function() {
$(fd.group_or_ledger.input).change();
$(fd.account_type.input).change();
}
d.show();
},