You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1346 lines
50KB

  1. <?php
  2. /**
  3. Copyright La boîte à pain (2018)
  4. contact@laboiteapain.net
  5. Ce logiciel est un programme informatique servant à aider les producteurs
  6. à distribuer leur production en circuits courts.
  7. Ce logiciel est régi par la licence CeCILL soumise au droit français et
  8. respectant les principes de diffusion des logiciels libres. Vous pouvez
  9. utiliser, modifier et/ou redistribuer ce programme sous les conditions
  10. de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  11. sur le site "http://www.cecill.info".
  12. En contrepartie de l'accessibilité au code source et des droits de copie,
  13. de modification et de redistribution accordés par cette licence, il n'est
  14. offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  15. seule une responsabilité restreinte pèse sur l'auteur du programme, le
  16. titulaire des droits patrimoniaux et les concédants successifs.
  17. A cet égard l'attention de l'utilisateur est attirée sur les risques
  18. associés au chargement, à l'utilisation, à la modification et/ou au
  19. développement et à la reproduction du logiciel par l'utilisateur étant
  20. donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  21. manipuler et qui le réserve donc à des développeurs et des professionnels
  22. avertis possédant des connaissances informatiques approfondies. Les
  23. utilisateurs sont donc invités à charger et tester l'adéquation du
  24. logiciel à leurs besoins dans des conditions permettant d'assurer la
  25. sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  26. à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  27. Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  28. pris connaissance de la licence CeCILL, et que vous en avez accepté les
  29. termes.
  30. */
  31. namespace backend\controllers;
  32. use common\models\Order ;
  33. use common\models\ProductOrder ;
  34. use common\models\Product ;
  35. use common\models\User ;
  36. use common\models\ProductDistribution ;
  37. use common\models\Product ;
  38. class OrderController extends BackendController
  39. {
  40. var $enableCsrfValidation = false;
  41. public function behaviors()
  42. {
  43. return [
  44. 'access' => [
  45. 'class' => AccessControl::className(),
  46. 'rules' => [
  47. [
  48. 'actions' => ['report-cron'],
  49. 'allow' => true,
  50. 'roles' => ['?']
  51. ],
  52. [
  53. 'allow' => true,
  54. 'roles' => ['@'],
  55. 'matchCallback' => function ($rule, $action) {
  56. return User::getStatus() == USER::STATUS_ADMIN
  57. || User::getStatus() == USER::STATUS_PRODUCER;
  58. }
  59. ]
  60. ],
  61. ],
  62. ];
  63. }
  64. /**
  65. * Génére un PDF récapitulatif des commandes d'un producteur pour une
  66. * date donnée.
  67. *
  68. * @param string $date
  69. * @param boolean $save
  70. * @param integer $id_etablissement
  71. * @return PDF|null
  72. */
  73. public function actionReport($date = '', $save = false, $idProducer = 0)
  74. {
  75. if (!Yii::$app->user->isGuest) {
  76. $idProducer = Producer::getId() ;
  77. }
  78. $arrayOrders = Order::searchAll([
  79. 'date' => $date,
  80. 'date_delete' => 'NULL'
  81. ],
  82. [
  83. 'orderby' => 'comment_point_sale ASC, user.name ASC'
  84. ]) ;
  85. $distribution = Distribution::searchOne([],[
  86. 'conditions' => 'date LIKE :date',
  87. 'params' => [':date' => $date]
  88. ]) ;
  89. if ($distribution) {
  90. $arraySelectedProducts = ProductDistribution::searchProducts($distribution->id) ;
  91. $arrayPointsSale = PointSale::searchAll() ;
  92. foreach ($arrayPointsSale as $pointSale) {
  93. $pointSale->initOrders($orders) ;
  94. }
  95. // produits
  96. $arrayProducts = Product::searchAll() ;
  97. // get your HTML raw content without any layouts or scripts
  98. $content = $this->renderPartial('report', [
  99. 'distribution' => $distribution,
  100. 'date' => $date,
  101. 'arraySelectedProducts' => $arraySelectedProducts,
  102. 'arrayPointsSale' => $arrayPointsSale,
  103. 'arrayProducts' => $arrayProducts,
  104. 'arrayOrders' => $arrayOrders
  105. ]);
  106. $dateStr = date('d/m/Y', strtotime($date));
  107. if ($save) {
  108. $destination = Pdf::DEST_FILE;
  109. } else {
  110. $destination = Pdf::DEST_BROWSER;
  111. }
  112. $pdf = new Pdf([
  113. // set to use core fonts only
  114. 'mode' => Pdf::MODE_UTF8,
  115. // A4 paper format
  116. 'format' => Pdf::FORMAT_A4,
  117. // portrait orientation
  118. 'orientation' => Pdf::ORIENT_PORTRAIT,
  119. // stream to browser inline
  120. 'destination' => $destination,
  121. 'filename' => Yii::getAlias('@app/web/pdf/Commandes-' . $date . '-' . $idProducert . '.pdf'),
  122. // your html content input
  123. 'content' => $content,
  124. // format content from your own css file if needed or use the
  125. // enhanced bootstrap css built by Krajee for mPDF formatting
  126. //'cssFile' => '@vendor/kartik-v/yii2-mpdf/assets/kv-mpdf-bootstrap.min.css',
  127. // any css to be embedded if required
  128. //'cssInline' => '.kv-heading-1{font-size:18px}',
  129. // set mPDF properties on the fly
  130. //'options' => ['title' => 'Krajee Report Title'],
  131. // call mPDF methods on the fly
  132. 'methods' => [
  133. 'SetHeader' => ['Commandes du ' . $dateStr],
  134. 'SetFooter' => ['{PAGENO}'],
  135. ]
  136. ]);
  137. // return the pdf output as per the destination setting
  138. return $pdf->render();
  139. }
  140. return null ;
  141. }
  142. /**
  143. * Supprime une commande.
  144. *
  145. * @param string $date
  146. * @param integer $id_commande
  147. */
  148. public function actionDeleteOrder($date, $idOrder)
  149. {
  150. $order = Order::searchOne(['id' =>$idOrder]) ;
  151. if ($order) {
  152. // remboursement de la commande
  153. if ($order->id_user && $order->getAmount(Order::AMOUNT_PAID) && Producer::getConfig('credit')) {
  154. $order->creditHistory(
  155. CreditHistory::TYPE_REFUND,
  156. $order->getAmount(Order::AMOUNT_PAID),
  157. $order->distribution->id_producer,
  158. $order->id_user,
  159. User::getId()
  160. );
  161. }
  162. $order->delete();
  163. ProductOrder::deleteAll(['id_order' => $idOrder]);
  164. }
  165. $this->redirect(['index', 'date' => $date]);
  166. }
  167. /**
  168. * Traite le formulaire d'ajout/modification de commande.
  169. *
  170. * @param Production $production
  171. * @param string $date
  172. * @param array $points_vente
  173. * @param array $produits
  174. * @param array $users
  175. */
  176. public function processOrderForm(
  177. $distribution, $date, $pointsSale, $products, $users)
  178. {
  179. if ($date != '') {
  180. // commandes
  181. $orders = Order::searchAll([
  182. 'production.date' => $date
  183. ]) ;
  184. foreach ($pointsSale as $point) {
  185. $point->initOrder($orders);
  186. if (isset($_POST['submit_pv']) && $_POST['submit_pv']) {
  187. // modifs
  188. foreach ($point->orders as $order) {
  189. // suppression des product_order
  190. ProductOrder::deleteAll(['id_order' => $order->id]) ;
  191. // création des commande_produit modifiés
  192. foreach ($products as $product) {
  193. $quantity = Yii::$app->getRequest()->post('product_' . $point->id . '_' . $product->id, 0);
  194. if ($quantity) {
  195. $productOrder = new ProductOrder;
  196. $productOrder->id_order = $order->id;
  197. $productOrder->id_product = $product->id;
  198. $productOrder->quantity = $quantity;
  199. $productOrder->price = $p->price;
  200. $productOrder->save();
  201. }
  202. }
  203. }
  204. $username = Yii::$app->getRequest()->post('username_point_sale_' . $point->id, 0);
  205. $date = Yii::$app->getRequest()->post('date_order_point_sale_' . $point->id, 0);
  206. $oneProduct = false;
  207. foreach ($products as $product) {
  208. $quantity = Yii::$app->getRequest()->post('product_point_sale_' . $point->id . '_' . $product->id, 0);
  209. if ($quantity) {
  210. $oneProduct = true;
  211. }
  212. }
  213. if (strlen($username) && $date && $oneProduct) {
  214. $order = new Order;
  215. $order->id_point_sale = $point->id;
  216. $order->id_production = $distribution->id;
  217. $order->id_user = 0;
  218. $order->username = $username;
  219. $arrayDate = explode('/', $date);
  220. $order->date = $arrayDate[2] . '-' . $arrayDate[1] . '-' . $arrayDate[0] . ' 00:00:00';
  221. $order->save();
  222. foreach ($products as $product) {
  223. $quantity = Yii::$app->getRequest()->post('product_point_sale_' . $point->id . '_' . $product->id, 0);
  224. if ($quantity) {
  225. $productOrder = new ProductOrder;
  226. $productOrder->id_order = $order->id;
  227. $productOrder->id_product = $product->id;
  228. $productOrder->quantity = $quantity;
  229. $productOrder->price = $p->price;
  230. $productOrder->save();
  231. }
  232. }
  233. }
  234. }
  235. }
  236. }
  237. }
  238. /**
  239. * Page principale de la gestion des commandes.
  240. *
  241. * @param string $date
  242. * @param boolean $returnData
  243. * @return string
  244. */
  245. public function actionIndex($date = '', $returnData = false)
  246. {
  247. if (!Product::count() && !PointSale::count()) {
  248. $this->redirect(['site/index', 'error_products_points_sale' => 1]);
  249. }
  250. $orders = [];
  251. // users
  252. $arrayUsers = [0 => '--'];
  253. $users = User::searchAll([],['orderby' => 'lastname, name ASC']) ;
  254. foreach ($users as $user) {
  255. $arrayUsers[$user->id] = $user->name . ' ' . $user->lastname;
  256. }
  257. // création du jour de distribution
  258. $distribution = Distribution::initDistribution($date) ;
  259. // points de vente
  260. if ($distribution) {
  261. $arrayPointsSale = PointSale::find()
  262. ->joinWith(['pointSaleDistribution' => function($q) use ($distribution) {
  263. $q->where(['id_distribution' => $distribution->id]);
  264. }])
  265. ->where([
  266. 'id_producer' => Producer::getId(),
  267. ])
  268. ->all();
  269. } else {
  270. $arrayPointsSale = PointSale::searchAll() ;
  271. }
  272. // produits
  273. $arrayProducts = Product::searchAll();
  274. // gestion des commandes
  275. $this->processOrderForm($distribution, $date, $arrayPointsSale, $arrayProducts, $users);
  276. // commandes
  277. $arrayOrders = Commande::searchAll([
  278. 'date' => $date,
  279. 'date_delete' => 'NULL'
  280. ]);
  281. $revenues = 0;
  282. $weight = 0 ;
  283. $revenuesDelivered = 0;
  284. foreach ($arrayOrders as $order) {
  285. if(is_null($order->date_delete)) {
  286. $revenues += $order->amount;
  287. if ($order->id_point_sale != 1) {
  288. $revenuesDelivered += $order->amount;
  289. }
  290. $weight += $order->weight;
  291. }
  292. }
  293. $revenues = number_format($revenues, 2);
  294. // init commandes point de vente
  295. foreach ($arrayPointsSale as $pointSale) {
  296. $pointSale->initOrders($arrayOrders);
  297. $dataSelectOrders = [];
  298. $dataOptionsOrders = [];
  299. foreach ($pointSale->orders as $order) {
  300. if ($order->user) {
  301. $dataSelectOrders[$order->id] = $order->user->name . ' ' . $c->user->lastname;
  302. } else {
  303. $dataSelectOrders[$order->id] = $order->username;
  304. }
  305. $dataOptionsOrders[$order->id] = [];
  306. $arrayOptions = [];
  307. $arrayOptions[$order->id]['amount'] = $c->montant;
  308. $arrayOptions[$order->id]['str_amount'] = number_format($c->montant, 2, ',', '') . ' €';
  309. $arrayOptions[$order->id]['amount_paid'] = $c->montant_paye;
  310. $arrayOptions[$order->id]['products'] = [];
  311. $arrayOptions[$order->id]['comment'] = Html::encode($c->commentaire);
  312. foreach ($order->productOrder as $productOrder) {
  313. $arrayOptions[$order->id]['products'][$productOrder->id_product] = $productOrder->quantity;
  314. }
  315. $dataOptionsOrders[$order->id]['data-commande'] = json_encode($arrayOptions[$order->id]);
  316. $dataOptionsOrders[$order->id]['value'] = $order->id;
  317. }
  318. $pointSale->data_select_orders = $dataSelectOrders ;
  319. $pointSale->data_options_orders = $dataOptionsOrders ;
  320. }
  321. // gestion produits selec
  322. if (isset($_POST['validate_product_selec'])) {
  323. if (isset($_POST['Product'])) {
  324. foreach ($arrayProducts as $product) {
  325. $productDistribution = ProductDistribution::searchOne([
  326. 'id_distribution' => $distribution->id,
  327. 'id_product' => $product->id
  328. ]) ;
  329. if (!$productDistribution) {
  330. $productDistribution = new ProductDistribution();
  331. $productDistribution->id_distribution = $distribution->id;
  332. $productDistribution->id_product = $product->id;
  333. $productDistribution->active = 0;
  334. if (isset($product->quantity_max)) {
  335. $productDistribution->quantity_max = $product->quantity_max;
  336. }
  337. else {
  338. $productDistribution->quantity_max = null;
  339. }
  340. $productDistribution->save();
  341. }
  342. if (isset($_POST['Product'][$product->id]['active'])) {
  343. $productDistribution->active = 1;
  344. } else {
  345. $productDistribution->active = 0;
  346. }
  347. if ((isset($_POST['Product'][$product->id]['quantity_max']) && $_POST['Product'][$product->id]['quantity_max'] != '')) {
  348. $productDistribution->quantity_max = (int) $_POST['Product'][$product->id]['quantity_max'];
  349. } else {
  350. $productDistribution->quantity_max = null;
  351. }
  352. $productDistribution->save();
  353. }
  354. }
  355. }
  356. $arrayProductsSelected = [] ;
  357. if($distribution) {
  358. // produits selec pour production
  359. $arrayProductsSelected = ProductDistribution::searchByDistribution($distribution->id) ;
  360. }
  361. // produits
  362. if ($distribution) {
  363. $arrayProducts = Product::searchByDistribution($distribution->id) ;
  364. }
  365. // poids total de la production et CA potentiel
  366. $potentialTurnover = 0;
  367. $totalWeight = 0;
  368. foreach ($arrayProductsSelected as $idSelectedProduct => $selectedProduct) {
  369. if ($selectedProduct['active']) {
  370. foreach ($arrayProducts as $product) {
  371. if ($product->id == $idSelectedProduct) {
  372. $potentialTurnover += $selectedProduct['quantity_max'] * $product->price;
  373. $totalWeight += $selectedProduct['quantity_max'] * $product->weight / 1000;
  374. }
  375. }
  376. }
  377. }
  378. // jours de distribution
  379. $arrayDistributionDays = Distribution::searchAll([
  380. 'active' => 1
  381. ]) ;
  382. // commandes auto
  383. $subscriptionForm = new SubscriptionForm;
  384. // productions point vente
  385. $pointSaleDistribution = new PointSaleDistribution;
  386. $oointsSaleDistribution = [];
  387. if ($distribution) {
  388. $oointsSaleDistribution = PointSaleDistribution::searchAll() ;
  389. }
  390. $arrayPointsSaleDistribution = [];
  391. foreach ($arrayPointsSaleDistribution as $pointSaleDistribution) {
  392. $key = $pointSaleDistribution->id_distribution . '-' . $pointSaleDistribution->id_point_sale;
  393. if ($pointSaleDistribution->delivery == 1) {
  394. $pointSaleDistribution->points_sale_distribution[] = $key;
  395. }
  396. if(isset($pointSaleDistribution->pointSale) && strlen($pointSaleDistribution->pointSale->name)) {
  397. $arrayPointsSaleDistribution[$key] = Html::encode($pointSaleDistribution->pointSale->name);
  398. }
  399. }
  400. // une production de la semaine activée ou non
  401. $oneDistributionWeekActive = false ;
  402. $week = sprintf('%02d',date('W',strtotime($date)));
  403. $start = strtotime(date('Y',strtotime($date)).'W'.$week);
  404. $date_lundi = date('Y-m-d',strtotime('Monday',$start)) ;
  405. $date_mardi = date('Y-m-d',strtotime('Tuesday',$start)) ;
  406. $date_mercredi = date('Y-m-d',strtotime('Wednesday',$start)) ;
  407. $date_jeudi = date('Y-m-d',strtotime('Thursday',$start)) ;
  408. $date_vendredi = date('Y-m-d',strtotime('Friday',$start)) ;
  409. $date_samedi = date('Y-m-d',strtotime('Saturday',$start)) ;
  410. $date_dimanche = date('Y-m-d',strtotime('Sunday',$start)) ;
  411. $production_semaine = Distribution::find()
  412. ->andWhere([
  413. 'id_producer' => Producer::getId(),
  414. 'active' => 1,
  415. ])
  416. ->andWhere(['or',
  417. ['date' => $date_lundi],
  418. ['date' => $date_mardi],
  419. ['date' => $date_mercredi],
  420. ['date' => $date_jeudi],
  421. ['date' => $date_vendredi],
  422. ['date' => $date_samedi],
  423. ['date' => $date_dimanche],
  424. ])
  425. ->one();
  426. if($production_semaine) {
  427. $oneDistributionWeekActive = true ;
  428. }
  429. $datas = [
  430. 'products' => $arrayProducts,
  431. 'pointsSale' => $arrayPointsSale,
  432. 'orders' => $arrayOrders,
  433. 'date' => $date,
  434. 'distribution' => $distribution,
  435. 'distributionDays' => $arrayDistributionDays,
  436. 'selectedProducts' => $arrayProductsSelected,
  437. 'users' => $arrayUsers,
  438. 'revenues' => $revenues,
  439. 'revenuesDelivered' => $revenuesDelivered,
  440. 'weight' => $weight,
  441. 'potentialTurnover' => $potentialTurnover,
  442. 'totalWeight' => $totalWeight,
  443. 'subscriptionForm' => $subscriptionForm,
  444. 'pointSaleDistribution' => $pointSaleDistribution,
  445. 'arrayPointSaleDistribution' => $arrayPointsSaleDistribution,
  446. 'arrayPointsSaleDistribution' => $arrayPointsSaleDistribution,
  447. 'oneDistributionWeekActive' => $oneDistributionWeekActive
  448. ];
  449. if ($return_data) {
  450. return $datas;
  451. } else {
  452. return $this->render('index', $datas);
  453. }
  454. }
  455. /**
  456. * Génère un fichier d'export des commandes au format CSV.
  457. *
  458. * @param string $date
  459. * @param integer $id_point_vente
  460. * @param boolean $global
  461. */
  462. public function actionDownload($date = '', $id_point_vente = 0, $global = 0)
  463. {
  464. // commandes
  465. $commandes = Order::searchAll([
  466. 'production.date' => $date
  467. ]) ;
  468. foreach ($commandes as $c)
  469. $c->init();
  470. // points de vente
  471. $points_vente = PointSale::searchAll() ;
  472. foreach ($points_vente as $pv)
  473. $pv->initOrders($commandes);
  474. // produits
  475. $produits = Product::find()->orderBy('order ASC')->all();
  476. $production = Distribution::find()->where('date LIKE \'' . $date . '\'')->one();
  477. $produits_selec = ProductDistribution::searchByDistribution($production->id);
  478. /*
  479. * export global
  480. */
  481. if ($global) {
  482. $data = [];
  483. $filename = 'export_' . $date . '_global';
  484. $num_jour_semaine = date('w', strtotime($date));
  485. $arr_jour_semaine = [0 => 'sunday', 1 => 'monday', 2 => 'tuesday', 3 => 'wednesday', 4 => 'thursday', 5 => 'friday', 6 => 'saterday'];
  486. $champs_horaires_point_vente = 'infos_' . $arr_jour_semaine[$num_jour_semaine];
  487. // par point de vente
  488. foreach ($points_vente as $pv) {
  489. if (count($pv->orders) && strlen($pv->$champs_horaires_point_vente)) {
  490. $line = [$pv->nom, 'Produits', 'Montant', 'Commentaire'];
  491. $data[] = $line;
  492. $res = $this->contentPointSaleCSV($date, $produits, $points_vente, $pv->id);
  493. foreach ($res['data'] as $line) {
  494. $data[] = $line;
  495. }
  496. }
  497. if (count($pv->orders) && strlen($pv->$champs_horaires_point_vente)) {
  498. $line = ['Total pain'];
  499. $str_produits = '';
  500. foreach ($produits as $p) {
  501. if (!$p->vrac && isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  502. $quantite = Order::getProductQuantity($p->id, $pv->commandes);
  503. $str_quantite = '';
  504. if ($quantite) {
  505. $str_quantite = $quantite;
  506. $str_produits .= $str_quantite . $p->diminutif . ', ';
  507. }
  508. }
  509. }
  510. $line[] = substr($str_produits, 0, strlen($str_produits) - 2);
  511. $line[] = number_format($pv->revenues, 2) . ' €';
  512. $data[] = $line;
  513. $line = ['Total vrac'];
  514. $str_produits = '';
  515. foreach ($produits as $p) {
  516. if ($p->vrac && isset($produits_selec[$p->id]['active']) && $produits_selec[$p->id]['active']) {
  517. $quantite = Order::getProductQuantity($p->id, $pv->orders);
  518. $str_quantite = '';
  519. if ($quantite) {
  520. $str_quantite = $quantite;
  521. $str_produits .= $str_quantite . $p->diminutif . ', ';
  522. }
  523. }
  524. }
  525. $line[] = substr($str_produits, 0, strlen($str_produits) - 2);
  526. $line[] = number_format($pv->revenues, 2) . ' €';
  527. $data[] = $line;
  528. $data[] = [];
  529. }
  530. }
  531. $line = ['Total pain'];
  532. $str_produits = '';
  533. foreach ($produits as $p) {
  534. if (!$p->vrac && isset($produits_selec[$p->id]['active']) && $produits_selec[$p->id]['active']) {
  535. $quantite = Order::getProductQuantity($p->id, $commandes);
  536. $str_quantite = '';
  537. if ($quantite) {
  538. $str_quantite = $quantite;
  539. $str_produits .= $str_quantite . '' . $p->diminutif . ', ';
  540. }
  541. }
  542. }
  543. $line[] = substr($str_produits, 0, strlen($str_produits) - 2);
  544. $data[] = $line;
  545. // vrac
  546. $line = ['Total vrac'];
  547. $str_produits = '';
  548. foreach ($produits as $p) {
  549. if ($p->vrac && isset($produits_selec[$p->id]['active']) && $produits_selec[$p->id]['active']) {
  550. $quantite = Order::getProductQuantity($p->id, $commandes);
  551. $str_quantite = '';
  552. if ($quantite) {
  553. $str_quantite = $quantite;
  554. $str_produits .= $str_quantite . '' . $p->diminutif . ', ';
  555. }
  556. }
  557. }
  558. $line[] = substr($str_produits, 0, strlen($str_produits) - 2);
  559. $data[] = $line;
  560. $infos = $this->actionIndex($date, true);
  561. CSV::downloadSendHeaders($filename . '.csv');
  562. echo CSV::array2csv($data);
  563. die();
  564. }
  565. /*
  566. * export individuel
  567. */ else {
  568. if ($commandes && count($commandes)) {
  569. $data = [];
  570. // par point de vente
  571. if ($id_point_vente) {
  572. $res = $this->contentPointSaleCSV($date, $produits, $points_vente, $id_point_vente);
  573. $data = $res['data'];
  574. $filename = $res['filename'];
  575. }
  576. // récapitulatif
  577. else {
  578. $res = $this->contentRecapCSV($date, $produits, $points_vente, $commandes);
  579. $filename = 'recapitulatif_' . $date;
  580. $data = $res['data'];
  581. }
  582. CSV::downloadSendHeaders($filename . '.csv');
  583. echo CSV::array2csv($data);
  584. die();
  585. }
  586. }
  587. }
  588. /**
  589. * Génère le contenu nécessaire aux exports au format CSV.
  590. *
  591. * @see CommandeController::actionDownload()
  592. * @param string $date
  593. * @param array $produits
  594. * @param array $points_vente
  595. * @param array $commandes
  596. * @return array
  597. */
  598. public function contentRecapCSV($date, $produits, $points_vente, $commandes)
  599. {
  600. $data = [];
  601. $filename = 'recapitulatif_' . $date;
  602. $production = Distribution::find()->where('date LIKE \'' . $date . '\'')->one();
  603. $produits_selec = ProductDistribution::searchByDistribution($production->id);
  604. // head
  605. $data[0] = ['Lieu'];
  606. foreach ($produits as $p) {
  607. if (isset($produits_selec[$p->id]['active']) && $produits_selec[$p->id]['active']) {
  608. $data[0][] = $p->description;
  609. }
  610. }
  611. $num_jour_semaine = date('w', strtotime($date));
  612. $arr_jour_semaine = [0 => 'sunday', 1 => 'monday', 2 => 'tuesday', 3 => 'wednesday', 4 => 'thursday', 5 => 'friday', 6 => 'saterday'];
  613. $champs_horaires_point_vente = 'infos_' . $arr_jour_semaine[$num_jour_semaine];
  614. // datas
  615. foreach ($points_vente as $pv) {
  616. if (count($pv->orders) && strlen($pv->$champs_horaires_point_vente)) {
  617. $data_add = [$pv->name];
  618. foreach ($produits as $p) {
  619. if (isset($produits_selec[$p->id]['active']) && $produits_selec[$p->id]['active']) {
  620. $data_add[] = Order::getProductQuantity($p->id, $pv->orders);
  621. }
  622. }
  623. $data[] = $data_add;
  624. }
  625. }
  626. $data_add = ['Total'];
  627. foreach ($produits as $p) {
  628. if (isset($produits_selec[$p->id]['active']) && $produits_selec[$p->id]['active']) {
  629. $data_add[] = Order::getProductQuantity($p->id, $commandes);
  630. }
  631. }
  632. $data[] = $data_add;
  633. return [
  634. 'data' => $data,
  635. 'filename' => $filename
  636. ];
  637. }
  638. /**
  639. * Génère le contenu relatif aux points de vente nécessaires aux exports au
  640. * format CSV.
  641. *
  642. * @param string $date
  643. * @param array $produits
  644. * @param array $points_vente
  645. * @param integer $id_point_vente
  646. * @return array
  647. */
  648. public function contentPointSaleCSV($date, $produits, $points_vente, $id_point_vente)
  649. {
  650. $data = [];
  651. $production = Distribution::find()->where('date LIKE \'' . $date . '\'')->one();
  652. $produits_selec = ProductDistribution::searchByDistribution($production->id);
  653. // head
  654. /* $data[0] = ['Client', 'Date commande'] ;
  655. foreach($produits as $p) {
  656. if(isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  657. $data[0][] = $p->description ;
  658. }
  659. } */
  660. // datas
  661. foreach ($points_vente as $pv) {
  662. if ($pv->id == $id_point_vente) {
  663. $filename = 'export_' . $date . '_' . strtolower(str_replace(' ', '-', $pv->nom));
  664. foreach ($pv->orders as $c) {
  665. $str_user = '';
  666. // username
  667. if ($c->user) {
  668. $str_user = $c->user->name . " " . $c->user->lastname; //.' - '.date('d/m', strtotime($c->date)) ;
  669. } else {
  670. $str_user = $c->username; //.' - '.date('d/m', strtotime($c->date)) ;
  671. }
  672. // téléphone
  673. if (isset($c->user) && strlen($c->user->phone)) {
  674. $str_user .= ' (' . $c->user->phone . ')';
  675. }
  676. $data_add = [$str_user];
  677. // produits
  678. $str_produits = '';
  679. foreach ($produits as $p) {
  680. if (isset($produits_selec[$p->id]['active']) && $produits_selec[$p->id]['active']) {
  681. $add = false;
  682. foreach ($c->productOrder as $cp) {
  683. if ($p->id == $cp->id_produit) {
  684. $str_produits .= $cp->quantity ;
  685. $add = true;
  686. }
  687. }
  688. }
  689. }
  690. $data_add[] = substr($str_produits, 0, strlen($str_produits) - 2);
  691. $data_add[] = number_format($c->amount, 2) . ' €';
  692. $data_add[] = $c->comment;
  693. $data[] = $data_add;
  694. }
  695. }
  696. }
  697. return [
  698. 'data' => $data,
  699. 'filename' => $filename
  700. ];
  701. }
  702. /**
  703. * Ajoute les commandes récurrentes pour une date donnée.
  704. *
  705. * @param string $date
  706. */
  707. public function actionAddSubscriptions($date)
  708. {
  709. Subscription::addAll($date, true);
  710. $this->redirect(['index', 'date' => $date]);
  711. }
  712. /**
  713. * Change l'état d'un jour de production (activé, désactivé).
  714. *
  715. * @param string $date
  716. * @param integer $actif
  717. * @param boolean $redirect
  718. */
  719. public function actionChangeState($date, $active, $redirect = true)
  720. {
  721. // changement état
  722. $distribution = Distribution::initDistribution($date) ;
  723. $distribution->active = $active;
  724. $distribution->save();
  725. if ($active) {
  726. // add commandes automatiques
  727. Subscription::addAll($date);
  728. }
  729. if($redirect) {
  730. $this->redirect(['index', 'date' => $date]);
  731. }
  732. }
  733. /**
  734. * Change l'état d'une semaine de production (activé, désactivé).
  735. *
  736. * @param string $date
  737. * @param integer $actif
  738. */
  739. public function actionChangeStateWeek($date, $active)
  740. {
  741. $week = sprintf('%02d',date('W',strtotime($date)));
  742. $start = strtotime(date('Y',strtotime($date)).'W'.$week);
  743. $date_lundi = date('Y-m-d',strtotime('Monday',$start)) ;
  744. $date_mardi = date('Y-m-d',strtotime('Tuesday',$start)) ;
  745. $date_mercredi = date('Y-m-d',strtotime('Wednesday',$start)) ;
  746. $date_jeudi = date('Y-m-d',strtotime('Thursday',$start)) ;
  747. $date_vendredi = date('Y-m-d',strtotime('Friday',$start)) ;
  748. $date_samedi = date('Y-m-d',strtotime('Saturday',$start)) ;
  749. $date_dimanche = date('Y-m-d',strtotime('Sunday',$start)) ;
  750. $points_vente = PointSale::searchAll() ;
  751. $lundi_active = false ;
  752. $mardi_active = false ;
  753. $mercredi_active = false ;
  754. $jeudi_active = false ;
  755. $vendredi_active = false ;
  756. $samedi_active = false ;
  757. $dimanche_active = false ;
  758. foreach($points_vente as $pv) {
  759. if($pv->livraison_lundi) $lundi_active = true ;
  760. if($pv->livraison_mardi) $mardi_active = true ;
  761. if($pv->livraison_mercredi) $mercredi_active = true ;
  762. if($pv->livraison_jeudi) $jeudi_active = true ;
  763. if($pv->livraison_vendredi) $vendredi_active = true ;
  764. if($pv->livraison_samedi) $samedi_active = true ;
  765. if($pv->livraison_dimanche) $dimanche_active = true ;
  766. }
  767. if($lundi_active || !$active) $this->actionChangeState($date_lundi, $active, false) ;
  768. if($mardi_active || !$active) $this->actionChangeState($date_mardi, $active, false) ;
  769. if($mercredi_active || !$active) $this->actionChangeState($date_mercredi, $active, false) ;
  770. if($jeudi_active || !$active) $this->actionChangeState($date_jeudi, $active, false) ;
  771. if($vendredi_active || !$active) $this->actionChangeState($date_vendredi, $active, false) ;
  772. if($samedi_active || !$active) $this->actionChangeState($date_samedi, $active, false) ;
  773. if($dimanche_active || !$active) $this->actionChangeState($date_dimanche, $active, false) ;
  774. $this->redirect(['index', 'date' => $date]);
  775. }
  776. /**
  777. * Met à jour une commande via une requête AJAX.
  778. *
  779. * @param integer $id_commande
  780. * @param array $produits
  781. * @param string $date
  782. * @param string $commentaire
  783. */
  784. public function actionAjaxUpdate(
  785. $idOrder, $products, $date, $comment)
  786. {
  787. $commande = Order::searchOne(['id' => $idOrder]) ;
  788. if ($commande &&
  789. $commande->distribution->id_producer == Producer::getId()) {
  790. $produits = json_decode($produits);
  791. foreach ($produits as $key => $quantite) {
  792. $commande_produit = ProductOrder::findOne([
  793. 'id_commande' => $id_commande,
  794. 'id_produit' => $key
  795. ]);
  796. if ($quantite) {
  797. if ($commande_produit) {
  798. $commande_produit->quantity = $quantite;
  799. } else {
  800. $produit = Product::findOne($key);
  801. if ($produit) {
  802. $commande_produit = new ProductOrder;
  803. $commande_produit->id_order = $idOrder;
  804. $commande_produit->id_product = $key;
  805. $commande_produit->quantity = $quantite;
  806. $commande_produit->price = $produit->price;
  807. }
  808. }
  809. $commande_produit->save();
  810. } else {
  811. if ($commande_produit)
  812. $commande_produit->delete();
  813. }
  814. }
  815. $commande->date_update = date('Y-m-d H:i:s');
  816. $commande->comment = $comment;
  817. $commande->save();
  818. // data commande
  819. $json_commande = $commande->getDataJson();
  820. // total point de vente
  821. $point_vente = PointSale::findOne($commande->id_point_sale);
  822. $commandes = Order::searchAll([
  823. 'distribution.date' => $date
  824. ]) ;
  825. $point_vente->initOrders($commandes);
  826. echo json_encode([
  827. 'total_pv' => number_format($point_vente->revenues, 2) . ' €',
  828. 'json_commande' => $json_commande
  829. ]);
  830. die();
  831. }
  832. }
  833. /**
  834. * Supprime une commande via une requête AJAX.
  835. *
  836. * @param string $date
  837. * @param integer $id_commande
  838. */
  839. public function actionAjaxDelete($date, $idOrder)
  840. {
  841. $commande = Order::searchOne([
  842. 'id' => $idOrder
  843. ]) ;
  844. // delete
  845. if ($commande) {
  846. // remboursement si l'utilisateur a payé pour cette commande
  847. $montant_paye = $commande->getAmount(Order::AMOUNT_PAID);
  848. if ($montant_paye > 0.01) {
  849. $commande->creditHistory(
  850. CreditHistory::TYPE_REFUND,
  851. $montant_paye,
  852. Producer::getId(),
  853. $commande->id_user,
  854. User::getId()
  855. );
  856. }
  857. $commande->delete();
  858. ProductOrder::deleteAll(['id_order' => $idOrder]);
  859. }
  860. // total point de vente
  861. $point_vente = PointSale::findOne($commande->id_point_sale);
  862. $commandes = Order::searchAll([
  863. 'distribution.date' => $date,
  864. ]) ;
  865. $point_vente->initOrders($commandes);
  866. echo json_encode([
  867. 'total_pv' => number_format($point_vente->revenues, 2) . ' €',
  868. ]);
  869. die();
  870. }
  871. /**
  872. * Crée une commande via une requête AJAX.
  873. *
  874. * @param string $date
  875. * @param integer $id_pv
  876. * @param integer $id_user
  877. * @param string $username
  878. * @param array $produits
  879. * @param string $commentaire
  880. */
  881. public function actionAjaxCreate(
  882. $date, $id_pv, $id_user, $username, $produits, $commentaire)
  883. {
  884. $produits = json_decode($produits);
  885. $point_vente = PointSale::findOne($id_pv);
  886. $production = Distribution::searchOne([
  887. 'date' => $date
  888. ]);
  889. if (preg_match("/^[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])$/", $date) &&
  890. ($id_user || strlen($username)) &&
  891. $point_vente &&
  892. count($produits) &&
  893. $production) {
  894. $commande = new Order;
  895. $commande->date = date('Y-m-d H:i:s', strtotime($date . ' ' . date('H:i:s')));
  896. $commande->id_point_sale = $id_pv;
  897. $commande->id_distribution = $production->id;
  898. $commande->type = Order::ORIGIN_ADMIN;
  899. $commande->comment = $commentaire;
  900. if ($id_user) {
  901. $commande->id_user = $id_user;
  902. // commentaire du point de vente
  903. $point_vente_user = UserPointSale::searchOne([
  904. 'id_point_sale' => $id_pv,
  905. 'id_user' => $id_user
  906. ]) ;
  907. if ($point_vente_user && strlen($point_vente_user->comment)) {
  908. $commande->point_sale_comment = $point_vente_user->comment;
  909. }
  910. } else {
  911. $commande->username = $username;
  912. $commande->id_user = 0;
  913. }
  914. $commande->save();
  915. foreach ($produits as $key => $quantite) {
  916. $produit = Product::findOne($key);
  917. if ($produit) {
  918. $commande_produit = new ProductOrder;
  919. $commande_produit->id_order = $commande->id;
  920. $commande_produit->id_product = $key;
  921. $commande_produit->quantity = $quantite;
  922. $commande_produit->price = $produit->price;
  923. $commande_produit->save();
  924. }
  925. }
  926. // total point de vente
  927. $point_vente = PointSale::findOne($commande->id_point_sale);
  928. $commandes = Order::searchAll([
  929. 'distribution.date' => $date
  930. ]) ;
  931. $point_vente->initOrders($commandes);
  932. // json commande
  933. $commande = Order::searchOne([
  934. 'id' => $commande->id
  935. ]) ;
  936. $produits = [];
  937. foreach ($commande->productOrder as $cp) {
  938. $produits[$cp->id_product] = $cp->quantity;
  939. }
  940. $json_commande = json_encode(['montant' => number_format($commande->amount, 2), 'produits' => $produits]);
  941. $json_commande = $commande->getDataJson();
  942. $str_user = '';
  943. if ($commande->user)
  944. $str_user = $commande->user->name . ' ' . $commande->user->lastname;
  945. else
  946. $str_user = $commande->username;
  947. $str_commentaire = '';
  948. if (strlen($commande->comment)) {
  949. $str_commentaire = ' <span class="glyphicon glyphicon-comment"></span>';
  950. }
  951. $str_label_type_commande = '';
  952. if ($commande->type) {
  953. $str_label_type_commande = ' <span class="label label-warning">vous</span>';
  954. }
  955. echo json_encode([
  956. 'id_commande' => $commande->id,
  957. 'total_pv' => number_format($point_vente->revenues, 2) . ' €',
  958. 'commande' => '<li>'
  959. . '<a class="btn btn-default" href="javascript:void(0);" '
  960. . 'data-pv-id="' . $id_pv . '" '
  961. . 'data-id-commande="' . $commande->id . '" '
  962. . 'data-commande=\'' . $json_commande . '\' '
  963. . 'data-date="' . date('d/m H:i', strtotime($commande->date)) . '">'
  964. . '<span class="montant">' . number_format($commande->amount, 2) . ' €</span>'
  965. . '<span class="user">' . $str_label_type_commande . ' ' . $str_user . '</span>'
  966. . $str_commentaire
  967. . '</a></li>',
  968. ]);
  969. die();
  970. }
  971. }
  972. /**
  973. * Retourne un récapitulatif du total des commandes (potentiel, commandé et
  974. * par produits) au format HTML;
  975. *
  976. * @param string $date
  977. */
  978. public function actionAjaxTotalOrders($date) {
  979. $production = Distribution::searchOne([
  980. 'date' => $date
  981. ]) ;
  982. if ($production) {
  983. // produits
  984. $produits = Product::searchOne() ;
  985. // commandes
  986. $commandes = Order::searchAll([
  987. 'distribution.date' => $date
  988. ]) ;
  989. $recettes = 0;
  990. $poids_pain = 0;
  991. foreach ($commandes as $c) {
  992. $c->init();
  993. if(is_null($c->date_delete)) {
  994. $recettes += $c->amount;
  995. $poids_pain += $c->weight;
  996. }
  997. }
  998. // produits selec pour production
  999. $produits_selec = ProductDistribution::searchByDistribution($production->id);
  1000. $ca_potentiel = 0;
  1001. $poids_total = 0;
  1002. foreach ($produits_selec as $id_produit_selec => $produit_selec) {
  1003. if ($produit_selec['active']) {
  1004. foreach ($produits as $produit) {
  1005. if ($produit->id == $id_produit_selec) {
  1006. $ca_potentiel += $produit_selec['quantity_max'] * $produit->price;
  1007. $poids_total += $produit_selec['quantity_max'] * $produit->weight / 1000;
  1008. }
  1009. }
  1010. }
  1011. }
  1012. $html_totaux = $this->renderPartial('_total_commandes.php', [
  1013. 'produits' => $produits,
  1014. 'commandes' => $commandes,
  1015. 'produits_selec' => $produits_selec,
  1016. 'recettes' => $recettes,
  1017. 'poids_total' => $poids_total,
  1018. 'ca_potentiel' => $ca_potentiel,
  1019. 'poids_pain' => $poids_pain,
  1020. ]);
  1021. echo json_encode([
  1022. 'html_totaux' => $html_totaux,
  1023. ]);
  1024. }
  1025. die();
  1026. }
  1027. /**
  1028. * Active ou désactive la livraison dans un point de vente.
  1029. *
  1030. * @param integer $id_production
  1031. * @param integer $id_point_vente
  1032. * @param boolean $bool_livraison
  1033. */
  1034. public function actionAjaxPointSaleDelivery(
  1035. $id_production, $id_point_vente, $bool_livraison)
  1036. {
  1037. $production_point_vente = PointSaleDistribution::searchOne([
  1038. 'id_production' => $id_production,
  1039. 'id_point_vente' => $id_point_vente,
  1040. ]) ;
  1041. if ($production_point_vente) {
  1042. $production_point_vente->delivery = $bool_livraison;
  1043. $production_point_vente->save();
  1044. }
  1045. die();
  1046. }
  1047. /**
  1048. * Retourne l'état du paiement (historique, crédit) d'une commande donnée.
  1049. *
  1050. * @param integer $id_commande
  1051. */
  1052. public function actionPaymentStatus($id_commande)
  1053. {
  1054. $commande = Commande::searchOne(['id' => $id_commande]) ;
  1055. if ($commande) {
  1056. $commande->init();
  1057. $html = '';
  1058. if ($commande->id_user) {
  1059. $user_etablissement = UserProducer::find()
  1060. ->where([
  1061. 'id_user' => $commande->id_user,
  1062. 'id_producer' => $commande->distribution->id_producer
  1063. ])
  1064. ->one();
  1065. $montant_paye = $commande->getAmount();
  1066. //$html .= $commande->montant.' | '.$montant_paye ;
  1067. if (abs($commande->amount - $montant_paye) < 0.0001) {
  1068. $html .= '<span class="label label-success">Payé</span>';
  1069. $buttons_credit = Html::a('Rembourser ' . $commande->getAmount(Order::AMOUNT_TOTAL, true), 'javascript:void(0);', ['class' => 'btn btn-default btn-xs rembourser', 'data-montant' => $commande->amount, 'data-type' => 'remboursement']);
  1070. } elseif ($commande->amount > $montant_paye) {
  1071. $montant_payer = $commande->amount - $montant_paye;
  1072. $html .= '<span class="label label-danger">Non payé</span> reste <strong>' . number_format($montant_payer, 2) . ' €</strong> à payer';
  1073. $buttons_credit = Html::a('Payer ' . number_format($montant_payer, 2) . ' €', 'javascript:void(0);', ['class' => 'btn btn-default btn-xs payer', 'data-montant' => $montant_payer, 'data-type' => 'paiement']);
  1074. } elseif ($commande->amount < $montant_paye) {
  1075. $montant_rembourser = $montant_paye - $commande->amount;
  1076. $html .= ' <span class="label label-success">Payé</span> <strong>' . number_format($montant_rembourser, 2) . ' €</strong> à rembourser';
  1077. $buttons_credit = Html::a('Rembourser ' . number_format($montant_rembourser, 2) . ' €', 'javascript:void(0);', ['class' => 'btn btn-default btn-xs rembourser', 'data-montant' => $montant_rembourser, 'data-type' => 'remboursement']);
  1078. }
  1079. $html .= '<span class="buttons-credit">'
  1080. . 'Crédit pain : <strong>' . number_format($user_etablissement->credit, 2) . ' €</strong><br />'
  1081. . $buttons_credit
  1082. . '</span>';
  1083. // historique
  1084. $historique = CreditHistory::find()
  1085. ->with('userAction')
  1086. ->where(['id_order' => $id_commande])
  1087. ->all();
  1088. $html .= '<br /><br /><strong>Historique</strong><br /><table class="table table-condensed table-bordered">'
  1089. . '<thead><tr><th>Date</th><th>Utilisateur</th><th>Action</th><th>- Débit</th><th>+ Crédit</th></tr></thead>'
  1090. . '<tbody>';
  1091. if ($historique && is_array($historique) && count($historique)) {
  1092. foreach ($historique as $h) {
  1093. $html .= '<tr>'
  1094. . '<td>' . date('d/m/Y H:i:s', strtotime($h->date)) . '</td>'
  1095. . '<td>' . Html::encode($h->strUserAction()) . '</td>'
  1096. . '<td>' . $h->getStrLibelle() . '</td>'
  1097. . '<td>' . ($h->isTypeDebit() ? '- '.$h->getAmount(Order::AMOUNT_TOTAL,true) : '') . '</td>'
  1098. . '<td>' . ($h->isTypeCredit() ? '+ '.$h->getAmount(Order::AMOUNT_TOTAL,true) : '') . '</td>'
  1099. . '</tr>';
  1100. }
  1101. } else {
  1102. $html .= '<tr><td colspan="4">Aucun résultat</td></tr>';
  1103. }
  1104. $html .= '</tbody></table>';
  1105. } else {
  1106. $html .= '<div class="alert alert-warning">Pas de gestion de crédit pain pour cette commande car elle n\'est pas liée à un compte utilisateur.</div>';
  1107. }
  1108. echo json_encode([
  1109. 'html_statut_paiement' => $html,
  1110. 'json_commande' => $commande->getDataJson()
  1111. ]);
  1112. }
  1113. die();
  1114. }
  1115. /**
  1116. * Effectue le paiement/remboursement d'une commande.
  1117. *
  1118. * @param integer $id_commande
  1119. * @param string $type
  1120. * @param float $montant
  1121. * @return string
  1122. */
  1123. public function actionPayment($id_commande, $type, $montant)
  1124. {
  1125. $commande = Order::searchOne([
  1126. 'id' => $id_order
  1127. ]) ;
  1128. if ($commande) {
  1129. $commande->creditHistory(
  1130. $type,
  1131. $montant,
  1132. Producer::getId(),
  1133. $commande->id_user,
  1134. User::getId()
  1135. );
  1136. }
  1137. return $this->actionPaymentStatus($id_commande);
  1138. }
  1139. }