2026.06.04 frontend építés közben

This commit is contained in:
Roo
2026-06-04 07:26:22 +00:00
parent 7adf6cc3e3
commit 59a30ac428
3302 changed files with 24091 additions and 1771 deletions

12
backend/check_branch.py Normal file
View File

@@ -0,0 +1,12 @@
import asyncio
from sqlalchemy import select
from app.db.session import AsyncSessionLocal
from app.models.marketplace.organization import Branch
async def check():
async with AsyncSessionLocal() as db:
o = (await db.execute(select(Branch).limit(5))).scalars().all()
for i in o:
print(i.id, i.organization_id, i.is_main)
asyncio.run(check())