2020-03-16 19:46:53 -05:00
|
|
|
# -*- coding: utf-8; -*-
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# Rattail -- Retail Software Framework
|
2023-05-05 02:02:17 -05:00
|
|
|
# Copyright © 2010-2023 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
|
|
|
|
"""
|
|
|
|
|
2023-05-05 02:02:17 -05:00
|
|
|
from collections import OrderedDict
|
|
|
|
|
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')
|
2024-05-29 21:59:23 -05:00
|
|
|
f.set_required('corepos_customer_id', False)
|
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
|
|
|
|
2023-06-10 20:14:20 -05:00
|
|
|
def get_context_for_customer(self, customer, context):
|
|
|
|
|
|
|
|
if customer.corepos_card_number:
|
2023-09-14 12:59:39 -05:00
|
|
|
app = self.get_rattail_app()
|
|
|
|
corepos = app.get_corepos_handler()
|
|
|
|
url = corepos.get_office_member_url(customer.corepos_card_number)
|
2023-06-10 20:14:20 -05:00
|
|
|
if url:
|
|
|
|
context['external_links'].append({'label': "View in CORE Office",
|
|
|
|
'url': url})
|
|
|
|
|
|
|
|
return context
|
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()
|
2023-09-14 12:59:39 -05:00
|
|
|
app = self.get_rattail_app()
|
|
|
|
corepos = app.get_corepos_handler()
|
|
|
|
office_url = corepos.get_office_url()
|
|
|
|
if office_url:
|
|
|
|
kw = {'office_url': office_url}
|
|
|
|
|
|
|
|
for member in person.members:
|
|
|
|
url = corepos.get_office_member_url(member.number, **kw)
|
|
|
|
buttons[member.uuid] = {'url': url, 'text': "View in CORE Office"}
|
|
|
|
|
|
|
|
for customer in person.customers:
|
|
|
|
for member in customer.members:
|
|
|
|
if member.uuid not in buttons:
|
|
|
|
url = corepos.get_office_member_url(member.number, **kw)
|
|
|
|
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)
|