2018-06-01 15:14:49 -05:00
|
|
|
# -*- coding: utf-8; -*-
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# Rattail -- Retail Software Framework
|
2021-07-21 20:05:16 -05:00
|
|
|
# Copyright © 2010-2021 Lance Edgar
|
2018-06-01 15:14:49 -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/>.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
"""
|
|
|
|
Rattail-COREPOS Config Extension
|
|
|
|
"""
|
|
|
|
|
|
|
|
from rattail.config import ConfigExtension
|
|
|
|
from rattail.db.config import get_engines
|
|
|
|
|
|
|
|
|
|
|
|
class RattailCOREPOSExtension(ConfigExtension):
|
|
|
|
"""
|
|
|
|
Config extension for Rattail-COREPOS
|
|
|
|
"""
|
|
|
|
key = 'rattail-corepos'
|
|
|
|
|
|
|
|
def configure(self, config):
|
|
|
|
|
2021-07-21 20:05:16 -05:00
|
|
|
# office_op
|
|
|
|
from corepos.db.office_op import Session
|
2019-10-10 20:13:39 -05:00
|
|
|
engines = get_engines(config, section='corepos.db.office_op')
|
2021-07-21 20:05:16 -05:00
|
|
|
config.core_office_op_engines = engines
|
|
|
|
config.core_office_op_engine = engines.get('default')
|
|
|
|
Session.configure(bind=config.core_office_op_engine)
|
|
|
|
# TODO: deprecate / remove these next 2 lines
|
2018-06-01 15:14:49 -05:00
|
|
|
config.corepos_engines = engines
|
|
|
|
config.corepos_engine = engines.get('default')
|
2018-11-22 16:46:16 -06:00
|
|
|
|
2021-07-21 20:05:16 -05:00
|
|
|
# office_trans
|
|
|
|
from corepos.db.office_trans import Session
|
2019-10-10 20:13:39 -05:00
|
|
|
engines = get_engines(config, section='corepos.db.office_trans')
|
2021-07-21 20:05:16 -05:00
|
|
|
config.core_office_trans_engines = engines
|
|
|
|
config.core_office_trans_engine = engines.get('default')
|
|
|
|
Session.configure(bind=config.core_office_trans_engine)
|
|
|
|
# TODO: deprecate / remove these next 2 lines
|
2018-11-22 16:46:16 -06:00
|
|
|
config.coretrans_engines = engines
|
|
|
|
config.coretrans_engine = engines.get('default')
|
2021-07-21 20:05:16 -05:00
|
|
|
|
|
|
|
# lane_op
|
|
|
|
from corepos.db.lane_op import Session
|
|
|
|
engines = get_engines(config, section='corepos.db.lane_op')
|
|
|
|
config.core_lane_op_engines = engines
|
|
|
|
config.core_lane_op_engine = engines.get('default')
|
|
|
|
Session.configure(bind=config.core_lane_op_engine)
|
2020-03-14 18:38:12 -05:00
|
|
|
|
|
|
|
|
|
|
|
def core_office_url(config, require=False, **kwargs):
|
|
|
|
"""
|
|
|
|
Returns the base URL for the CORE Office web app. Note that this URL will
|
|
|
|
*not* have a trailing slash.
|
|
|
|
"""
|
|
|
|
args = ['corepos', 'office.url']
|
|
|
|
if require:
|
|
|
|
url = config.require(*args, **kwargs)
|
|
|
|
return url.rstrip('/')
|
|
|
|
else:
|
|
|
|
url = config.get(*args, **kwargs)
|
|
|
|
if url:
|
|
|
|
return url.rstrip('/')
|
2020-03-17 12:46:13 -05:00
|
|
|
|
|
|
|
|
|
|
|
def core_office_customer_account_url(config, card_number, office_url=None):
|
|
|
|
"""
|
|
|
|
Returns the CORE Office URL for the customer account with the given card
|
|
|
|
number.
|
|
|
|
"""
|
|
|
|
if not office_url:
|
|
|
|
office_url = core_office_url(config, require=True)
|
|
|
|
return '{}/mem/MemberEditor.php?memNum={}'.format(
|
|
|
|
office_url, card_number)
|