'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 .= '

'.$pointSale->name.'

' ; $colCredit = ($pointSale->credit) ? 'Rappel crédit' : '' ; $html .= '' . '' . '' . '' . '' . ($isBig ? '' : '') . '' . $colCredit . '' . '' . ''; foreach ($pointSale->orders as $order) { $html .= '' ; $strUser = ''; // username $strUser = $order->getStrUser() ; if(strlen($order->comment_point_sale)) { $strUser .= '
'.$order->comment_point_sale.'' ; } // téléphone if (isset($order->user) && strlen($order->user->phone)) { $strUser .= '
' . $order->user->phone . ''; } $html .= ''; // produits $strProducts = ''; foreach ($productsArray as $product) { $add = false; 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->name . ' (' .$productOrder->quantity .$unit.')
'; $add = true; } } } $html .= ''; if($isBig) { $html .= '' ; } $html .= ''; if($pointSale->credit) { $credit = '' ; if(isset($order->user) && isset($order->user->userProducer)) { $credit = number_format($order->user->userProducer[0]->credit,2).' €' ; } $html .= '' ; } $html .= '' ; $html .= '' ; } $html .= '' ; $strProducts = ''; $cpt = 0 ; foreach ($productsArray as $product) { foreach(Product::$unitsArray as $unit => $dataUnit) { $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->name . ' (' .$quantity .$theUnit.')
'; } } if($isBig && $cpt == $limit) { $strProducts .= '' ; if($pointSale->credit) { $html .= '' ; } $html .= ''; $html .= '
ClientProduitsProduitsCommentaireMontant
'.$strUser.''.substr($strProducts, 0, strlen($strProducts) - 6).''.$order->comment.''.$credit.''.number_format($order->amount_with_tax, 2) . ' € '; if($order->getPaymentStatus() == Order::PAYMENT_PAID) { $html .= '(payé)' ; } elseif($order->getPaymentStatus() == Order::PAYMENT_UNPAID && $order->getAmount(Order::AMOUNT_PAID)) { $html .= '(reste '.$order->getAmount(Order::AMOUNT_REMAINING, true).' à payer)' ; } elseif($order->getPaymentStatus() == Order::PAYMENT_SURPLUS) { $html .= '(surplus : '.$order->getAmount(Order::PAYMENT_SURPLUS, true).' à rembourser)' ; } $html .= '
Total' ; } $cpt ++ ; } $strProducts = substr($strProducts, 0, strlen($strProducts) - 6) ; $html .= ''.$strProducts.''.Price::format($pointSale->revenues_with_tax) . '
' ; } } // par point de vente $html .= '

Points de vente

' ; $html .= '' . '' . '' . '' . '' . ( $isBig ? '' : '') . '' . '' . ''; $revenues = 0 ; foreach ($pointsSaleArray as $pointSale) { if (count($pointSale->orders)) { $html .= '' ; $revenues += $pointSale->revenues_with_tax ; } } // total $html .= '' ; $html .= '
Point de venteProduitsProduitsMontant
'.$pointSale->name.'' ; $cpt = 0 ; foreach ($productsArray as $product) { foreach(Product::$unitsArray as $unit => $dataUnit) { $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->name . ' (' .$quantity .$theUnit.')
'; } } 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 = 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.')
'; } } if($isBig && $cpt == $limit) { $html .= '
' ; } $cpt ++ ; } $html = substr($html, 0, strlen($html) - 6) ; $html .= ''.number_format($revenues, 2).' €
' ; echo $html ; ?>