# -*- coding: utf-8; -*- ################################################################################ # # Rattail -- Retail Software Framework # Copyright © 2010-2017 Lance Edgar # # This file is part of Rattail. # # Rattail is free software: you can redistribute it and/or modify it under the # terms of the GNU General Public License as published by the Free Software # Foundation, either version 3 of the License, or (at your option) any later # version. # # Rattail is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more # details. # # You should have received a copy of the GNU General Public License along with # Rattail. If not, see . # ################################################################################ """ Trainwreck views """ from __future__ import unicode_literals, absolute_import import six from rattail.time import localtime from tailbone.db import TrainwreckSession from tailbone.views import MasterView class TransactionView(MasterView): """ Master view for Trainwreck transactions """ Session = TrainwreckSession # model_class = trainwreck.Transaction model_title = "Trainwreck Transaction" model_title_plural = "Trainwreck Transactions" route_prefix = 'trainwreck.transactions' url_prefix = '/trainwreck/transactions' creatable = False editable = False deletable = False labels = { 'cashback': "Cash Back", } grid_columns = [ 'start_time', 'end_time', 'upload_time', 'system', 'terminal_id', 'receipt_number', 'cashier_name', 'customer_id', 'customer_name', 'total', ] form_fields = [ 'system', 'system_id', 'terminal_id', 'receipt_number', 'start_time', 'end_time', 'upload_time', 'cashier_id', 'cashier_name', 'customer_id', 'customer_name', 'shopper_id', 'shopper_name', 'subtotal', 'discounted_subtotal', 'tax', 'cashback', 'total', 'void', ] has_rows = True # model_row_class = trainwreck.TransactionItem rows_default_pagesize = 100 row_labels = { 'item_id': "Item ID", 'department_number': "Dept. No.", } row_grid_columns = [ 'sequence', 'item_type', 'item_scancode', 'department_number', 'description', 'unit_quantity', 'subtotal', 'tax', 'total', 'void', ] row_form_fields = [ 'sequence', 'item_type', 'item_scancode', 'item_id', 'department_number', 'department_name', 'description', 'unit_quantity', 'subtotal', 'tax', 'total', 'exempt_from_gross_sales', 'void', ] def configure_grid(self, g): super(TransactionView, self).configure_grid(g) g.filters['receipt_number'].default_active = True g.filters['receipt_number'].default_verb = 'equal' g.filters['upload_time'].default_active = True g.filters['upload_time'].default_verb = 'equal' g.filters['upload_time'].default_value = six.text_type(localtime(self.rattail_config).date()) g.set_sort_defaults('upload_time', 'desc') g.set_enum('system', self.enum.TRAINWRECK_SYSTEM) g.set_type('total', 'currency') g.set_label('terminal_id', "Terminal") g.set_label('receipt_number', "Receipt No.") g.set_label('customer_id', "Customer ID") g.set_link('start_time') g.set_link('end_time') g.set_link('upload_time') g.set_link('receipt_number') g.set_link('customer_id') g.set_link('customer_name') g.set_link('total') def configure_form(self, f): super(TransactionView, self).configure_form(f) # system f.set_enum('system', self.enum.TRAINWRECK_SYSTEM) # currency fields f.set_type('subtotal', 'currency') f.set_type('discounted_subtotal', 'currency') f.set_type('tax', 'currency') f.set_type('cashback', 'currency') f.set_type('total', 'currency') # label overrides f.set_label('system_id', "System ID") f.set_label('terminal_id', "Terminal") f.set_label('cashier_id', "Cashier ID") f.set_label('customer_id', "Customer ID") f.set_label('shopper_id', "Shopper ID") def get_row_data(self, transaction): return self.Session.query(self.model_row_class)\ .filter(self.model_row_class.transaction == transaction)\ .order_by(self.model_row_class.sequence) def get_parent(self, item): return item.transaction def configure_row_grid(self, g): super(TransactionView, self).configure_row_grid(g) g.set_sort_defaults('sequence') g.set_type('unit_quantity', 'quantity') g.set_type('subtotal', 'currency') g.set_type('discounted_subtotal', 'currency') g.set_type('tax', 'currency') g.set_type('total', 'currency') def configure_row_form(self, f): super(TransactionView, self).configure_row_form(f) # quantity fields f.set_type('unit_quantity', 'quantity') # currency fields f.set_type('unit_price', 'currency') f.set_type('subtotal', 'currency') f.set_type('discounted_subtotal', 'currency') f.set_type('tax', 'currency') f.set_type('total', 'currency')