Skip to content

Commit

Permalink
Small fix for aggregateOrders
Browse files Browse the repository at this point in the history
  • Loading branch information
07joshua03 committed Jan 26, 2024
1 parent 1117fe3 commit 837efc3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public static Map<Integer, AggregatedProduct> aggregateOrders(List<TreasurerData
product.eventTitle = data.getEventTitle();
product.organizedBy = LdapGroup.intToString(data.getOrganizedBy());
product.productTitle = data.getProductTitle();
product.totalIncome = data.getPrice();
product.totalIncome = data.getPrice() * data.getAmount();
product.totalAmount = data.getAmount();
product.vatRate = data.getVatRate();
product.price = data.getPrice();
Expand Down

0 comments on commit 837efc3

Please sign in to comment.