Skip to content

Commit

Permalink
piccolo fix in formattazione tabella complessiva prodotti. ref #240
Browse files Browse the repository at this point in the history
  • Loading branch information
madbob committed Dec 4, 2023
1 parent 2049984 commit 6c29d15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/app/Printers/Order.php
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ private function formatTableRows($order, $shipping_place, $status, $fields, &$al
foreach($bookings as $booking) {
$row = UserFormatter::format($booking->user, $fields->user_columns);
$subrow = $this->formatBookingInTable($order, $booking, $status, $all_products);
$row = array_merge($row, $subrow);
$row += $subrow;

$price = $booking->getValue($get_total, true);
$total_price += $price;
Expand Down

0 comments on commit 6c29d15

Please sign in to comment.