From 0c19e001367e0184e70e45c67fb89638cbbc1d2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Sat, 7 Feb 2026 09:18:10 +0900 Subject: [PATCH] =?UTF-8?q?fix:=EB=B6=80=EA=B0=80=EC=84=B8=20=EC=9C=A0?= =?UTF-8?q?=ED=98=95=20=ED=95=84=ED=84=B0=20=EB=93=9C=EB=A1=AD=EB=8B=A4?= =?UTF-8?q?=EC=9A=B4=EC=9D=84=20=EA=B5=AC=EB=B6=84=20=EB=A6=AC=EC=8A=A4?= =?UTF-8?q?=ED=8A=B8=EC=99=80=20=EC=9D=BC=EC=B9=98=EC=8B=9C=ED=82=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- resources/views/finance/vat.blade.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/resources/views/finance/vat.blade.php b/resources/views/finance/vat.blade.php index adf8296a..16fec516 100644 --- a/resources/views/finance/vat.blade.php +++ b/resources/views/finance/vat.blade.php @@ -157,10 +157,10 @@ function VatManagement() { if (!matchesSearch || !matchesTaxType || !matchesStatus) return false; if (filterType === 'all') return true; - if (filterType === 'hometax_sales') return item.source === 'hometax' && item.type === 'sales'; - if (filterType === 'hometax_purchase') return item.source === 'hometax' && item.type === 'purchase'; + if (filterType === 'hometax_sales') return item.type === 'sales' && item.taxType !== 'exempt'; + if (filterType === 'hometax_purchase') return item.source === 'hometax' && item.type === 'purchase' && item.taxType !== 'exempt'; + if (filterType === 'exempt_purchase') return item.taxType === 'exempt'; if (filterType === 'purchase_card') return item.source === 'card'; - if (filterType === 'manual') return item.source === 'manual'; return true; }); @@ -400,10 +400,10 @@ function VatManagement() {