diff --git a/resources/views/barobill/hometax/index.blade.php b/resources/views/barobill/hometax/index.blade.php
index 1e6ccc19..915463e2 100644
--- a/resources/views/barobill/hometax/index.blade.php
+++ b/resources/views/barobill/hometax/index.blade.php
@@ -224,6 +224,8 @@ className="flex items-center gap-2 px-3 py-1.5 bg-blue-100 text-blue-700 rounded
사업자번호 (주민번호) |
과세 형태 |
공급가액 |
+ 세액 |
+ 합계 |
영수 청구 |
문서 형태 |
발급 형태 |
@@ -233,7 +235,7 @@ className="flex items-center gap-2 px-3 py-1.5 bg-blue-100 text-blue-700 rounded
{invoices.length === 0 ? (
- |
+ |
해당 기간에 조회된 세금계산서가 없습니다.
|
@@ -278,6 +280,14 @@ className="flex items-center gap-2 px-3 py-1.5 bg-blue-100 text-blue-700 rounded
{formatCurrency(inv.supplyAmount)}
|
+ {/* 세액 */}
+
+ {formatCurrency(inv.taxAmount)}
+ |
+ {/* 합계 */}
+
+ {formatCurrency(inv.totalAmount)}
+ |
{/* 영수청구 */}
{inv.purposeTypeName || '-'}
|