From 359d65bb52827ca6441db87f0708913569797cfb Mon Sep 17 00:00:00 2001 From: "cyril.tsui" Date: Thu, 9 Jan 2025 17:14:45 +0800 Subject: [PATCH] update --- src/app/api/financialsummary/actions.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/app/api/financialsummary/actions.ts b/src/app/api/financialsummary/actions.ts index 41ee815..0ada047 100644 --- a/src/app/api/financialsummary/actions.ts +++ b/src/app/api/financialsummary/actions.ts @@ -87,7 +87,9 @@ export interface FinancialSummaryByClientExcel { projectNo: number; totalFee: number; totalBudget: number; - cumulativeExpenditure: number; + // cumulativeExpenditure: number; + totalExpenditure: number; + manhoursExpenditure: number; projectExpense: number; totalInvoiced: number; totalReceived: number; @@ -104,7 +106,10 @@ export interface FinancialSummaryByProjectExcel { subsidiaryName?: string | null; totalFee: number; totalBudget: number; - cumulativeExpenditure: number; + // cumulativeExpenditure: number; + totalExpenditure: number; + manhoursExpenditure: number; + projectExpense: number; totalInvoiced: number; totalReceived: number; }