|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- <?php
-
- /**
- Copyright Guillaume Bourgeois (2018)
-
- contact@souke.fr
-
- Ce logiciel est un programme informatique servant à aider les producteurs
- à distribuer leur production en circuits courts.
-
- Ce logiciel est régi par la licence CeCILL soumise au droit français et
- respectant les principes de diffusion des logiciels libres. Vous pouvez
- utiliser, modifier et/ou redistribuer ce programme sous les conditions
- de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
- sur le site "http://www.cecill.info".
-
- En contrepartie de l'accessibilité au code source et des droits de copie,
- de modification et de redistribution accordés par cette licence, il n'est
- offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
- seule une responsabilité restreinte pèse sur l'auteur du programme, le
- titulaire des droits patrimoniaux et les concédants successifs.
-
- A cet égard l'attention de l'utilisateur est attirée sur les risques
- associés au chargement, à l'utilisation, à la modification et/ou au
- développement et à la reproduction du logiciel par l'utilisateur étant
- donné sa spécificité de logiciel libre, qui peut le rendre complexe à
- manipuler et qui le réserve donc à des développeurs et des professionnels
- avertis possédant des connaissances informatiques approfondies. Les
- utilisateurs sont donc invités à charger et tester l'adéquation du
- logiciel à leurs besoins dans des conditions permettant d'assurer la
- sécurité de leurs systèmes et ou de leurs données et, plus généralement,
- à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
-
- Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
- pris connaissance de la licence CeCILL, et que vous en avez accepté les
- termes.
- */
-
- use common\helpers\Price;
- use domain\Config\Unit\UnitDefinition;
- use domain\Config\Unit\UnitModule;
- use domain\Order\Order\OrderModule;
- use domain\Product\Product\Product;
- use domain\Product\Product\ProductModule;
- use domain\User\UserProducer\UserProducer;
-
- $unitModule = UnitModule::getInstance();
- $productModule = ProductModule::getInstance();
- $orderModule = OrderModule::getInstance();
-
- $dayWeek = date('w', strtotime($date));
- $dayWeekArray = [0 => '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 .= '<h3>'.$pointSale->name.'</h3>' ;
-
- $html .= '<table class="">'
- . '<thead>'
- . '<tr>'
- . '<th>Nom / prénom</th>'
- . '<th>Téléphone</th>'
- . '<th>Mail</th>'
- . '<th>Produits</th>'
- . ($isBig ? '<th>Produits</th>' : '')
- . '<th>Commentaire</th>'
- . '<th>Paiement</th>'
- . '<th>Moyen de paiement</th>'
- . '<th>Montant</th>'
- . '</tr>'
- . '<tbody>';
-
- foreach ($pointSale->orders as $order) {
- $html .= '<tr>' ;
- $strUser = '';
-
- // username
- $strUser = $orderModule->getOrderUsername($order) ;
-
- if(strlen($order->comment_point_sale))
- {
- $strUser .= '<br /><em>'.$order->comment_point_sale.'</em>' ;
- }
-
- $html .= '<td>'.$strUser.'</td>';
-
- // téléphone
- $html .= '<td>' ;
- if (isset($order->user) && strlen($order->user->phone)) {
- $html .= $order->user->phone ;
- }
- $html .= '</td>' ;
-
- // mail
- $html .= '<td>' ;
- if (isset($order->user) && strlen($order->user->email)) {
- $html .= $order->user->email ;
- }
- $html .= '</td>' ;
-
- // produits
- $strProducts = '';
- foreach ($productsArray as $product) {
- $add = false;
- foreach ($order->productOrder as $productOrder) {
- if($product->id == $productOrder->id_product) {
- $unit = ( $productModule->getSolver()->strUnit($productOrder->product, UnitDefinition::WORDING_SHORT, true) == 'p.') ? '' : ' '. $productModule->getSolver()->strUnit($productOrder->product, UnitDefinition::WORDING_SHORT, true) ;
- $strProducts .= $product->name . ' (' .$productOrder->quantity .$unit.')<br />';
- $add = true;
- }
- }
- }
-
- $html .= '<td>'.substr($strProducts, 0, strlen($strProducts) - 6).'</td>';
- if($isBig) {
- $html .= '<td></td>' ;
- }
-
- // commentaire
- $html .= '<td>'.$order->comment.'</td>';
-
- // paiement
- $html .= '<td>' ;
- if(isset($order->mean_payment) && strlen($order->mean_payment) > 0)
- {
- $html .= 'Payé' ;
- }
- $html .= '</td>' ;
-
- // moyen de paiement
- $html .= '<td>' ;
- $paymentLabelPaid = $orderModule->getRepository()->getPaymentLabelPaid($order);
- if($paymentLabelPaid) {
- $html .= $paymentLabelPaid;
- }
- $html .= '</td>' ;
-
- if($pointSale->payment_method_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 .= '<td>'.$credit.'</td>' ;
- }
-
- $html .= '<td><strong>'.number_format($order->amount_with_tax, 2) . ' € ';
-
- $html .= '</strong></td>' ;
-
- $html .= '</tr>' ;
-
- }
-
- $html .= '<tr><td><strong>Total</strong></td><td></td><td></td>' ;
-
- $strProducts = '';
- $cpt = 0 ;
- foreach ($productsArray as $product) {
- foreach( Product::$unitsArray as $unit => $dataUnit) {
- $quantity = $orderModule->getProductQuantity($product, $pointSale->orders, false, $unit);
- if ($quantity) {
- $theUnit = ( $unitModule->getSolver()->strUnit($unit, UnitDefinition::WORDING_SHORT, true) == 'p.') ? '' : ' '. $unitModule->getSolver()->strUnit($unit, UnitDefinition::WORDING_SHORT, true) ;
- $strProducts .= $product->name . ' (' .$quantity .$theUnit.')<br />';
- }
- }
-
- if($isBig && $cpt == $limit) {
- $strProducts .= '</td><td>' ;
- }
-
- $cpt ++ ;
- }
-
- $strProducts = substr($strProducts, 0, strlen($strProducts) - 6) ;
-
- $html .= '<td>'.$strProducts.'</td><td></td><td></td><td></td>' ;
- if($pointSale->payment_method_credit) {
- $html .= '<td></td>' ;
- }
- $html .= '<td><strong>'.Price::format($pointSale->revenues_with_tax) . '</strong></td>';
-
- $html .= '</tbody></table><pagebreak>' ;
- }
- }
-
- // par point de vente
-
- $html .= '<h3>Points de vente</h3>' ;
- $html .= '<table class="">'
- . '<thead>'
- . '<tr>'
- . '<th>Point de vente</th>'
- . '<th>Produits</th>'
- . ( $isBig ? '<th>Produits</th>' : '')
- . '<th>Montant</th>'
- . '</tr>'
- . '<tbody>';
-
- $revenues = 0 ;
- foreach ($pointsSaleArray as $pointSale)
- {
- if (count($pointSale->orders))
- {
- $html .= '<tr><td>'.$pointSale->name.'</td><td>' ;
-
- $cpt = 0 ;
- foreach ($productsArray as $product) {
- foreach( Product::$unitsArray as $unit => $dataUnit) {
- $quantity = $orderModule->getProductQuantity($product, $pointSale->orders, false, $unit);
- if ($quantity) {
- $theUnit = ( $unitModule->getSolver()->strUnit($unit, 'wording_short', true) == 'p.') ? '' : ' '. $unitModule->getSolver()->strUnit($unit, 'wording_short', true) ;
- $html .= $product->name . ' (' .$quantity .$theUnit.')<br />';
- }
- }
-
- if($isBig && $cpt == $limit) {
- $html .= '</td><td>' ;
- }
-
- $cpt ++ ;
- }
-
- $html = substr($html, 0, strlen($html) - 6) ;
-
- $html .= '</td><td>'.Price::format($pointSale->revenues_with_tax, 2).'</td></tr>' ;
- $revenues += $pointSale->revenues_with_tax ;
- }
- }
-
- // total
- $html .= '<tr><td><strong>Total</strong></td><td>' ;
-
- $cpt = 0 ;
- foreach ($productsArray as $product) {
- foreach( Product::$unitsArray as $unit => $dataUnit) {
- $quantity = $orderModule->getProductQuantity($product, $ordersArray, false, $unit);
- if ($quantity) {
- $theUnit = ( $unitModule->getSolver()->strUnit($unit, 'wording_short', true) == 'p.') ? '' : ' '. $unitModule->getSolver()->strUnit($unit, 'wording_short', true) ;
- $html .= $product->name . ' (' .$quantity .$theUnit.')<br />';
- }
- }
- if($isBig && $cpt == $limit) {
- $html .= '</td><td>' ;
- }
-
- $cpt ++ ;
- }
-
- $html = substr($html, 0, strlen($html) - 6) ;
-
- $html .= '</td><td><strong>'.number_format($revenues, 2).' €</strong></td></tr>' ;
-
- $html .= '</tbody></table>' ;
-
- echo $html ;
-
- ?>
|