From 804662186f76cb93645f5fc1199553c39f55e870 Mon Sep 17 00:00:00 2001 From: "sosuke.iwabuchi" Date: Thu, 31 Aug 2023 09:52:25 +0900 Subject: [PATCH] =?UTF-8?q?=E7=B2=BE=E7=AE=97=E3=83=87=E3=83=BC=E3=82=BF?= =?UTF-8?q?=E5=8F=96=E5=BE=97=E6=99=82=E3=81=AB=E5=8F=96=E5=BE=97=E3=81=97?= =?UTF-8?q?=E3=81=9F=E9=87=91=E9=A1=8D=E3=81=A7=E6=B6=88=E8=B2=BB=E7=A8=8E?= =?UTF-8?q?=E3=82=92=E8=A8=88=E7=AE=97=E3=81=97=E3=81=A6=E3=81=97=E3=81=BE?= =?UTF-8?q?=E3=81=A3=E3=81=A6=E3=81=84=E3=82=8B=E3=81=AE=E3=82=92=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SATE_RECEIPT-42 精算履歴取得時の消費税 --- .../custom/hello-techno/hooks/useInputReceiptStep.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/dashboard/receipt-issuing-order/custom/hello-techno/hooks/useInputReceiptStep.tsx b/src/pages/dashboard/receipt-issuing-order/custom/hello-techno/hooks/useInputReceiptStep.tsx index 76b2bc1..628a1a6 100644 --- a/src/pages/dashboard/receipt-issuing-order/custom/hello-techno/hooks/useInputReceiptStep.tsx +++ b/src/pages/dashboard/receipt-issuing-order/custom/hello-techno/hooks/useInputReceiptStep.tsx @@ -92,6 +92,7 @@ export default function useInputReceiptStep({ onNext, onPrev }: Props) { }; const setTax = () => { + if (adjustData !== null) return; const tax = String(calcInnerTax(Number(amount))); if (tax) { form.setValue("tax_amount", tax);