Skip to content

Commit

Permalink
Fix for P&L converted amount
Browse files Browse the repository at this point in the history
  • Loading branch information
hillelcoren committed Jun 20, 2024
1 parent 1ca6bf0 commit dd7ec12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ui/reports/profit_loss_report.dart
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ ReportResult profitAndLossReport(
.lookup(expense.entityState);
break;
case ProfitAndLossReportFields.converted_amount:
value = expense.convertedAmount;
value = -expense.convertedAmount;
break;
}

Expand Down

0 comments on commit dd7ec12

Please sign in to comment.