feat: sell_from_stock for marketplaces

This commit is contained in:
2025-12-15 15:26:04 +04:00
parent d0698aeb97
commit 86a376ceb2
2 changed files with 5 additions and 2 deletions

View File

@@ -53,7 +53,8 @@ class Marketplace(BaseSiproModel):
sell_mixes: Mapped[bool] = mapped_column()
sell_blocks: Mapped[bool] = mapped_column()
sell_warehouse_products: Mapped[bool] = mapped_column()
sell_from_price: Mapped[bool] = mapped_column()
sell_from_price: Mapped[int] = mapped_column()
sell_from_stock: Mapped[int] = mapped_column()
is_deleted: Mapped[bool] = mapped_column()
is_paused: Mapped[bool] = mapped_column()
send_stocks: Mapped[bool] = mapped_column()