feat: 제품 검색 페이지에 제품 이미지 표시 및 등록 기능 추가

- API에 thumbnail 반환 추가 (product_images.db 조회)
- 테이블에 이미지 컬럼 추가 (40x40 썸네일)
- 이미지/플레이스홀더 클릭 → 등록 모달 (URL/촬영)
- 판매내역과 동일한 UX
This commit is contained in:
thug0bin
2026-03-04 14:15:29 +09:00
parent 2859dc43cc
commit 01f0df9294
2 changed files with 369 additions and 6 deletions

View File

@@ -3447,7 +3447,8 @@ def api_products():
'stock': int(row.stock) if row.stock else 0,
'apc': apc,
'category': None, # PostgreSQL에서 lazy fetch
'wholesaler_stock': None
'wholesaler_stock': None,
'thumbnail': None # 아래에서 채움
})
# 동물약 분류 Lazy Fetch (PostgreSQL) - 실패해도 무시
@@ -3482,6 +3483,47 @@ def api_products():
logging.warning(f"PostgreSQL 분류 조회 실패 (무시): {pg_err}")
# PostgreSQL 실패해도 MSSQL 데이터는 정상 반환
# 제품 이미지 조회 (product_images.db)
try:
images_db_path = Path(__file__).parent / 'db' / 'product_images.db'
if images_db_path.exists():
img_conn = sqlite3.connect(str(images_db_path))
img_cursor = img_conn.cursor()
barcodes = [item['barcode'] for item in items if item['barcode']]
drug_codes = [item['drug_code'] for item in items if item['drug_code']]
image_map = {}
if barcodes:
placeholders = ','.join(['?' for _ in barcodes])
img_cursor.execute(f'''
SELECT barcode, thumbnail_base64
FROM product_images
WHERE barcode IN ({placeholders}) AND thumbnail_base64 IS NOT NULL
''', barcodes)
for row in img_cursor.fetchall():
image_map[f'bc:{row[0]}'] = row[1]
if drug_codes:
placeholders = ','.join(['?' for _ in drug_codes])
img_cursor.execute(f'''
SELECT drug_code, thumbnail_base64
FROM product_images
WHERE drug_code IN ({placeholders}) AND thumbnail_base64 IS NOT NULL
''', drug_codes)
for row in img_cursor.fetchall():
if f'dc:{row[0]}' not in image_map:
image_map[f'dc:{row[0]}'] = row[1]
img_conn.close()
for item in items:
thumb = image_map.get(f'bc:{item["barcode"]}') or image_map.get(f'dc:{item["drug_code"]}')
if thumb:
item['thumbnail'] = thumb
except Exception as img_err:
logging.warning(f"제품 이미지 조회 오류: {img_err}")
return jsonify({
'success': True,
'items': items,