fix(dispatch): '재고' → '사방넷 출고' 명칭 정정

- 다운로드 파일은 재고가 아니라 사방넷에 올려 출고로 잡는 파일(업로드 시 재고 차감).
  달력 카드 제목/안내/버튼 문구를 출고로 정정, 파일명 _sabangnet_outbound.xlsx
- 컬럼/집계 로직은 동일

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-22 17:28:38 +09:00
parent 9221efe925
commit 27e2c17606
2 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -214,10 +214,10 @@ def build_stock_xlsx(
def stock_filename(dispatch_date: str) -> str:
"""고 엑셀 파일명: 2026.06.22(Mon)_sabangnet.xlsx."""
"""사방넷 출고 엑셀 파일명: 2026.06.22(Mon)_sabangnet_outbound.xlsx."""
d = _parse_date(dispatch_date)
stamp = d.strftime("%Y.%m.%d(%a)") if d else (dispatch_date or "stock").strip()
return f"{stamp}_sabangnet.xlsx"
stamp = d.strftime("%Y.%m.%d(%a)") if d else (dispatch_date or "outbound").strip()
return f"{stamp}_sabangnet_outbound.xlsx"
def _cell(value: Any) -> Any: