Sith/counter/schemas.py

39 lines
907 B
Python
Raw Normal View History

from typing import Annotated
from annotated_types import MinLen
from ninja import Field, FilterSchema, ModelSchema
2024-07-18 18:23:30 +00:00
from core.schemas import SimpleUserSchema
from counter.models import Counter, Customer, Product
2024-07-18 18:23:30 +00:00
class CounterSchema(ModelSchema):
barmen_list: list[SimpleUserSchema]
is_open: bool
class Meta:
model = Counter
fields = ["id", "name", "type", "club", "products"]
2024-12-15 20:33:43 +00:00
class CustomerSchema(ModelSchema):
class Meta:
model = Customer
2024-12-15 20:33:43 +00:00
fields = ["user", "account_id", "amount", "recorded_products"]
class CounterFilterSchema(FilterSchema):
search: Annotated[str, MinLen(1)] = Field(None, q="name__icontains")
class SimplifiedCounterSchema(ModelSchema):
class Meta:
model = Counter
fields = ["id", "name"]
class ProductSchema(ModelSchema):
class Meta:
model = Product
fields = ["id", "name", "code"]