[Fix] get_shipping_address() takes at least 1 argument (0 given) (#14328)

This commit is contained in:
rohitwaghchaure 2018-06-04 11:00:24 +05:30 committed by Nabin Hait
parent c1cf495a93
commit 5ecc26bf15

View File

@ -169,6 +169,7 @@ erpnext.utils.validate_mandatory = function(frm, label, value, trigger_on) {
} }
erpnext.utils.get_shipping_address = function(frm, callback){ erpnext.utils.get_shipping_address = function(frm, callback){
if (frm.doc.company) {
frappe.call({ frappe.call({
method: "frappe.contacts.doctype.address.address.get_shipping_address", method: "frappe.contacts.doctype.address.address.get_shipping_address",
args: { args: {
@ -186,4 +187,7 @@ erpnext.utils.get_shipping_address = function(frm, callback){
} }
} }
}); });
} else {
frappe.msgprint(__("Select company first"));
}
} }