852f9d4902
data models, import/export, web views etc.
14 lines
309 B
Python
14 lines
309 B
Python
# -*- coding: utf-8; -*-
|
|
"""
|
|
Rattail Demo data model
|
|
"""
|
|
|
|
# bring in all the normal stuff from Rattail
|
|
from rattail.db.model import *
|
|
|
|
# also bring in CORE integration models
|
|
from rattail_corepos.db.model import *
|
|
|
|
# now bring in Demo-specific models
|
|
from .shopfoo import ShopfooProduct, ShopfooProductExport
|