2020-03-16 19:46:53 -05:00
|
|
|
# -*- coding: utf-8; -*-
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# Rattail -- Retail Software Framework
|
2022-12-10 09:14:36 -06:00
|
|
|
# Copyright © 2010-2022 Lance Edgar
|
2020-03-16 19:46:53 -05:00
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
"""
|
|
|
|
Person views
|
|
|
|
"""
|
|
|
|
|
2020-03-17 12:47:15 -05:00
|
|
|
from rattail_corepos.config import core_office_customer_account_url
|
2022-12-10 09:14:36 -06:00
|
|
|
from rattail.util import OrderedDict
|
2020-03-17 12:47:15 -05:00
|
|
|
|
2022-12-10 09:14:36 -06:00
|
|
|
from tailbone.views import ViewSupplement
|
2020-03-16 19:46:53 -05:00
|
|
|
|
|
|
|
|
2022-12-10 09:14:36 -06:00
|
|
|
class PersonViewSupplement(ViewSupplement):
|
2020-03-16 19:46:53 -05:00
|
|
|
"""
|
2022-12-10 09:14:36 -06:00
|
|
|
Person view supplement for CORE integration
|
2020-03-16 19:46:53 -05:00
|
|
|
"""
|
2022-12-10 09:14:36 -06:00
|
|
|
route_prefix = 'people'
|
|
|
|
|
2020-03-16 19:46:53 -05:00
|
|
|
labels = {
|
|
|
|
'corepos_customer_id': "CORE-POS Customer ID",
|
|
|
|
}
|
|
|
|
|
2022-12-10 09:14:36 -06:00
|
|
|
def get_grid_query(self, query):
|
|
|
|
model = self.model
|
2020-07-06 21:17:41 -05:00
|
|
|
return query.outerjoin(model.CorePerson)
|
2020-03-16 19:46:53 -05:00
|
|
|
|
|
|
|
def configure_grid(self, g):
|
2022-12-10 09:14:36 -06:00
|
|
|
model = self.model
|
2020-03-16 19:46:53 -05:00
|
|
|
g.set_filter('corepos_customer_id', model.CorePerson.corepos_customer_id)
|
|
|
|
|
2020-09-20 17:42:15 -05:00
|
|
|
def configure_form(self, f):
|
2022-12-10 09:14:36 -06:00
|
|
|
if not self.master.creating:
|
|
|
|
f.append('corepos_customer_id')
|
2020-09-20 17:42:15 -05:00
|
|
|
|
2020-07-06 21:17:41 -05:00
|
|
|
def get_version_child_classes(self):
|
2022-12-10 09:14:36 -06:00
|
|
|
model = self.model
|
|
|
|
return [model.CorePerson]
|
2020-03-17 12:47:15 -05:00
|
|
|
|
2022-12-10 09:14:36 -06:00
|
|
|
def get_customer_xref_buttons(self, person):
|
|
|
|
buttons = []
|
|
|
|
for customer in person.customers:
|
|
|
|
url = core_office_customer_account_url(
|
|
|
|
self.rattail_config, customer.number)
|
|
|
|
buttons.append({'url': url, 'text': "View in CORE Office"})
|
|
|
|
return buttons
|
2020-03-17 12:47:15 -05:00
|
|
|
|
2022-12-10 09:14:36 -06:00
|
|
|
def get_member_xref_buttons(self, person):
|
|
|
|
buttons = OrderedDict()
|
2020-03-18 11:31:23 -05:00
|
|
|
|
2022-12-10 09:14:36 -06:00
|
|
|
for member in person.members:
|
|
|
|
url = core_office_customer_account_url(
|
|
|
|
self.rattail_config, member.number)
|
|
|
|
buttons[member.uuid] = {'url': url,
|
|
|
|
'text': "View in CORE Office"}
|
2020-03-18 11:31:23 -05:00
|
|
|
|
2022-12-10 09:14:36 -06:00
|
|
|
for customer in person.customers:
|
|
|
|
for member in customer.members:
|
|
|
|
if member.uuid not in buttons:
|
|
|
|
url = core_office_customer_account_url(
|
|
|
|
self.rattail_config, member.number)
|
|
|
|
buttons[member.uuid] = {'url': url,
|
|
|
|
'text': "View in CORE Office"}
|
2020-03-18 11:31:23 -05:00
|
|
|
|
2022-12-10 09:14:36 -06:00
|
|
|
return buttons.values()
|
2020-07-06 21:17:41 -05:00
|
|
|
|
|
|
|
|
|
|
|
def includeme(config):
|
2022-12-10 09:14:36 -06:00
|
|
|
PersonViewSupplement.defaults(config)
|