Supplier bill no in GST itemised purchase register (#10513)

This commit is contained in:
Nabin Hait 2017-08-23 13:04:50 +05:30 committed by Makarand Bauskar
parent b903c86076
commit cb40bd86f8

View File

@ -13,7 +13,8 @@ def execute(filters=None):
dict(fieldtype='Data', label='Invoice Type', width=120),
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='HSN Code', width=120),
dict(fieldtype='Data', label='Supplier Invoice No', width=120)
], additional_query_columns=[
'supplier_gstin',
'company_gstin',
@ -21,5 +22,6 @@ def execute(filters=None):
'invoice_type',
'export_type',
'ecommerce_gstin',
'gst_hsn_code'
'gst_hsn_code',
'bill_no'
])