def execute(filters=None):
    return _execute(filters,
                    additional_table_columns=[
                        dict(fieldtype='Data',
                             label='Customer GSTIN',
                             width=120),
                        dict(fieldtype='Data',
                             label='Company GSTIN',
                             width=120),
                        dict(fieldtype='Data',
                             label='Place of Supply',
                             width=120),
                        dict(fieldtype='Data',
                             label='Reverse Charge',
                             width=120),
                        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)
                    ],
                    additional_query_columns=[
                        'customer_gstin', 'company_gstin', 'place_of_supply',
                        'reverse_charge', 'invoice_type', 'export_type',
                        'ecommerce_gstin'
                    ])
Пример #2
0
def execute(filters=None):
	return _execute(
		filters,
		additional_table_columns=[
			dict(fieldtype="Data", label="Customer GSTIN", fieldname="customer_gstin", width=120),
			dict(
				fieldtype="Data", label="Billing Address GSTIN", fieldname="billing_address_gstin", width=140
			),
			dict(fieldtype="Data", label="Company GSTIN", fieldname="company_gstin", width=120),
			dict(fieldtype="Data", label="Place of Supply", fieldname="place_of_supply", width=120),
			dict(fieldtype="Data", label="Reverse Charge", fieldname="reverse_charge", width=120),
			dict(fieldtype="Data", label="GST Category", fieldname="gst_category", width=120),
			dict(fieldtype="Data", label="Export Type", fieldname="export_type", width=120),
			dict(fieldtype="Data", label="E-Commerce GSTIN", fieldname="ecommerce_gstin", width=130),
		],
		additional_query_columns=[
			"customer_gstin",
			"billing_address_gstin",
			"company_gstin",
			"place_of_supply",
			"reverse_charge",
			"gst_category",
			"export_type",
			"ecommerce_gstin",
		],
	)
Пример #3
0
def execute(filters=None):
	return _execute(filters, additional_table_columns=[
		dict(fieldtype='Data', label='Customer GSTIN', width=120),
		dict(fieldtype='Data', label='Company GSTIN', width=120)
	], additional_query_columns=[
		'customer_gstin',
		'company_gstin'
	])
def execute(filters=None):
    return _execute(
        filters,
        additional_table_columns=[
            dict(fieldtype='Data', label='Customer GSTIN', width=120),
            dict(fieldtype='Data', label='Company GSTIN', width=120)
        ],
        additional_query_columns=['customer_gstin', 'company_gstin'])
Пример #5
0
def execute(filters=None):
	return _execute(filters, additional_table_columns=[
		dict(fieldtype='Data', label='Customer GSTIN', width=120),
		dict(fieldtype='Data', label='Company GSTIN', width=120),
		dict(fieldtype='Data', label='Place of Supply', width=120),
		dict(fieldtype='Data', label='Reverse Charge', width=120),
		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)
	], additional_query_columns=[
		'customer_gstin',
		'company_gstin',
		'place_of_supply',
		'reverse_charge',
		'invoice_type',
		'export_type',
		'ecommerce_gstin'
	])
Пример #6
0
def execute(filters=None):
	return _execute(filters, additional_table_columns=[
		dict(fieldtype='Data', label='Customer GSTIN', fieldname="customer_gstin", width=120),
		dict(fieldtype='Data', label='Billing Address GSTIN', fieldname="billing_address_gstin", width=140),
		dict(fieldtype='Data', label='Company GSTIN', fieldname="company_gstin", width=120),
		dict(fieldtype='Data', label='Place of Supply', fieldname="place_of_supply", width=120),
		dict(fieldtype='Data', label='Reverse Charge', fieldname="reverse_charge", width=120),
		dict(fieldtype='Data', label='GST Category', fieldname="gst_category", width=120),
		dict(fieldtype='Data', label='Export Type', fieldname="export_type", width=120),
		dict(fieldtype='Data', label='E-Commerce GSTIN', fieldname="ecommerce_gstin", width=130)
	], additional_query_columns=[
		'customer_gstin',
		'billing_address_gstin',
		'company_gstin',
		'place_of_supply',
		'reverse_charge',
		'gst_category',
		'export_type',
		'ecommerce_gstin'
	])
Пример #7
0
def execute(filters=None):
    return _execute(filters)
def execute(filters=None):
	return _execute(filters)