Add schema extension for Stores, importing from CORE API

This commit is contained in:
Lance Edgar 2021-01-27 22:21:06 -06:00
parent 9b00de26c6
commit 95952c665e
6 changed files with 161 additions and 2 deletions

View file

@ -2,7 +2,7 @@
################################################################################
#
# Rattail -- Retail Software Framework
# Copyright © 2010-2020 Lance Edgar
# Copyright © 2010-2021 Lance Edgar
#
# This file is part of Rattail.
#
@ -24,6 +24,7 @@
Database schema extensions for CORE-POS integration
"""
from .stores import CoreStore
from .people import CorePerson, CoreCustomer, CoreMember
from .products import (CoreDepartment, CoreSubdepartment,
CoreVendor, CoreProduct, CoreProductCost)

View file

@ -0,0 +1,65 @@
# -*- coding: utf-8; -*-
################################################################################
#
# Rattail -- Retail Software Framework
# Copyright © 2010-2021 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/>.
#
################################################################################
"""
Database schema extensions for CORE-POS integration
"""
import sqlalchemy as sa
from sqlalchemy import orm
from rattail.db import model
class CoreStore(model.Base):
"""
CORE-specific extensions to :class:`rattail:rattail.db.model.Store`.
"""
__tablename__ = 'corepos_store'
__table_args__ = (
sa.ForeignKeyConstraint(['uuid'], ['store.uuid'],
name='corepos_store_fk_store'),
)
__versioned__ = {}
uuid = model.uuid_column(default=None)
store = orm.relationship(
model.Store,
doc="""
Reference to the actual store record, which this one extends.
""",
backref=orm.backref(
'_corepos',
uselist=False,
cascade='all, delete-orphan',
doc="""
Reference to the CORE-POS extension record for this store.
"""))
corepos_id = sa.Column(sa.Integer(), nullable=False, doc="""
``Stores.storeID`` value for this store, within CORE-POS.
""")
def __str__(self):
return str(self.store)
CoreStore.make_proxy(model.Store, '_corepos', 'corepos_id')