|
|
@@ -99,7 +99,7 @@ foreach ($pointsSaleArray as $pointSale) { |
|
|
|
foreach ($order->productOrder as $productOrder) { |
|
|
|
if($product->id == $productOrder->id_product) { |
|
|
|
$unit = (Product::strUnit($productOrder->unit, 'wording_short', true) == 'p.') ? '' : ' '.Product::strUnit($productOrder->unit, 'wording_short', true) ; |
|
|
|
$strProducts .= $product->getNameExport() . ' (' .$productOrder->quantity .$unit.')<br />'; |
|
|
|
$strProducts .= '('.$productOrder->quantity .$unit.') '.$product->getNameExport() . '<br />'; |
|
|
|
$add = true; |
|
|
|
} |
|
|
|
} |
|
|
@@ -157,7 +157,7 @@ foreach ($pointsSaleArray as $pointSale) { |
|
|
|
$quantity = Order::getProductQuantity($product->id, $pointSale->orders, false, $unit); |
|
|
|
if ($quantity) { |
|
|
|
$theUnit = (Product::strUnit($unit, 'wording_short', true) == 'p.') ? '' : ' '.Product::strUnit($unit, 'wording_short', true) ; |
|
|
|
$strProducts .= $product->getNameExport() . ' (' .$quantity .$theUnit.')<br />'; |
|
|
|
$strProducts .= '(' .$quantity .$theUnit.') '.$product->getNameExport() . '<br />'; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
@@ -206,7 +206,7 @@ foreach ($pointsSaleArray as $pointSale) |
|
|
|
$quantity = Order::getProductQuantity($product->id, $pointSale->orders, false, $unit); |
|
|
|
if ($quantity) { |
|
|
|
$theUnit = (Product::strUnit($unit, 'wording_short', true) == 'p.') ? '' : ' '.Product::strUnit($unit, 'wording_short', true) ; |
|
|
|
$html .= $product->getNameExport() . ' (' .$quantity .$theUnit.')<br />'; |
|
|
|
$html .= '(' .$quantity .$theUnit.') '.$product->getNameExport() . '<br />'; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
@@ -233,7 +233,7 @@ foreach ($productsArray as $product) { |
|
|
|
$quantity = Order::getProductQuantity($product->id, $ordersArray, false, $unit); |
|
|
|
if ($quantity) { |
|
|
|
$theUnit = (Product::strUnit($unit, 'wording_short', true) == 'p.') ? '' : ' '.Product::strUnit($unit, 'wording_short', true) ; |
|
|
|
$html .= $product->name . ' (' .$quantity .$theUnit.')<br />'; |
|
|
|
$html .= '(' .$quantity .$theUnit.') '.$product->name . '<br />'; |
|
|
|
} |
|
|
|
} |
|
|
|
if($isBig && $cpt == $limit) { |