Skip to content

Commit

Permalink
[fix] console.logを削除
Browse files Browse the repository at this point in the history
  • Loading branch information
TkymHrt committed Feb 22, 2024
1 parent 1f10c26 commit 762f822
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions view/next-project/src/pages/purchasereports/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};
Expand All @@ -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;
Expand Down

0 comments on commit 762f822

Please sign in to comment.