From 89a705bdbcc625e8414b1a40d26bb546509ef30d Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sun, 6 Mar 2022 22:08:30 -0600 Subject: [PATCH] Add tailbone provider to declare native and corepos view options --- setup.py | 9 +- tailbone_corepos/provider.py | 180 +++++++++++++++++++++++++++++++++++ 2 files changed, 188 insertions(+), 1 deletion(-) create mode 100644 tailbone_corepos/provider.py diff --git a/setup.py b/setup.py index 225681a..b79b6b5 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ ################################################################################ # # Rattail -- Retail Software Framework -# Copyright © 2010-2019 Lance Edgar +# Copyright © 2010-2022 Lance Edgar # # This file is part of Rattail. # @@ -94,4 +94,11 @@ setup( packages = find_packages(), include_package_data = True, zip_safe = False, + + entry_points = { + + 'tailbone.providers': [ + 'tailbone_corepos = tailbone_corepos.provider:TailboneCorePosProvider', + ], + }, ) diff --git a/tailbone_corepos/provider.py b/tailbone_corepos/provider.py new file mode 100644 index 0000000..ae566a3 --- /dev/null +++ b/tailbone_corepos/provider.py @@ -0,0 +1,180 @@ +# -*- coding: utf-8; -*- +################################################################################ +# +# Rattail -- Retail Software Framework +# Copyright © 2010-2022 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 . +# +################################################################################ +""" +Tailbone Provider for CORE-POS Integration +""" + +from sqlalchemy.orm import sessionmaker, scoped_session +from zope.sqlalchemy import register + +from tailbone.providers import TailboneProvider + + +class TailboneCorePosProvider(TailboneProvider): + """ + View provider for tailbone-corepos + """ + key = 'tailbone_corepos' + + def configure_db_sessions(self, rattail_config, pyramid_config): + from tailbone_corepos.db import (CoreOfficeSession, + CoreTransSession, + ExtraCoreOfficeSessions, + ExtraCoreTransSessions) + + # CORE-POS DB(s) + CoreOfficeSession.configure(bind=rattail_config.corepos_engine) + CoreTransSession.configure(bind=rattail_config.coretrans_engine) + + # create session wrappers for each "extra" CORE DB engine + for key, engine in rattail_config.core_office_op_engines.items(): + if key != 'default': + Session = scoped_session(sessionmaker(bind=engine)) + register(Session) + ExtraCoreOfficeSessions[key] = Session + + # create session wrappers for each "extra" CORE Transaction DB engine + for key, engine in rattail_config.core_office_trans_engines.items(): + if key != 'default': + Session = scoped_session(sessionmaker(bind=engine)) + register(Session) + ExtraCoreTransSessions[key] = Session + + def get_provided_views(self): + return { + + 'rattail': { + + 'people': { + 'tailbone.views.customers': { + 'spec': 'tailbone_corepos.views.customers', + }, + 'tailbone.views.members': { + 'spec': 'tailbone_corepos.views.members', + }, + # TODO + # 'tailbone.views.people': { + # 'spec': 'tailbone_corepos.views.people', + # }, + }, + + 'products': { + 'tailbone.views.departments': { + 'spec': 'tailbone_corepos.views.departments', + }, + 'tailbone.views.products': { + 'spec': 'tailbone_corepos.views.products', + }, + 'tailbone.views.subdepartments': { + 'spec': 'tailbone_corepos.views.subdepartments', + }, + 'tailbone.views.vendors': { + 'spec': 'tailbone_corepos.views.vendors', + }, + }, + + 'other': { + 'tailbone.views.stores': { + 'spec': 'tailbone_corepos.views.stores', + }, + }, + }, + + 'corepos': { + + 'people': { + 'tailbone_corepos.views.corepos.customers': { + 'label': "Customers", + }, + 'tailbone_corepos.views.corepos.employees': { + 'label': "Employees", + }, + 'tailbone_corepos.views.corepos.groups': { + 'label': "User Groups", + }, + 'tailbone_corepos.views.corepos.members': { + 'label': "Members", + }, + 'tailbone_corepos.views.corepos.users': { + 'label': "Users", + }, + }, + + 'products': { + 'tailbone_corepos.views.corepos.departments': { + 'label': "Departments", + }, + 'tailbone_corepos.views.corepos.subdepartments': { + 'label': "Subdepartments", + }, + 'tailbone_corepos.views.corepos.superdepartments': { + 'label': "Super Departments", + }, + 'tailbone_corepos.views.corepos.likecodes': { + 'label': "Like Codes", + }, + 'tailbone_corepos.views.corepos.origins': { + 'label': "Origins", + }, + 'tailbone_corepos.views.corepos.products': { + 'label': "Products", + }, + 'tailbone_corepos.views.corepos.scaleitems': { + 'label': "Scale Items", + }, + 'tailbone_corepos.views.corepos.vendoritems': { + 'label': "Vendor Items", + }, + 'tailbone_corepos.views.corepos.vendors': { + 'label': "Vendors", + }, + }, + + 'other': { + 'tailbone_corepos.views.corepos.batches': { + 'label': "Batches", + }, + 'tailbone_corepos.views.corepos.coupons': { + 'label': "Coupons", + }, + 'tailbone_corepos.views.corepos.parameters': { + 'label': "Parameters", + }, + 'tailbone_corepos.views.corepos.purchaseorders': { + 'label': "Purchase Orders", + }, + 'tailbone_corepos.views.corepos.stores': { + 'label': "Stores", + }, + 'tailbone_corepos.views.corepos.tablesyncrules': { + 'label': "Table Sync Rules", + }, + 'tailbone_corepos.views.corepos.taxrates': { + 'label': "Tax Rates", + }, + 'tailbone_corepos.views.corepos.transactions': { + 'label': "Transactions", + }, + }, + }, + }