From 762f822f4d71f118c140a184ba03d5c5bac3440e Mon Sep 17 00:00:00 2001 From: TkymHrt <23.h.takayama.nutfes@gmail.com> Date: Thu, 22 Feb 2024 16:30:18 +0900 Subject: [PATCH] =?UTF-8?q?[fix]=20console.log=E3=82=92=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- view/next-project/src/pages/purchasereports/index.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/view/next-project/src/pages/purchasereports/index.tsx b/view/next-project/src/pages/purchasereports/index.tsx index 2e9c54308..7e7dc0e12 100644 --- a/view/next-project/src/pages/purchasereports/index.tsx +++ b/view/next-project/src/pages/purchasereports/index.tsx @@ -102,7 +102,6 @@ export default function PurchaseReports(props: Props) { const getPurchaseReport = async () => { const getPurchaseReportViewUrlByYear = process.env.CSR_API_URI + '/purchasereports/details/' + selectedYear; - console.log(getPurchaseReportViewUrlByYear); const getPurchaseOrderByYears = await get(getPurchaseReportViewUrlByYear); setPurchaseReportViews(getPurchaseOrderByYears); }; @@ -127,7 +126,6 @@ export default function PurchaseReports(props: Props) { purchaseReportViews.forEach((purchaseReportView: PurchaseReportView) => { const fee = TotalFee(purchaseReportView.purchaseReport, purchaseReportView.purchaseItems) || 0; - console.log(`Report ID: ${purchaseReportView.purchaseReport.id}, Fee: ${fee}`); totalFee += fee; }); return totalFee;