Added Supplier Bill Date in Itemised Purchase Register (#10783)

This commit is contained in:
Nabin Hait 2017-09-14 15:01:04 +05:30 committed by Makarand Bauskar
parent f8458ed9e4
commit a6d78ef842

View File

@ -14,7 +14,8 @@ def execute(filters=None):
dict(fieldtype='Data', label='Export Type', width=120), dict(fieldtype='Data', label='Export Type', width=120),
dict(fieldtype='Data', label='E-Commerce GSTIN', width=130), dict(fieldtype='Data', label='E-Commerce GSTIN', width=130),
dict(fieldtype='Data', label='HSN Code', width=120), 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=[ ], additional_query_columns=[
'supplier_gstin', 'supplier_gstin',
'company_gstin', 'company_gstin',
@ -23,5 +24,6 @@ def execute(filters=None):
'export_type', 'export_type',
'ecommerce_gstin', 'ecommerce_gstin',
'gst_hsn_code', 'gst_hsn_code',
'bill_no' 'bill_no',
'bill_date'
]) ])