small fixes

This commit is contained in:
2024-11-20 18:00:52 -05:00
parent b9a5667a3b
commit b70ea0b6a0
4 changed files with 130 additions and 23 deletions

View File

@@ -1,6 +1,6 @@
from sqlalchemy import Column, Integer,\
DECIMAL, TEXT,\
VARCHAR, TIMESTAMP, DATE
VARCHAR, BOOLEAN, DATE
from database import Base
@@ -26,4 +26,5 @@ class MoneyDelivery(Base):
total_discount_total = Column(DECIMAL(6, 2))
taxes_paid = Column(DECIMAL(6, 2))
total_profit = Column(DECIMAL(6, 2))
total_profit_oil = Column(DECIMAL(6, 2))
total_profit_oil = Column(DECIMAL(6, 2))
auto = Column(BOOLEAN)