'sunday', 1 => 'monday', 2 => 'tuesday', 3 => 'wednesday', 4 => 'thursday', 5 => 'friday', 6 => 'saturday']; $fieldInfosPointSale = 'infos_' . $dayWeekArray[$dayWeek]; $html = '' ; $count = count($productsArray) ; $limit = 100 ; $isBig = $count > $limit ; // par point de vente foreach ($pointsSaleArray as $pointSale) { if (count($pointSale->orders)) { $html .= '
Client | ' . 'Produits | ' . ($isBig ? 'Produits | ' : '') . 'Commentaire | ' . $colCredit . 'Montant | ' . '|
---|---|---|---|---|---|
'.$strUser.' | '; // produits $strProducts = ''; foreach ($productsArray as $product) { $add = false; foreach ($order->productOrder as $productOrder) { if($product->id == $productOrder->id_product) { $unit = ( $productManager->strUnit($productOrder->unit, 'wording_short', true) == 'p.') ? '' : ' '. $productManager->strUnit($productOrder->unit, 'wording_short', true) ; $strProducts .= '('.$productOrder->quantity .$unit.') '.$productManager->getNameExport($product) . ''.substr($strProducts, 0, strlen($strProducts) - 6).' | '; if($isBig) { $html .= '' ; } $html .= ' | '.$orderManager->getCommentReport($order).' | '; if($pointSale->credit) { $credit = '' ; if(isset($order->user) && $order->user->id) { $userProducer = UserProducer::searchOne([ 'id_user' => $order->user->id ]); if($userProducer) { $credit = number_format($userProducer->credit,2).' €' ; } } $html .= ''.$credit.' | ' ; } $html .= ''.number_format($order->amount_with_tax, 2) . ' € '; if($orderManager->getPaymentStatus($order) == Order::PAYMENT_PAID) { $html .= '(payé)' ; } elseif($orderManager->getPaymentStatus($order) == Order::PAYMENT_UNPAID && $orderManager->getOrderAmount($order, Order::AMOUNT_PAID)) { $html .= '(reste '.$orderManager->getOrderAmount($order, Order::AMOUNT_REMAINING, true).' à payer)' ; } elseif($orderManager->getPaymentStatus($order) == Order::PAYMENT_SURPLUS) { $html .= '(surplus : '.$orderManager->getOrderAmount($order, Order::PAYMENT_SURPLUS, true).' à rembourser)' ; } $html .= ' | ' ; $html .= '
Total | ' ; $strProducts = ''; $cpt = 0 ; foreach ($productsArray as $product) { foreach( Product::$unitsArray as $unit => $dataUnit) { $quantity = $orderManager->getProductQuantity($product, $pointSale->orders, false, $unit); if ($quantity) { $theUnit = ( $productManager->strUnit($unit, 'wording_short', true) == 'p.') ? '' : ' '. $productManager->strUnit($unit, 'wording_short', true) ; $strProducts .= '(' .$quantity .$theUnit.') '.$productManager->getNameExport($product) . '' ; } $cpt ++ ; } $html .= ' | '.$strProducts.' | ' ; if($pointSale->credit) { $html .= ' | ' ; } $html .= ' | '.Price::format($pointSale->revenues_with_tax) . ' | '; $html .= '
Point de vente | ' . 'Produits | ' . ( $isBig ? 'Produits | ' : '') . 'Montant | ' . '
---|---|---|---|
'.$pointSale->name.' | ' ;
$cpt = 0 ;
foreach ($productsArray as $product) {
foreach( Product::$unitsArray as $unit => $dataUnit) {
$quantity = $orderManager->getProductQuantity($product, $pointSale->orders, false, $unit);
if ($quantity) {
$theUnit = ( $productManager->strUnit($unit, 'wording_short', true) == 'p.') ? '' : ' '. $productManager->strUnit($unit, 'wording_short', true) ;
$html .= '(' .$quantity .$theUnit.') '.$productManager->getNameExport($product) . ' '; } } if($isBig && $cpt == $limit) { $html .= ' | ' ; } $cpt ++ ; } //$html = substr($html, 0, strlen($html) - 6) ; $html .= ' | '.Price::format($pointSale->revenues_with_tax, 2).' |
Total | ' ;
$cpt = 0 ;
foreach ($productsArray as $product) {
foreach( Product::$unitsArray as $unit => $dataUnit) {
$quantity = $orderManager->getProductQuantity($product, $ordersArray, false, $unit);
if ($quantity) {
$theUnit = ( $productManager->strUnit($unit, 'wording_short', true) == 'p.') ? '' : ' '. $productManager->strUnit($unit, 'wording_short', true) ;
$html .= '(' .$quantity .$theUnit.') '.$product->name . ' '; } } if($isBig && $cpt == $limit) { $html .= ' | ' ; } $cpt ++ ; } $html .= ' | '.number_format($revenues, 2).' € |