mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 22:23:23 +00:00
19 lines
580 B
Python
19 lines
580 B
Python
from model_bakery.recipe import Recipe, foreign_key
|
|
|
|
from club.models import Club
|
|
from core.models import User
|
|
from counter.models import Counter, Product, Refilling, Selling
|
|
|
|
counter_recipe = Recipe(Counter)
|
|
product_recipe = Recipe(Product, club=foreign_key(Recipe(Club)))
|
|
sale_recipe = Recipe(
|
|
Selling,
|
|
product=foreign_key(product_recipe),
|
|
counter=foreign_key(counter_recipe),
|
|
seller=foreign_key(Recipe(User)),
|
|
club=foreign_key(Recipe(Club)),
|
|
)
|
|
refill_recipe = Recipe(
|
|
Refilling, counter=foreign_key(counter_recipe), operator=foreign_key(Recipe(User))
|
|
)
|