|
|
@@ -591,10 +591,10 @@ class DistributionController extends BackendController |
|
|
|
$optionCsvExportByPiece = Producer::getConfig('option_csv_export_by_piece') ; |
|
|
|
|
|
|
|
// produits en colonne |
|
|
|
$productsNameArray = ['']; |
|
|
|
$productsNameArray = ['', 'Commentaire']; |
|
|
|
$productsIndexArray = []; |
|
|
|
$productsHasQuantity = []; |
|
|
|
$cpt = 1; |
|
|
|
$cpt = 2; |
|
|
|
foreach ($productsArray as $product) { |
|
|
|
$productsHasQuantity[$product->id] = 0; |
|
|
|
foreach (Product::$unitsArray as $unit => $dataUnit) { |
|
|
@@ -627,7 +627,7 @@ class DistributionController extends BackendController |
|
|
|
// listing commandes |
|
|
|
$datas[] = ['> ' . $pointSale->name]; |
|
|
|
foreach ($pointSale->orders as $order) { |
|
|
|
$orderLine = [$order->getStrUser()]; |
|
|
|
$orderLine = [$order->getStrUser(), $order->getCommentReport()]; |
|
|
|
|
|
|
|
if($optionCsvExportByPiece) { |
|
|
|
foreach ($order->productOrder as $productOrder) { |