feat: 제품 검색 페이지에 동물약 뱃지 표시

- /api/products API에 is_animal_drug 필드 추가
- POS_BOON='010103' 기준으로 동물약 판별
- 🐾 동물약 뱃지 표시 (초록색)
This commit is contained in:
thug0bin
2026-02-27 17:56:34 +09:00
parent 431909e50b
commit 197ded3806
3 changed files with 183 additions and 3 deletions

View File

@@ -469,7 +469,10 @@
tbody.innerHTML = productsData.map((item, idx) => `
<tr>
<td>
<div class="product-name">${escapeHtml(item.product_name)}</div>
<div class="product-name">
${item.is_animal_drug ? '<span style="display:inline-block;background:#10b981;color:#fff;font-size:11px;padding:2px 6px;border-radius:4px;margin-right:6px;">🐾 동물약</span>' : ''}
${escapeHtml(item.product_name)}
</div>
<div class="product-supplier ${item.is_set ? 'set' : ''}">${escapeHtml(item.supplier) || ''}</div>
</td>
<td><span class="code code-drug">${item.drug_code}</span></td>