From a6d78ef842616cab5f1ec9d51c9ea33ab91775e6 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 14 Sep 2017 15:01:04 +0530 Subject: [PATCH] Added Supplier Bill Date in Itemised Purchase Register (#10783) --- .../gst_itemised_purchase_register.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/erpnext/regional/report/gst_itemised_purchase_register/gst_itemised_purchase_register.py b/erpnext/regional/report/gst_itemised_purchase_register/gst_itemised_purchase_register.py index 1a54cc3ff2..b0dfdcbfea 100644 --- a/erpnext/regional/report/gst_itemised_purchase_register/gst_itemised_purchase_register.py +++ b/erpnext/regional/report/gst_itemised_purchase_register/gst_itemised_purchase_register.py @@ -14,7 +14,8 @@ def execute(filters=None): dict(fieldtype='Data', label='Export Type', width=120), dict(fieldtype='Data', label='E-Commerce GSTIN', width=130), dict(fieldtype='Data', label='HSN Code', width=120), - dict(fieldtype='Data', label='Supplier Invoice No', width=120) + dict(fieldtype='Data', label='Supplier Invoice No', width=120), + dict(fieldtype='Date', label='Supplier Invoice Date', width=100) ], additional_query_columns=[ 'supplier_gstin', 'company_gstin', @@ -23,5 +24,6 @@ def execute(filters=None): 'export_type', 'ecommerce_gstin', 'gst_hsn_code', - 'bill_no' + 'bill_no', + 'bill_date' ])