Lance Edgar
52d9595331
Fix Department.see_id
field definition
...
this is not a flag, but a minimum age requirement
2020-12-31 19:01:40 -06:00
Lance Edgar
ff428c4635
Misc. tweaks to product-related schema, for sake of generating SQL
...
e.g. from IFPS data
2020-12-09 13:09:58 -06:00
Lance Edgar
29638c062c
Remove "default" values from Product model definition
...
i'm a bit torn about this. on the one hand i like there being some default
values here, but realistically they didn't all make sense. also it could be
said that default values amount to business logic and that should stay in CORE
basically.
but in the end, i needed these to go away in order to simplify generating some
SQL INSERT statements. was using SQLAlchemy core and it kept insisting that
all fields with a "default" defined should be part of the INSERT statement, but
really i didn't want them to be. so they no longer have defaults.
2020-12-07 17:41:01 -06:00
Lance Edgar
9dd5813520
Update changelog
2020-09-16 19:43:35 -05:00
Lance Edgar
286df47c22
Add get_vendor_items()
and get_vendor_item()
methods for web API
2020-09-04 19:07:41 -05:00
Lance Edgar
963f544b02
Expose some "new" columns for ScaleItem model
...
may need to revisit this again, when an "old" DB is encountered
2020-09-02 11:25:10 -05:00
Lance Edgar
74a28514dc
Tweak relationship for Department._super_parents
...
since there can be more than one
2020-08-20 14:41:08 -05:00
Lance Edgar
e2dc00b469
Add model for SuperDepartment
2020-08-20 14:26:46 -05:00
Lance Edgar
472f43896b
Add basic batch models
2020-08-16 16:57:54 -05:00
Lance Edgar
9299cd445f
Add "origin" models for office_op schema
2020-08-10 15:57:32 -05:00
Lance Edgar
ef1a25f0dc
Make sure MemberInfo.customers
is sorted by person number
...
also improve the str() method a bit
2020-07-30 11:11:17 -05:00
Lance Edgar
4c7b208e6e
Add Suspension and ReasonCodes to model
2020-07-22 20:25:20 -05:00
Lance Edgar
365d679d76
Add split_street()
method for MemberInfo
2020-07-21 15:07:28 -05:00
Lance Edgar
13b8380527
Declare foreign key for CustData.member_type
2020-07-15 22:15:11 -05:00
Lance Edgar
257ed82d6d
Bring __version__
into root namespace
...
can't remember why that wouldn't already be there..? maybe just forgot
2020-07-15 21:42:28 -05:00
Lance Edgar
68ab8ff55d
Add CustomerAccount.customer_type
reference, to MemberType
...
not 100% sure about the best naming here, hopefully this is good
2020-07-13 11:03:32 -05:00
Lance Edgar
07291b3fa7
Add MemberNote
and MemberInfo.notes
to data model
2020-07-13 11:02:59 -05:00
Lance Edgar
beb73dc668
Add Product.last_sold
to schema
...
hopefully that's a good idea..
2020-04-17 00:24:53 -05:00
Lance Edgar
4b971c289e
Add LikeCode
and ProductLikeCode
models
2020-04-10 14:09:38 -05:00
Lance Edgar
87fd5367a1
Add table_exists()
util function
2020-03-31 14:09:51 -05:00
Lance Edgar
d818100da3
Fix id
field for TaxRateComponent
2020-03-31 14:09:39 -05:00
Lance Edgar
14a182c675
Disable TaxRate.sales_code
attribute, for now
...
since some older DBs don't have it
2020-03-30 13:44:22 -05:00
Lance Edgar
64e4b18cf0
Add FloorSection
and ProductPhysicalLocation
models
2020-03-30 13:18:10 -05:00
Lance Edgar
acc85ba8de
Add ProductUser
model
2020-03-30 13:18:08 -05:00
Lance Edgar
6ecfbf4e1a
Add ScaleItem
model
2020-03-30 12:00:52 -05:00
Lance Edgar
5f3ad79a95
Add VendorDepartment
and VendorItem
models
2020-03-30 11:39:57 -05:00
Lance Edgar
9b429eb293
Revert "Try out the "synonym" approach for all Vendor model fields"
...
This reverts commit deea31597c
.
we'll keep the synonym in place for `vendorID` but the rest of these just
caused problems, e.g. with tailbone grids
2020-03-30 11:29:21 -05:00
Lance Edgar
3a440d20bc
Add enum for product price method
2020-03-30 00:05:26 -05:00
Lance Edgar
07c24b63dc
Fix how we interpret Product.id_enforced
values
...
will be an age, not a flag
2020-03-29 23:36:37 -05:00
Lance Edgar
e0058c003d
Add Product.subdepartment
relationship
2020-03-29 23:36:29 -05:00
Lance Edgar
9466b16b64
Add DB models for TaxRate, TaxRateComponent
2020-03-27 20:50:00 -05:00
Lance Edgar
573595497e
Add get_members()
API method
2020-03-18 11:28:19 -05:00
Lance Edgar
d8e93c9d2e
Add set_member()
API method
...
also rename `get_customer()` to `get_member`
2020-03-17 16:04:22 -05:00
Lance Edgar
9e850496e7
Add new Customer and CustomerAccount models
2020-03-16 16:54:42 -05:00
Lance Edgar
92f522cf65
Rename "old" Customer model, to CustData
...
need to make room for "new" Customer model
2020-03-16 16:54:40 -05:00
Lance Edgar
5509089741
Add get_customer()
API method
2020-03-15 19:29:01 -05:00
Lance Edgar
2d0cfa30ca
Add "set" API methods for Department, Subdepartment, Product
2020-03-15 15:52:28 -05:00
Lance Edgar
b76e82975a
Add GET methods to API, for departments, subdepartments, products
2020-03-15 14:27:22 -05:00
Lance Edgar
deea31597c
Try out the "synonym" approach for all Vendor model fields
...
this seems promising, but let's see if anything breaks first
2020-03-06 13:47:32 -06:00
Lance Edgar
a12c9de415
Tweak how we handle return value from API 'set' method for Vendors
...
also add note about using `set_vendor()` for creating new ones.
and misc. other cleanup
2020-03-04 18:54:34 -06:00
Lance Edgar
73b0acecdd
Declare dependency for 'requests' lib
2020-03-03 21:49:16 -06:00
Lance Edgar
7fc5ae9b4e
Add basic CORE webservices API client, for Vendor data
...
lots more to come yet, once the basic patterns are proven
2020-03-03 21:35:39 -06:00
Lance Edgar
a0efa1a967
Add model for datasync changes queue table
...
just in case it's there, for use w/ datasync watcher
2020-03-01 20:49:26 -06:00
Lance Edgar
2d61903cf7
Use twine to upload released package to PyPI
2020-02-27 21:52:05 -06:00
Lance Edgar
5e84653c9c
Update changelog
2020-02-27 21:49:51 -06:00
Lance Edgar
d4b143acc8
Officially stop supporting Python 2.x
...
can refactor actual code later as needed
2020-02-27 21:49:19 -06:00
Lance Edgar
7fbcc844c4
Move "transaction" DB for CORE Office to office_trans
subpackage
2020-02-27 21:46:31 -06:00
Lance Edgar
e44e5967b1
Move "operational" DB for CORE Office to office_op
subpackage
2020-02-27 21:42:07 -06:00
Lance Edgar
eb1b6524e6
Add utility function, get_last_card_number()
2019-10-28 21:40:20 -05:00
Lance Edgar
c29c18ec5c
Add enum for "member contact preference"
2019-10-28 18:10:50 -05:00