feat(dispatch): 배송사 배지를 로고 이미지로 표시

- store.courier_logo_url: 배송사명(부분 일치) → 로고 SVG URL, 없으면 텍스트 폴백
- Jinja 필터 courier_logo 등록(main.py)
- Ninja Van / J&T Express 내장 SVG 로고 추가(static/dispatch/courier/)
- 출고 작업 카드 + Kagayaku 전달 요약에 로고 렌더

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-19 15:54:23 +09:00
parent a189b93427
commit a65ca65a8b
6 changed files with 76 additions and 1 deletions
+5
View File
@@ -125,6 +125,11 @@ templates.env.loader = ChoiceLoader(
]
)
# 배송사명 → 로고 URL(dispatch 모듈). 템플릿에서 {{ provider | courier_logo }}.
from .modules.dispatch.store import courier_logo_url as _courier_logo_url # noqa: E402
templates.env.filters["courier_logo"] = _courier_logo_url
oauth = build_google_oauth()
user_store = UserStore(DATA_DIR / "users.json")