Add views for CORE Purchase Orders

This commit is contained in:
Lance Edgar 2021-02-01 15:36:09 -06:00
parent 4df8439fd6
commit fc102e6cc0
6 changed files with 184 additions and 3 deletions

View file

@ -117,6 +117,11 @@ def make_corepos_menu(request):
'url': url('corepos.vendors'),
'perm': 'corepos.vendors.list',
},
{
'title': "Purchase Orders",
'url': url('corepos.purchase_orders'),
'perm': 'corepos.purchase_orders.list',
},
{
'title': "Origins",
'url': url('corepos.origins'),

View file

@ -0,0 +1,3 @@
## -*- coding: utf-8; -*-
<%inherit file="/core-pos/master/view.mako" />
${parent.body()}

View file

@ -7,7 +7,8 @@
% else:
disabled title="${core_office_why_no_url}"
% endif
>
icon-pack="fas"
icon-left="fas fa-external-link-alt">
View in CORE Office
</b-button>
</%def>

View file

@ -2,7 +2,7 @@
################################################################################
#
# Rattail -- Retail Software Framework
# Copyright © 2010-2020 Lance Edgar
# Copyright © 2010-2021 Lance Edgar
#
# This file is part of Rattail.
#
@ -45,3 +45,4 @@ def includeme(config):
config.include('tailbone_corepos.views.corepos.taxrates')
config.include('tailbone_corepos.views.corepos.transactions')
config.include('tailbone_corepos.views.corepos.batches')
config.include('tailbone_corepos.views.corepos.purchaseorders')

View file

@ -2,7 +2,7 @@
################################################################################
#
# Rattail -- Retail Software Framework
# Copyright © 2010-2020 Lance Edgar
# Copyright © 2010-2021 Lance Edgar
#
# This file is part of Rattail.
#
@ -83,6 +83,14 @@ class CoreOfficeMasterView(MasterView):
value = localtime(self.rattail_config, value)
return str(value.date())
def render_corepos_store(self, obj, field):
store = getattr(obj, field)
if not store:
return ""
text = "({}) {}".format(store.id, store.description)
url = self.request.route_url('corepos.stores.view', id=store.id)
return tags.link_to(text, url)
def render_corepos_department(self, obj, field):
department = getattr(obj, field)
if not department:

View file

@ -0,0 +1,163 @@
# -*- coding: utf-8; -*-
################################################################################
#
# Rattail -- Retail Software Framework
# Copyright © 2010-2021 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 <http://www.gnu.org/licenses/>.
#
################################################################################
"""
CORE POS purchase order views
"""
from corepos.db.office_op import model as corepos
from .master import CoreOfficeMasterView
class PurchaseOrderView(CoreOfficeMasterView):
"""
Master view for purchase orders
"""
model_class = corepos.PurchaseOrder
model_title = "CORE-POS Purchase Order"
url_prefix = '/core-pos/purchase-orders'
route_prefix = 'corepos.purchase_orders'
has_rows = True
model_row_class = corepos.PurchaseOrderItem
rows_viewable = False
rows_downloadable_xlsx = True
labels = {
'vendor_id': "Vendor ID",
'store_id': "Store ID",
'user_id': "User ID",
'vendor_order_id': "Vendor Order ID",
'vendor_invoice_id': "Vendor Invoice ID",
'standing_id': "Standing ID",
'transfer_id': "Transfer ID",
}
grid_columns = [
'id',
'vendor',
'store_id',
'creation_date',
'placed',
'placed_date',
'vendor_order_id',
'vendor_invoice_id',
]
form_fields = [
'id',
'vendor_id',
'vendor',
'store_id',
'store',
'creation_date',
'placed',
'placed_date',
'user_id',
'vendor_order_id',
'vendor_invoice_id',
'standing_id',
'inventory_ignore',
'transfer_id',
'notes',
]
row_labels = {
'sku': "SKU",
'internal_upc': "Internal UPC",
'is_special_order': "Special Order",
}
row_grid_columns = [
'sku',
'internal_upc',
'brand',
'description',
'unit_size',
'unit_cost',
'case_size',
'quantity',
'received_date',
'received_quantity',
'received_total_cost',
'is_special_order',
]
def configure_grid(self, g):
super(PurchaseOrderView, self).configure_grid(g)
g.set_joiner('vendor', lambda q: q.outerjoin(
corepos.Vendor,
corepos.Vendor.id == corepos.PurchaseOrder.vendor_id))
g.set_sorter('vendor', corepos.Vendor.name)
g.set_filter('vendor', corepos.Vendor.name)
# g.set_joiner('store', lambda q: q.outerjoin(
# corepos.Store,
# corepos.Store.id == corepos.PurchaseOrder.store_id))
# g.set_sorter('store', corepos.Store.description)
g.set_sorter('id', corepos.PurchaseOrder.id)
g.set_sort_defaults('id', 'desc')
g.set_link('id')
g.set_link('vendor')
def configure_form(self, f):
super(PurchaseOrderView, self).configure_form(f)
f.set_renderer('vendor', self.render_corepos_vendor)
f.set_renderer('store', self.render_corepos_store)
f.set_type('notes', 'text')
def core_office_object_url(self, office_url, order):
return '{}/purchasing/ViewPurchaseOrders.php?id={}'.format(
office_url, order.id)
def get_row_data(self, order):
return self.Session.query(corepos.PurchaseOrderItem)\
.filter(corepos.PurchaseOrderItem.order == order)
def get_parent(self, item):
return item.order
def configure_row_grid(self, g):
super(PurchaseOrderView, self).configure_row_grid(g)
g.set_label('received_quantity', "Received Qty.")
g.filters['received_quantity'].label = "Received Quantity"
g.set_label('received_total_cost', "Received Cost")
g.filters['received_total_cost'].label = "Received Total Cost"
g.set_type('unit_cost', 'currency')
g.set_type('case_size', 'quantity')
g.set_type('quantity', 'quantity')
g.set_type('received_quantity', 'quantity')
g.set_type('received_total_cost', 'currency')
def includeme(config):
PurchaseOrderView.defaults(config)