fix:홈택스 카드 제목에 매입 추가

This commit is contained in:
김보곤
2026-02-03 17:49:20 +09:00
parent 3e07486191
commit c2074dd889

View File

@@ -977,14 +977,14 @@ className="flex items-center gap-2 text-sm font-semibold rounded-md disabled:opa
color="blue"
/>
<StatCard
title="과세 공급가액"
title="매입 과세 공급가액"
value={formatCurrency(purchaseTaxSummary.taxableAmount)}
subtext={`${purchaseTaxSummary.taxableCount}건`}
icon={<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M13 17h8m0 0V9m0 8l-8-8-4 4-6-6"/></svg>}
color="red"
/>
<StatCard
title="면세 공급가액"
title="매입 면세 공급가액"
value={formatCurrency(purchaseTaxSummary.exemptAmount)}
subtext={`${purchaseTaxSummary.exemptCount}건`}
icon={<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"/></svg>}