From 7c57b6ecd8d414dcfe76119a3e6d2739ebb68f81 Mon Sep 17 00:00:00 2001 From: Vishal Dhayagude Date: Tue, 19 Dec 2017 11:23:34 +0530 Subject: [PATCH] [fix] Column Heading in received item to be billed report (#12083) --- .../received_items_to_be_billed.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py b/erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py index 2ab3053cf8..73e8b25a3a 100644 --- a/erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py +++ b/erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py @@ -15,12 +15,12 @@ def execute(filters=None): def get_column(): return [ _("Purchase Receipt") + ":Link/Purchase Receipt:120", _("Date") + ":Date:100", - _("Suplier") + ":Link/Supplier:120", _("Suplier Name") + "::120", - _("Project") + ":Link/Project:120", _("Item Code") + ":Link/Item:120", + _("Supplier") + ":Link/Supplier:120", _("Supplier Name") + "::120", + _("Project") + ":Link/Project:120", _("Item Code") + ":Link/Item:120", _("Amount") + ":Currency:100", _("Billed Amount") + ":Currency:100", _("Amount to Bill") + ":Currency:100", _("Item Name") + "::120", _("Description") + "::120", _("Company") + ":Link/Company:120", ] def get_args(): - return {'doctype': 'Purchase Receipt', 'party': 'supplier', + return {'doctype': 'Purchase Receipt', 'party': 'supplier', 'date': 'posting_date', 'order': 'name', 'order_by': 'desc'} \ No newline at end of file