feat: products quantity and total price in deal schemas

This commit is contained in:
2025-10-11 16:22:38 +04:00
parent 636821e74a
commit d8eba188c9
3 changed files with 84 additions and 7 deletions

View File

@ -17,6 +17,10 @@ class DealSchema(BaseSchema):
status: StatusSchema
board: BoardSchema
created_at: datetime
# FF module
products_quantity: int = 0
total_price: float = 0
# clients module
client: Optional[ClientSchema] = None