Installation

This assumes you already have a WuttJamaican app setup and working.

Install the Wutta-COREPOS package to your virtual environment:

pip install Wutta-COREPOS

Edit your config file to add CORE-POS DB connection info, and related settings.

[corepos]
office.url = http://localhost/fannie/

[corepos.db.office_op]
default.url = mysql+mysqlconnector://localhost/core_op

[corepos.db.office_trans]
default.url = mysql+mysqlconnector://localhost/core_trans

[corepos.db.office_arch]
default.url = mysql+mysqlconnector://localhost/trans_archive

[corepos.db.lane_op]
keys = 01, 02
01.url = mysql+mysqlconnector://lane01/opdata
02.url = mysql+mysqlconnector://lane02/opdata

[corepos.db.lane_trans]
keys = 01, 02
01.url = mysql+mysqlconnector://lane01/translog
02.url = mysql+mysqlconnector://lane02/translog

And that’s it, the CORE-POS integration is configured.

Schema Extension

As of writing the only reason to add the schema extension is if you need to map Wutta Users to CORE Employees, for auth (login) purposes. So this section can be skipped if you do not need that.

This will effectively add the corepos_employee_number attribute on the User model.

First you must override the app model with your own. To do this, create your own module (e.g. poser.db.model) to contain:

from wuttjamaican.db.model import *
from wutta_corepos.db.model import *

Then configure your app model to override the default:

[wutta]
model_spec = poser.db.model

Then configure the Alembic section for schema migrations:

[alembic]
script_location = wuttjamaican.db:alembic
version_locations = wutta_corepos.db:alembic/versions wuttjamaican.db:alembic/versions

And finally run the Alembic command to migrate:

cd /path/to/env
bin/alembic -c app/wutta.conf upgrade heads

That should do it, from then on any changes will be migrated automatically during upgrade.