[fix] [minor] naming for amendment

This commit is contained in:
Nabin Hait 2013-10-21 18:32:56 +05:30
parent 1abbebad7b
commit 213da21332

View File

@ -12,10 +12,13 @@ erpnext.accounts.JournalVoucher = wn.ui.form.Controller.extend({
load_defaults: function() { load_defaults: function() {
if(this.frm.doc.__islocal && this.frm.doc.company) { if(this.frm.doc.__islocal && this.frm.doc.company) {
wn.model.set_default_values(this.frm.doc); wn.model.set_default_values(this.frm.doc);
$.each(wn.model.get_doclist(this.frm.doc.doctype, this.frm.doc.name, {parentfield: "entries"}), $.each(wn.model.get_doclist(this.frm.doc.doctype,
function(i, jvd) { wn.model.set_default_values(jvd); }); this.frm.doc.name, {parentfield: "entries"}), function(i, jvd) {
wn.model.set_default_values(jvd);
}
);
this.frm.doc.posting_date = get_today(); if(!this.frm.doc.amended_from) this.frm.doc.posting_date = get_today();
} }
}, },