Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

262 lines
10KB

  1. <?php
  2. /**
  3. * Copyright Souke (2018)
  4. *
  5. * contact@souke.fr
  6. *
  7. * Ce logiciel est un programme informatique servant à aider les producteurs
  8. * à distribuer leur production en circuits courts.
  9. *
  10. * Ce logiciel est régi par la licence CeCILL soumise au droit français et
  11. * respectant les principes de diffusion des logiciels libres. Vous pouvez
  12. * utiliser, modifier et/ou redistribuer ce programme sous les conditions
  13. * de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  14. * sur le site "http://www.cecill.info".
  15. *
  16. * En contrepartie de l'accessibilité au code source et des droits de copie,
  17. * de modification et de redistribution accordés par cette licence, il n'est
  18. * offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  19. * seule une responsabilité restreinte pèse sur l'auteur du programme, le
  20. * titulaire des droits patrimoniaux et les concédants successifs.
  21. *
  22. * A cet égard l'attention de l'utilisateur est attirée sur les risques
  23. * associés au chargement, à l'utilisation, à la modification et/ou au
  24. * développement et à la reproduction du logiciel par l'utilisateur étant
  25. * donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  26. * manipuler et qui le réserve donc à des développeurs et des professionnels
  27. * avertis possédant des connaissances informatiques approfondies. Les
  28. * utilisateurs sont donc invités à charger et tester l'adéquation du
  29. * logiciel à leurs besoins dans des conditions permettant d'assurer la
  30. * sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  31. * à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  32. *
  33. * Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  34. * pris connaissance de la licence CeCILL, et que vous en avez accepté les
  35. * termes.
  36. */
  37. namespace backend\controllers;
  38. use common\helpers\CSV;
  39. use common\helpers\GlobalParam;
  40. use common\helpers\MeanPayment;
  41. use common\helpers\Price;
  42. use Yii;
  43. use yii\filters\AccessControl;
  44. class ReportController extends BackendController
  45. {
  46. var $enableCsrfValidation = false;
  47. public function behaviors()
  48. {
  49. return [
  50. 'access' => [
  51. 'class' => AccessControl::class,
  52. 'rules' => [
  53. [
  54. 'allow' => true,
  55. 'roles' => ['@'],
  56. 'matchCallback' => function ($rule, $action) {
  57. return $this->getUserModule()
  58. ->getAuthorizationChecker()
  59. ->isGrantedAsProducer($this->getUserCurrent());
  60. }
  61. ]
  62. ],
  63. ],
  64. ];
  65. }
  66. public function actionIndex()
  67. {
  68. $this->checkProductsPointsSale();
  69. return $this->render('index');
  70. }
  71. public function actionAjaxInit()
  72. {
  73. \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
  74. $userModule = $this->getUserModule();
  75. $pointSaleModule = $this->getPointSaleModule();
  76. $distributionModule = $this-> getDistributionModule();
  77. $usersArray = $userModule->findUsers();
  78. $pointsSaleArray = $pointSaleModule->findPointSales();
  79. $firstDistribution = $distributionModule->findOneFirstDistribution();
  80. $lastDistribution = $distributionModule->findOneLastDistribution();
  81. $firstYear = date('Y', strtotime($firstDistribution->date));
  82. $lastYear = date('Y', strtotime($lastDistribution->date));
  83. $distributionYearsArray = [];
  84. for ($year = $firstYear; $year <= $lastYear; $year++) {
  85. $distributionYearsArray[] = $year;
  86. }
  87. $distributionsByMonthArray = [];
  88. $distributionsArray = $distributionModule->findDistributionsWithOrders();
  89. foreach ($distributionsArray as $distribution) {
  90. $month = date('Y-m', strtotime($distribution->date));
  91. if (!isset($distributionsByMonthArray[$month])) {
  92. $distributionsByMonthArray[$month] = [
  93. 'display' => 0,
  94. 'year' => date('Y', strtotime($distribution->date)),
  95. 'month' => strftime('%B', strtotime($distribution->date)),
  96. 'distributions' => []
  97. ];
  98. }
  99. $distribution->date = strftime('%A %d %B %Y', strtotime($distribution->date));
  100. $distributionsByMonthArray[$month]['distributions'][] = $distribution;
  101. }
  102. return [
  103. 'usersArray' => $usersArray,
  104. 'pointsSaleArray' => $pointsSaleArray,
  105. 'distributionYearsArray' => $distributionYearsArray,
  106. 'distributionsByMonthArray' => $distributionsByMonthArray
  107. ];
  108. }
  109. public function actionAjaxReport()
  110. {
  111. \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
  112. $posts = Yii::$app->request->post();
  113. $resArray = [];
  114. $conditionUsers = $this->_generateConditionSqlReport($posts, 'users', 'id_user');
  115. $conditionPointsSale = $this->_generateConditionSqlReport($posts, 'pointsSale', 'id_point_sale');
  116. $conditionDistributions = $this->_generateConditionSqlReport($posts, 'distributions', 'id_distribution');
  117. $res = Yii::$app->db->createCommand("SELECT product.name, SUM(product_order.quantity) AS quantity, SUM(product_order.price * product_order.quantity) AS total
  118. FROM `order`, product_order, product
  119. WHERE `order`.id = product_order.id_order
  120. AND product.id_producer = " . ((int)GlobalParam::getCurrentProducerId()) . "
  121. AND product_order.id_product = product.id
  122. AND `order`.date_delete IS NULL
  123. " . $conditionUsers . "
  124. " . $conditionPointsSale . "
  125. " . $conditionDistributions . "
  126. GROUP BY product.id
  127. ORDER BY product.order ASC
  128. ")
  129. ->queryAll();
  130. $totalGlobal = 0;
  131. foreach ($res as $line) {
  132. $total = Price::format(round($line['total'], 2));
  133. if ($line['quantity'] > 0) {
  134. $resArray[] = [
  135. 'name' => $line['name'],
  136. 'quantity' => $line['quantity'],
  137. 'total' => $total,
  138. ];
  139. $totalGlobal += $line['total'];
  140. }
  141. }
  142. $resArray[] = [
  143. 'name' => '',
  144. 'quantity' => '',
  145. 'total' => '<strong>' . Price::format(round($totalGlobal, 2)) . ' HT</strong>',
  146. ];
  147. return $resArray;
  148. }
  149. public function _generateConditionSqlReport($posts, $name, $fieldOrder)
  150. {
  151. $condition = '';
  152. if (isset($posts[$name]) && strlen($posts[$name])) {
  153. $idsArray = explode(',', $posts[$name]);
  154. for ($i = 0; $i < count($idsArray); $i++) {
  155. $idsArray[$i] = (int)$idsArray[$i];
  156. }
  157. $condition = 'AND `order`.' . $fieldOrder . ' IN (' . implode(',', $idsArray) . ') ';
  158. }
  159. return $condition;
  160. }
  161. public function actionPayments(string $dateStart, string $dateEnd)
  162. {
  163. $orderModule = $this->getOrderModule();
  164. $ordersArray = $orderModule->getRepository()
  165. ->findOrdersByPeriod(
  166. new \DateTime($dateStart),
  167. new \DateTime($dateEnd)
  168. );
  169. $datas = [
  170. [
  171. 'Date',
  172. 'Client',
  173. 'Montant',
  174. 'Facture',
  175. 'Crédit',
  176. 'Espèce',
  177. 'Chèque',
  178. 'Virement',
  179. 'Carte bancaire',
  180. 'Total'
  181. ]
  182. ];
  183. $sumAmountTotalSpentByCredit = 0;
  184. $sumAmountTotalSpentByMoney = 0;
  185. $sumAmountTotalSpentByCheque = 0;
  186. $sumAmountTotalSpentByTransfer = 0;
  187. $sumAmountTotalSpentByCreditCard = 0;
  188. foreach($ordersArray as $order) {
  189. $orderModule->getBuilder()->initOrder($order);
  190. $hasInvoice = false;
  191. $referenceInvoice = 'Non';
  192. if($order->invoice) {
  193. $hasInvoice = true;
  194. $referenceInvoice = $order->invoice->reference."";
  195. }
  196. $amountTotalSpentByCredit = $orderModule->getSolver()->getAmountTotalSpentByMeanPayment($order, MeanPayment::CREDIT);
  197. $sumAmountTotalSpentByCredit += $amountTotalSpentByCredit;
  198. $amountTotalSpentByMoney = $orderModule->getSolver()->getAmountTotalSpentByMeanPayment($order, MeanPayment::MONEY);
  199. $sumAmountTotalSpentByMoney += $amountTotalSpentByMoney;
  200. $amountTotalSpentByCheque = $orderModule->getSolver()->getAmountTotalSpentByMeanPayment($order, MeanPayment::CHEQUE);
  201. $sumAmountTotalSpentByCheque += $amountTotalSpentByCheque;
  202. $amountTotalSpentByTransfer = $orderModule->getSolver()->getAmountTotalSpentByMeanPayment($order, MeanPayment::TRANSFER);
  203. $sumAmountTotalSpentByTransfer += $amountTotalSpentByTransfer;
  204. $amountTotalSpentByCreditCard = $orderModule->getSolver()->getAmountTotalSpentByMeanPayment($order, MeanPayment::CREDIT_CARD);
  205. $sumAmountTotalSpentByCreditCard += $amountTotalSpentByCreditCard;
  206. $datas[] = [
  207. $order->distribution->date,
  208. $orderModule->getSolver()->getOrderUsername($order),
  209. CSV::formatNumber($orderModule->getSolver()->getOrderAmountWithTax($order)),
  210. $referenceInvoice,
  211. $hasInvoice ? '' : CSV::formatNumber($amountTotalSpentByCredit),
  212. $hasInvoice ? '' : CSV::formatNumber($amountTotalSpentByMoney),
  213. $hasInvoice ? '' : CSV::formatNumber($amountTotalSpentByCheque),
  214. $hasInvoice ? '' : CSV::formatNumber($amountTotalSpentByTransfer),
  215. $hasInvoice ? '' : CSV::formatNumber($amountTotalSpentByCreditCard)
  216. ];
  217. }
  218. $datas[] = [
  219. '',
  220. '',
  221. '',
  222. 'Totaux paiements',
  223. CSV::formatNumber($sumAmountTotalSpentByCredit),
  224. CSV::formatNumber($sumAmountTotalSpentByMoney),
  225. CSV::formatNumber($sumAmountTotalSpentByCheque),
  226. CSV::formatNumber($sumAmountTotalSpentByTransfer),
  227. CSV::formatNumber($sumAmountTotalSpentByCreditCard),
  228. CSV::formatNumber($sumAmountTotalSpentByCredit + $sumAmountTotalSpentByMoney + $sumAmountTotalSpentByCheque +
  229. $sumAmountTotalSpentByTransfer + $sumAmountTotalSpentByCreditCard)
  230. ];
  231. CSV::send('commandes.csv', $datas);
  232. }
  233. }