commit | 9a4d165ba2fd6848107cfd9489cd402be7351696 | [log] [tgz] |
---|---|---|
author | Anand Doshi <anand@erpnext.com> | Mon Oct 12 16:23:51 2015 +0530 |
committer | Anand Doshi <anand@erpnext.com> | Mon Oct 12 16:23:51 2015 +0530 |
tree | 7a77e313e34ac49ab86e701f70564e6342d7a485 | |
parent | 4b72d0579329a4b7064860ff4ad24a5e34621075 [diff] |
[fix] get_party_details.js - set posting_date if args are initialised
diff --git a/erpnext/public/js/utils/party.js b/erpnext/public/js/utils/party.js index 1a86b2b..9173b71 100644 --- a/erpnext/public/js/utils/party.js +++ b/erpnext/public/js/utils/party.js
@@ -20,7 +20,10 @@ price_list: frm.doc.buying_price_list }; } - args.posting_date = frm.doc.transaction_date; + + if (args) { + args.posting_date = frm.doc.transaction_date; + } } if(!args) return;