From befa4273a8b6a6ca4ee6bc11f2cf37d9a325ab07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Thu, 5 Feb 2026 15:01:46 +0900 Subject: [PATCH] =?UTF-8?q?fix:=EC=88=98=EB=8F=99=EA=B1=B0=EB=9E=98=20?= =?UTF-8?q?=EC=88=98=EC=A0=95=EB=AA=A8=EB=8B=AC=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=EA=B3=B5=EA=B8=89=EA=B0=80=EC=95=A1=EC=9D=B4=20=ED=95=A9?= =?UTF-8?q?=EA=B3=84=EA=B8=88=EC=95=A1=EC=9C=BC=EB=A1=9C=20=ED=91=9C?= =?UTF-8?q?=EC=8B=9C=EB=90=98=EB=8A=94=20=EB=B2=84=EA=B7=B8=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit editData.approvalAmount(합계) 대신 effectiveSupplyAmount(공급가액)를 사용 Co-Authored-By: Claude Opus 4.5 --- resources/views/barobill/ecard/index.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/barobill/ecard/index.blade.php b/resources/views/barobill/ecard/index.blade.php index 12186544..b725dbd0 100644 --- a/resources/views/barobill/ecard/index.blade.php +++ b/resources/views/barobill/ecard/index.blade.php @@ -649,8 +649,8 @@ className="flex-1 py-2 bg-purple-600 text-white rounded-lg hover:bg-purple-700 t use_time: editData.useTime || '', approval_num: editData.approvalNum || '', approval_type: editData.approvalType || '1', - approval_amount: editData.approvalAmount || 0, - tax: editData.tax || 0, + approval_amount: editData.effectiveSupplyAmount || 0, + tax: editData.effectiveTax || 0, merchant_name: editData.merchantName || '', merchant_biz_num: editData.merchantBizNum || '', deduction_type: editData.deductionType || 'deductible',