General code clean up and bug fixes. Still working on order and orders that are carts

This commit is contained in:
Scott Idem
2022-01-22 18:53:21 -05:00
parent ab0b900721
commit 4a8c77d4e0
5 changed files with 11 additions and 10 deletions

View File

@@ -58,8 +58,8 @@ class Order_Base(BaseModel):
# Including convenience data
# This is only for convenience. Probably going to keep unless it causes a problem.
dollar_total_bill: Optional[str] # From SQL view
dollar_total_paid: int = Optional[str] # From SQL view
dollar_balance: int = Optional[str] # From SQL view
dollar_total_paid: Optional[str] # From SQL view
dollar_balance: Optional[str] # From SQL view
# Including other related objects
cfg: Optional[Order_Cfg_Base]