diff --git a/src/transaction/transaction.service.ts b/src/transaction/transaction.service.ts index 9bde446..d2fac58 100644 --- a/src/transaction/transaction.service.ts +++ b/src/transaction/transaction.service.ts @@ -2114,14 +2114,12 @@ export class TransactionService { ) .getRawOne(); - console.log("totaprofitni", data.total_profit); - console.log("totalexpense", total_expense); return { total_amount: parseInt(data.total_amount), total_transaction: parseInt(data.total_transaction), total_modal: parseInt(data.total_modal), total_profit: parseInt(data.total_profit), - total_commission: parseInt(data.total_profit) - parseInt(total_expense), + total_commission: parseInt(total_expense) - parseInt(data.total_profit), }; }