Ver código fonte

[backend] Terre de pains : adaptation export pour Google Drive

refactoring
Guillaume 4 anos atrás
pai
commit
05fd753e96
1 arquivos alterados com 3 adições e 3 exclusões
  1. +3
    -3
      backend/controllers/DistributionController.php

+ 3
- 3
backend/controllers/DistributionController.php Ver arquivo

@@ -687,7 +687,8 @@ class DistributionController extends BackendController
if (count($pointSale->orders)) {
// listing commandes
$datas[] = ['> ' . $pointSale->name];
foreach ($pointSale->orders as $order) {

/*foreach ($pointSale->orders as $order) {
$orderLine = [$order->getStrUser()];

foreach ($productsIndexArray as $idProduct => $indexProduct) {
@@ -704,7 +705,7 @@ class DistributionController extends BackendController
}
}
$datas[] = $this->_lineOrderReportCSV($orderLine, $cpt - 1, true);
}
}*/

// total point de vente
$totalsPointSaleArray = $this->_totalReportCSV(
@@ -714,7 +715,6 @@ class DistributionController extends BackendController
$productsIndexArray
);
$datas[] = $this->_lineOrderReportCSV($totalsPointSaleArray, $cpt - 1, true);
$datas[] = [];
}
}


Carregando…
Cancelar
Salvar