[fix] grid columns now restricted to 10

This commit is contained in:
Rushabh Mehta
2016-07-18 14:30:18 +05:30
parent 4fddff1606
commit 76b134192f
17 changed files with 41 additions and 48 deletions

View File

@@ -6,7 +6,7 @@ erpnext.taxes_and_totals = erpnext.payments.extend({
if(this.frm.get_field('taxes')) {
this.frm.get_field('taxes').grid.editable_fields = [
{fieldname: 'charge_type', columns: 2},
{fieldname: 'account_head', columns: 3},
{fieldname: 'account_head', columns: 2},
{fieldname: 'rate', columns: 2},
{fieldname: 'tax_amount', columns: 2},
{fieldname: 'total', columns: 2}