feat(order): 지오영/수인 선택적 주문 + 장바구니 보존 기능

- internal_code DB 저장 → 프론트에서 선택한 제품 그대로 주문
- 기존 장바구니 백업/복구로 사용자 장바구니 보존
- 수인약품 submit_order() 수정 (체크박스 제외 방식)
- 테스트 파일 정리 및 문서 추가
This commit is contained in:
thug0bin
2026-03-06 23:26:44 +09:00
parent f48e657e12
commit a672c7a2a0
79 changed files with 4851 additions and 2672 deletions

13
backend/test_geo_debug.py Normal file
View File

@@ -0,0 +1,13 @@
# -*- coding: utf-8 -*-
import sys; sys.path.insert(0, '.'); import wholesale_path
from wholesale import GeoYoungSession
import json
g = GeoYoungSession()
g.login()
r = g.search_products('라식스')
if r.get('items'):
item = r['items'][0]
print("첫 번째 품목 전체 데이터:")
print(json.dumps(item, indent=2, ensure_ascii=False, default=str))