Expose new exempt_from_gross_sales flags

This commit is contained in:
Lance Edgar 2018-06-14 12:04:50 -05:00
parent 8428790001
commit baeb9a558e
2 changed files with 3 additions and 0 deletions

View file

@ -48,6 +48,7 @@ class DepartmentsView(MasterView):
'name', 'name',
'product', 'product',
'personnel', 'personnel',
'exempt_from_gross_sales',
] ]
def configure_grid(self, g): def configure_grid(self, g):

View file

@ -113,11 +113,13 @@ class TransactionView(MasterView):
'item_scancode', 'item_scancode',
'item_id', 'item_id',
'department_number', 'department_number',
'department_name',
'description', 'description',
'unit_quantity', 'unit_quantity',
'subtotal', 'subtotal',
'tax', 'tax',
'total', 'total',
'exempt_from_gross_sales',
'void', 'void',
] ]