Sith/counter/schemas.py

33 lines
748 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, 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"]
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"]