- wholesale 패키지 연동 (SooinSession, GeoYoungSession) - Flask Blueprint 분리 (sooin_api.py, geoyoung_api.py) - order_context 스키마 확장 (wholesaler_id, internal_code 등) - 수인약품 개별 취소 기능 (cancel_item, restore_item) - 문서 추가: WHOLESALE_API_INTEGRATION.md - 테스트 스크립트들
30 lines
900 B
Python
30 lines
900 B
Python
# -*- coding: utf-8 -*-
|
|
"""체크박스로 삭제 테스트"""
|
|
from sooin_api import SooinSession
|
|
import re
|
|
|
|
session = SooinSession()
|
|
session.login()
|
|
|
|
# Bag.asp의 JavaScript 전체 확인
|
|
resp = session.session.get('http://sooinpharm.co.kr/Service/Order/Bag.asp?currVenCd=50911')
|
|
|
|
# onclick 이벤트들 찾기
|
|
onclicks = re.findall(r'onclick="([^"]*)"', resp.text)
|
|
print('onclick handlers:')
|
|
for oc in onclicks[:10]:
|
|
if len(oc) < 200:
|
|
print(f' {oc}')
|
|
|
|
# form의 name과 action
|
|
forms = re.findall(r'<form[^>]*name="([^"]*)"[^>]*action="([^"]*)"', resp.text)
|
|
print('\nForms:')
|
|
for name, action in forms:
|
|
print(f' {name}: {action}')
|
|
|
|
# 삭제 관련 JavaScript 함수 찾기
|
|
scripts = re.findall(r'function\s+(\w+Del\w*|\w+Cancel\w*|\w+Remove\w*)\s*\([^)]*\)\s*\{[^}]{0,300}', resp.text, re.IGNORECASE)
|
|
print('\nDelete functions:')
|
|
for s in scripts[:5]:
|
|
print(f' {s[:100]}...')
|