[fix] [minor] call set_dynamic_labels after onload_post_render

This commit is contained in:
Anand Doshi 2013-08-09 00:20:34 +05:30
parent 38a07cf86a
commit 79251492fe
2 changed files with 6 additions and 2 deletions

View File

@ -98,8 +98,6 @@ erpnext.accounts.SalesInvoiceController = erpnext.selling.SellingController.exte
// }, 'icon-desktop'); // }, 'icon-desktop');
} }
cur_frm.cscript.hide_fields(doc, dt, dn);
}, },
toggle_pos: function(show) { toggle_pos: function(show) {
@ -178,6 +176,11 @@ erpnext.accounts.SalesInvoiceController = erpnext.selling.SellingController.exte
entries_add: function(doc, cdt, cdn) { entries_add: function(doc, cdt, cdn) {
var row = wn.model.get_doc(cdt, cdn); var row = wn.model.get_doc(cdt, cdn);
this.frm.script_manager.copy_from_first_row("entries", row, ["income_account", "cost_center"]); this.frm.script_manager.copy_from_first_row("entries", row, ["income_account", "cost_center"]);
},
set_dynamic_labels: function() {
this._super();
this.hide_fields(this.frm.doc);
} }
}); });

View File

@ -42,6 +42,7 @@ erpnext.TransactionController = erpnext.stock.StockController.extend({
callback: function(r) { callback: function(r) {
// remove this call when using client side mapper // remove this call when using client side mapper
me.set_default_values(); me.set_default_values();
me.set_dynamic_labels();
} }
}); });
} }