feat: 처방 사용량 페이지에 약품 위치 표시

- rx-usage API에 CD_item_position.CD_NM_sale 조인 추가
- 제품코드 옆에 위치 배지 표시 (📍A-1 형태)
- 인디고 색상 작은 배지로 UI 해치지 않게
This commit is contained in:
thug0bin
2026-03-06 13:41:39 +09:00
parent 055fad574d
commit ddba17ae08
3 changed files with 45 additions and 4 deletions

View File

@@ -379,6 +379,17 @@
font-size: 11px;
color: var(--text-muted);
}
.location-badge {
display: inline-block;
background: rgba(99, 102, 241, 0.15);
color: var(--accent-indigo);
font-size: 10px;
font-weight: 500;
padding: 1px 5px;
border-radius: 4px;
margin-left: 4px;
font-family: inherit;
}
/* 수량 관련 */
.qty-cell {
@@ -926,7 +937,7 @@
}
<div class="product-info">
<span class="product-name">${escapeHtml(item.product_name)}</span>
<span class="product-code">${item.drug_code}${item.supplier ? ` · ${escapeHtml(item.supplier)}` : ''}</span>
<span class="product-code">${item.drug_code}${item.supplier ? ` · ${escapeHtml(item.supplier)}` : ''}${item.location ? ` <span class="location-badge">📍${escapeHtml(item.location)}</span>` : ''}</span>
</div>
</div>
</td>