Merge pull request #22950 from deepeshgarg007/billing_address_fetch

fix: Add default billing address for purchase documents
This commit is contained in:
Deepesh Garg 2020-08-31 17:16:31 +05:30 committed by GitHub
commit d79b511e3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -785,6 +785,19 @@ erpnext.TransactionController = erpnext.taxes_and_totals.extend({
erpnext.utils.get_shipping_address(this.frm, function(){
set_party_account(set_pricing);
})
// Get default company billing address in Purchase Invoice, Order and Receipt
frappe.call({
'method': 'frappe.contacts.doctype.address.address.get_default_address',
'args': {
'doctype': 'Company',
'name': this.frm.doc.company
},
'callback': function(r) {
me.frm.set_value('billing_address', r.message);
}
});
} else {
set_party_account(set_pricing);
}