diff --git a/app/Ninja/Reports/ProfitAndLossReport.php b/app/Ninja/Reports/ProfitAndLossReport.php index d1108bf90a51..d4bddd69fb95 100644 --- a/app/Ninja/Reports/ProfitAndLossReport.php +++ b/app/Ninja/Reports/ProfitAndLossReport.php @@ -55,9 +55,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); }