diff --git a/accounts/doctype/purchase_invoice/purchase_invoice.txt b/accounts/doctype/purchase_invoice/purchase_invoice.txt index af0eb8e5598..2bd078e71b5 100755 --- a/accounts/doctype/purchase_invoice/purchase_invoice.txt +++ b/accounts/doctype/purchase_invoice/purchase_invoice.txt @@ -2,7 +2,7 @@ { "creation": "2013-05-21 16:16:39", "docstatus": 0, - "modified": "2013-11-22 17:15:27", + "modified": "2014-02-11 12:01:59", "modified_by": "Administrator", "owner": "Administrator" }, @@ -739,6 +739,15 @@ "fieldtype": "Column Break", "read_only": 0 }, + { + "allow_on_submit": 1, + "doctype": "DocField", + "fieldname": "letter_head", + "fieldtype": "Select", + "label": "Letter Head", + "options": "link:Letter Head", + "print_hide": 1 + }, { "doctype": "DocField", "fieldname": "fiscal_year", diff --git a/accounts/report/accounts_payable/accounts_payable.py b/accounts/report/accounts_payable/accounts_payable.py index 1bd8a9f3232..0948b7ac668 100644 --- a/accounts/report/accounts_payable/accounts_payable.py +++ b/accounts/report/accounts_payable/accounts_payable.py @@ -51,10 +51,10 @@ def execute(filters=None): ageing_based_on_date = gle.posting_date row += get_ageing_data(age_on, ageing_based_on_date, outstanding_amount) + \ - [account_map.get(gle.account).get("supplier") or ""] + [account_map.get(gle.account, {}).get("supplier") or ""] if supplier_naming_by == "Naming Series": - row += [account_map.get(gle.account).get("supplier_name") or ""] + row += [account_map.get(gle.account, {}).get("supplier_name") or ""] row += [account_supplier_type_map.get(gle.account), gle.remarks] data.append(row) diff --git a/accounts/report/accounts_receivable/accounts_receivable.py b/accounts/report/accounts_receivable/accounts_receivable.py index f23193274a7..b06e8ebb4d4 100644 --- a/accounts/report/accounts_receivable/accounts_receivable.py +++ b/accounts/report/accounts_receivable/accounts_receivable.py @@ -101,13 +101,13 @@ class AccountsReceivableReport(object): return flt(gle.debit) - flt(gle.credit) - payment_received def get_customer(self, account): - return self.get_account_map().get(account).get("customer") or "" + return self.get_account_map().get(account, {}).get("customer") or "" def get_customer_name(self, account): - return self.get_account_map().get(account).get("customer_name") or "" + return self.get_account_map().get(account, {}).get("customer_name") or "" def get_territory(self, account): - return self.get_account_map().get(account).get("territory") or "" + return self.get_account_map().get(account, {}).get("territory") or "" def get_account_map(self): if not hasattr(self, "account_map"): diff --git a/config.json b/config.json index 93ef0e71986..4787535685d 100644 --- a/config.json +++ b/config.json @@ -1,6 +1,6 @@ { "app_name": "ERPNext", - "app_version": "3.8.5", + "app_version": "3.8.6", "base_template": "app/portal/templates/base.html", "modules": { "Accounts": { @@ -74,5 +74,5 @@ "type": "module" } }, - "requires_framework_version": "==3.9.4" + "requires_framework_version": "==3.9.5" } \ No newline at end of file diff --git a/stock/doctype/purchase_receipt/purchase_receipt.txt b/stock/doctype/purchase_receipt/purchase_receipt.txt index 95e254ef2fe..b6664b0b29f 100755 --- a/stock/doctype/purchase_receipt/purchase_receipt.txt +++ b/stock/doctype/purchase_receipt/purchase_receipt.txt @@ -2,7 +2,7 @@ { "creation": "2013-05-21 16:16:39", "docstatus": 0, - "modified": "2013-11-22 17:15:47", + "modified": "2014-02-11 12:01:00", "modified_by": "Administrator", "owner": "Administrator" }, @@ -621,6 +621,15 @@ "oldfieldtype": "Date", "print_hide": 1 }, + { + "allow_on_submit": 1, + "doctype": "DocField", + "fieldname": "letter_head", + "fieldtype": "Select", + "label": "Letter Head", + "options": "link:Letter Head", + "print_hide": 1 + }, { "allow_on_submit": 1, "doctype": "DocField",