Refactor menu flows into dedicated pages
Some checks failed
ci / test (push) Has been cancelled

This commit is contained in:
VPN SaaS Dev
2026-05-16 11:59:09 +09:00
parent 01a69fc42d
commit ecfb5aa949
20 changed files with 2415 additions and 97 deletions

View File

@@ -62,7 +62,7 @@ def work_order_webapp_url(work_order_id: int) -> str:
def vehicle_profile_webapp_url(vehicle_id: int) -> str:
return webapp_url(f"?section=carProfile&car_id={vehicle_id}")
return webapp_url(f"car_profile.html?car_id={vehicle_id}")
async def get_work_order(session: AsyncSession, work_order_id: int) -> ServiceVisit: