Beispiel #1
0
def execute(filters=None):
    return _execute(filters,
                    additional_table_columns=[
                        dict(fieldtype='Data',
                             label='Supplier GSTIN',
                             fieldname="supplier_gstin",
                             width=120),
                        dict(fieldtype='Data',
                             label='Company GSTIN',
                             fieldname="company_gstin",
                             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=[
                        'supplier_gstin', 'company_gstin', 'reverse_charge',
                        'gst_category', 'export_type', 'ecommerce_gstin'
                    ])
def execute(filters=None):
    return _execute(
        filters,
        additional_table_columns=[
            dict(fieldtype='Data', label='Supplier GSTIN', width=120),
            dict(fieldtype='Data', label='Company GSTIN', width=120)
        ],
        additional_query_columns=['supplier_gstin', 'company_gstin'])
def execute(filters=None):
	return _execute(filters, additional_table_columns=[
		dict(fieldtype='Data', label='Supplier GSTIN', width=120),
		dict(fieldtype='Data', label='Company GSTIN', width=120)
	], additional_query_columns=[
		'supplier_gstin',
		'company_gstin'
	])
def execute(filters=None):
	return _execute(filters, additional_table_columns=[
		dict(fieldtype='Data', label='Supplier GSTIN', width=120),
		dict(fieldtype='Data', label='Company GSTIN', 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=[
		'supplier_gstin',
		'company_gstin',
		'reverse_charge',
		'invoice_type',
		'export_type',
		'ecommerce_gstin'
	])
Beispiel #5
0
def execute(filters=None):
    return _execute(
        filters,
        additional_table_columns=[
            dict(fieldtype="Data",
                 label="Supplier GSTIN",
                 fieldname="supplier_gstin",
                 width=120),
            dict(fieldtype="Data",
                 label="Company GSTIN",
                 fieldname="company_gstin",
                 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=[
            "supplier_gstin",
            "company_gstin",
            "reverse_charge",
            "gst_category",
            "export_type",
            "ecommerce_gstin",
        ],
    )