2020-03-04 19:05:26 -06:00
|
|
|
# -*- coding: utf-8; -*-
|
2020-03-14 19:49:38 -05:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# Rattail -- Retail Software Framework
|
|
|
|
# Copyright © 2010-2019 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/>.
|
|
|
|
#
|
|
|
|
################################################################################
|
2020-03-04 19:05:26 -06:00
|
|
|
"""
|
|
|
|
Vendor views
|
|
|
|
"""
|
|
|
|
|
2020-03-14 19:49:38 -05:00
|
|
|
from rattail_corepos.config import core_office_url
|
2020-03-04 19:05:26 -06:00
|
|
|
from rattail_corepos.corepos.util import get_max_existing_vendor_id
|
|
|
|
|
|
|
|
from tailbone.views import vendors as base
|
|
|
|
|
|
|
|
|
|
|
|
class VendorView(base.VendorsView):
|
|
|
|
"""
|
|
|
|
Expose some extra fields etc. per CORE-POS integration.
|
|
|
|
|
|
|
|
Please note that this does include a bit of "business logic" which assumes
|
|
|
|
that you keep CORE and Rattail in sync! Use at your own risk.
|
|
|
|
"""
|
|
|
|
labels = {
|
|
|
|
'corepos_id': "CORE-POS ID",
|
|
|
|
}
|
|
|
|
|
|
|
|
def query(self, session):
|
|
|
|
query = super(VendorView, self).query(session)
|
|
|
|
model = self.rattail_config.get_model()
|
|
|
|
|
|
|
|
query = query.outerjoin(model.CoreVendor)
|
|
|
|
|
|
|
|
return query
|
|
|
|
|
|
|
|
def configure_grid(self, g):
|
|
|
|
super(VendorView, self).configure_grid(g)
|
|
|
|
model = self.rattail_config.get_model()
|
|
|
|
|
|
|
|
g.append('corepos_id')
|
|
|
|
g.set_sorter('corepos_id', model.CoreVendor.corepos_id)
|
|
|
|
g.set_filter('corepos_id', model.CoreVendor.corepos_id)
|
|
|
|
|
|
|
|
def configure_form(self, f):
|
|
|
|
super(VendorView, self).configure_form(f)
|
|
|
|
|
|
|
|
if not self.creating:
|
|
|
|
f.append('corepos_id')
|
|
|
|
|
|
|
|
def objectify(self, form, data=None):
|
|
|
|
vendor = super(VendorView, self).objectify(form, data)
|
|
|
|
|
|
|
|
if self.creating:
|
|
|
|
|
|
|
|
# TODO: this seems too much like "business rules" to be here, right?
|
|
|
|
|
|
|
|
# must assign "next" CORE ID if creating new vendor
|
|
|
|
vendor.corepos_id = get_max_existing_vendor_id() + 1
|
|
|
|
|
|
|
|
# also, set some default values so that the systems will match
|
|
|
|
if vendor.special_discount is None:
|
|
|
|
vendor.special_discount = 0
|
|
|
|
|
|
|
|
return vendor
|
2020-03-14 19:49:38 -05:00
|
|
|
|
|
|
|
def template_kwargs_view(self, **kwargs):
|
|
|
|
"""
|
|
|
|
Supplements the default logic as follows:
|
|
|
|
|
|
|
|
Adds the URL for viewing the vendor within CORE Office, or else the
|
|
|
|
reason for lack of such a URL.
|
|
|
|
"""
|
|
|
|
# invoke default/parent logic, if it exists
|
|
|
|
parent = super(VendorView, self)
|
|
|
|
if hasattr(parent, 'template_kwargs_view'):
|
|
|
|
kwargs = parent.template_kwargs_view(**kwargs)
|
|
|
|
|
|
|
|
vendor = kwargs['instance']
|
|
|
|
|
|
|
|
# CORE Office URL
|
|
|
|
kwargs['core_office_url'] = None
|
|
|
|
office_url = core_office_url(self.rattail_config)
|
|
|
|
if not office_url:
|
|
|
|
kwargs['core_office_why_no_url'] = "CORE Office URL is not configured"
|
|
|
|
elif not vendor.corepos_id:
|
|
|
|
kwargs['core_office_why_no_url'] = "Vendor has no CORE-POS ID"
|
|
|
|
else:
|
|
|
|
kwargs['core_office_url'] = '{}/item/vendors/VendorIndexPage.php?vid={}'.format(
|
|
|
|
office_url, vendor.corepos_id)
|
|
|
|
|
|
|
|
return kwargs
|