From 9aeacb0d1566ca3af5a3bf24d021af9247e34634 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 5 Feb 2017 23:51:14 +0200 Subject: [PATCH] Fix for profit and loss report --- app/Ninja/Reports/ProfitAndLossReport.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Ninja/Reports/ProfitAndLossReport.php b/app/Ninja/Reports/ProfitAndLossReport.php index ec76a482eb55..c936feaf9f0f 100644 --- a/app/Ninja/Reports/ProfitAndLossReport.php +++ b/app/Ninja/Reports/ProfitAndLossReport.php @@ -54,9 +54,9 @@ class ProfitAndLossReport extends AbstractReport $expense->present()->category, ]; - $this->addToTotals($client->currency_id, 'revenue', 0, $expense->present()->month); - $this->addToTotals($client->currency_id, 'expenses', $expense->amount, $expense->present()->month); - $this->addToTotals($client->currency_id, 'profit', $expense->amount * -1, $expense->present()->month); + $this->addToTotals($expense->expense_currency_id, 'revenue', 0, $expense->present()->month); + $this->addToTotals($expense->expense_currency_id, 'expenses', $expense->amount, $expense->present()->month); + $this->addToTotals($expense->expense_currency_id, 'profit', $expense->amount * -1, $expense->present()->month); } //$this->addToTotals($client->currency_id, 'paid', $payment ? $payment->getCompletedAmount() : 0);