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.

1345 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. 'arrayProducts' => $arrayProducts,
  431. 'arrayPointsSale' => $arrayPointsSale,
  432. 'arrayOrders' => $arrayOrders,
  433. 'date' => $date,
  434. 'distribution' => $distribution,
  435. 'arrayDistributionDays' => $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. 'arrayPointsSaleDistribution' => $arrayPointsSaleDistribution,
  446. 'oneDistributionWeekActive' => $oneDistributionWeekActive
  447. ];
  448. if ($return_data) {
  449. return $datas;
  450. } else {
  451. return $this->render('index', $datas);
  452. }
  453. }
  454. /**
  455. * Génère un fichier d'export des commandes au format CSV.
  456. *
  457. * @param string $date
  458. * @param integer $id_point_vente
  459. * @param boolean $global
  460. */
  461. public function actionDownload($date = '', $id_point_vente = 0, $global = 0)
  462. {
  463. // commandes
  464. $commandes = Order::searchAll([
  465. 'production.date' => $date
  466. ]) ;
  467. foreach ($commandes as $c)
  468. $c->init();
  469. // points de vente
  470. $points_vente = PointSale::searchAll() ;
  471. foreach ($points_vente as $pv)
  472. $pv->initOrders($commandes);
  473. // produits
  474. $produits = Product::find()->orderBy('order ASC')->all();
  475. $production = Distribution::find()->where('date LIKE \'' . $date . '\'')->one();
  476. $produits_selec = ProductDistribution::searchByDistribution($production->id);
  477. /*
  478. * export global
  479. */
  480. if ($global) {
  481. $data = [];
  482. $filename = 'export_' . $date . '_global';
  483. $num_jour_semaine = date('w', strtotime($date));
  484. $arr_jour_semaine = [0 => 'sunday', 1 => 'monday', 2 => 'tuesday', 3 => 'wednesday', 4 => 'thursday', 5 => 'friday', 6 => 'saterday'];
  485. $champs_horaires_point_vente = 'infos_' . $arr_jour_semaine[$num_jour_semaine];
  486. // par point de vente
  487. foreach ($points_vente as $pv) {
  488. if (count($pv->orders) && strlen($pv->$champs_horaires_point_vente)) {
  489. $line = [$pv->nom, 'Produits', 'Montant', 'Commentaire'];
  490. $data[] = $line;
  491. $res = $this->contentPointSaleCSV($date, $produits, $points_vente, $pv->id);
  492. foreach ($res['data'] as $line) {
  493. $data[] = $line;
  494. }
  495. }
  496. if (count($pv->orders) && strlen($pv->$champs_horaires_point_vente)) {
  497. $line = ['Total pain'];
  498. $str_produits = '';
  499. foreach ($produits as $p) {
  500. if (!$p->vrac && isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  501. $quantite = Order::getProductQuantity($p->id, $pv->commandes);
  502. $str_quantite = '';
  503. if ($quantite) {
  504. $str_quantite = $quantite;
  505. $str_produits .= $str_quantite . $p->diminutif . ', ';
  506. }
  507. }
  508. }
  509. $line[] = substr($str_produits, 0, strlen($str_produits) - 2);
  510. $line[] = number_format($pv->revenues, 2) . ' €';
  511. $data[] = $line;
  512. $line = ['Total vrac'];
  513. $str_produits = '';
  514. foreach ($produits as $p) {
  515. if ($p->vrac && isset($produits_selec[$p->id]['active']) && $produits_selec[$p->id]['active']) {
  516. $quantite = Order::getProductQuantity($p->id, $pv->orders);
  517. $str_quantite = '';
  518. if ($quantite) {
  519. $str_quantite = $quantite;
  520. $str_produits .= $str_quantite . $p->diminutif . ', ';
  521. }
  522. }
  523. }
  524. $line[] = substr($str_produits, 0, strlen($str_produits) - 2);
  525. $line[] = number_format($pv->revenues, 2) . ' €';
  526. $data[] = $line;
  527. $data[] = [];
  528. }
  529. }
  530. $line = ['Total pain'];
  531. $str_produits = '';
  532. foreach ($produits as $p) {
  533. if (!$p->vrac && isset($produits_selec[$p->id]['active']) && $produits_selec[$p->id]['active']) {
  534. $quantite = Order::getProductQuantity($p->id, $commandes);
  535. $str_quantite = '';
  536. if ($quantite) {
  537. $str_quantite = $quantite;
  538. $str_produits .= $str_quantite . '' . $p->diminutif . ', ';
  539. }
  540. }
  541. }
  542. $line[] = substr($str_produits, 0, strlen($str_produits) - 2);
  543. $data[] = $line;
  544. // vrac
  545. $line = ['Total vrac'];
  546. $str_produits = '';
  547. foreach ($produits as $p) {
  548. if ($p->vrac && isset($produits_selec[$p->id]['active']) && $produits_selec[$p->id]['active']) {
  549. $quantite = Order::getProductQuantity($p->id, $commandes);
  550. $str_quantite = '';
  551. if ($quantite) {
  552. $str_quantite = $quantite;
  553. $str_produits .= $str_quantite . '' . $p->diminutif . ', ';
  554. }
  555. }
  556. }
  557. $line[] = substr($str_produits, 0, strlen($str_produits) - 2);
  558. $data[] = $line;
  559. $infos = $this->actionIndex($date, true);
  560. CSV::downloadSendHeaders($filename . '.csv');
  561. echo CSV::array2csv($data);
  562. die();
  563. }
  564. /*
  565. * export individuel
  566. */ else {
  567. if ($commandes && count($commandes)) {
  568. $data = [];
  569. // par point de vente
  570. if ($id_point_vente) {
  571. $res = $this->contentPointSaleCSV($date, $produits, $points_vente, $id_point_vente);
  572. $data = $res['data'];
  573. $filename = $res['filename'];
  574. }
  575. // récapitulatif
  576. else {
  577. $res = $this->contentRecapCSV($date, $produits, $points_vente, $commandes);
  578. $filename = 'recapitulatif_' . $date;
  579. $data = $res['data'];
  580. }
  581. CSV::downloadSendHeaders($filename . '.csv');
  582. echo CSV::array2csv($data);
  583. die();
  584. }
  585. }
  586. }
  587. /**
  588. * Génère le contenu nécessaire aux exports au format CSV.
  589. *
  590. * @see CommandeController::actionDownload()
  591. * @param string $date
  592. * @param array $produits
  593. * @param array $points_vente
  594. * @param array $commandes
  595. * @return array
  596. */
  597. public function contentRecapCSV($date, $produits, $points_vente, $commandes)
  598. {
  599. $data = [];
  600. $filename = 'recapitulatif_' . $date;
  601. $production = Distribution::find()->where('date LIKE \'' . $date . '\'')->one();
  602. $produits_selec = ProductDistribution::searchByDistribution($production->id);
  603. // head
  604. $data[0] = ['Lieu'];
  605. foreach ($produits as $p) {
  606. if (isset($produits_selec[$p->id]['active']) && $produits_selec[$p->id]['active']) {
  607. $data[0][] = $p->description;
  608. }
  609. }
  610. $num_jour_semaine = date('w', strtotime($date));
  611. $arr_jour_semaine = [0 => 'sunday', 1 => 'monday', 2 => 'tuesday', 3 => 'wednesday', 4 => 'thursday', 5 => 'friday', 6 => 'saterday'];
  612. $champs_horaires_point_vente = 'infos_' . $arr_jour_semaine[$num_jour_semaine];
  613. // datas
  614. foreach ($points_vente as $pv) {
  615. if (count($pv->orders) && strlen($pv->$champs_horaires_point_vente)) {
  616. $data_add = [$pv->name];
  617. foreach ($produits as $p) {
  618. if (isset($produits_selec[$p->id]['active']) && $produits_selec[$p->id]['active']) {
  619. $data_add[] = Order::getProductQuantity($p->id, $pv->orders);
  620. }
  621. }
  622. $data[] = $data_add;
  623. }
  624. }
  625. $data_add = ['Total'];
  626. foreach ($produits as $p) {
  627. if (isset($produits_selec[$p->id]['active']) && $produits_selec[$p->id]['active']) {
  628. $data_add[] = Order::getProductQuantity($p->id, $commandes);
  629. }
  630. }
  631. $data[] = $data_add;
  632. return [
  633. 'data' => $data,
  634. 'filename' => $filename
  635. ];
  636. }
  637. /**
  638. * Génère le contenu relatif aux points de vente nécessaires aux exports au
  639. * format CSV.
  640. *
  641. * @param string $date
  642. * @param array $produits
  643. * @param array $points_vente
  644. * @param integer $id_point_vente
  645. * @return array
  646. */
  647. public function contentPointSaleCSV($date, $produits, $points_vente, $id_point_vente)
  648. {
  649. $data = [];
  650. $production = Distribution::find()->where('date LIKE \'' . $date . '\'')->one();
  651. $produits_selec = ProductDistribution::searchByDistribution($production->id);
  652. // head
  653. /* $data[0] = ['Client', 'Date commande'] ;
  654. foreach($produits as $p) {
  655. if(isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  656. $data[0][] = $p->description ;
  657. }
  658. } */
  659. // datas
  660. foreach ($points_vente as $pv) {
  661. if ($pv->id == $id_point_vente) {
  662. $filename = 'export_' . $date . '_' . strtolower(str_replace(' ', '-', $pv->nom));
  663. foreach ($pv->orders as $c) {
  664. $str_user = '';
  665. // username
  666. if ($c->user) {
  667. $str_user = $c->user->name . " " . $c->user->lastname; //.' - '.date('d/m', strtotime($c->date)) ;
  668. } else {
  669. $str_user = $c->username; //.' - '.date('d/m', strtotime($c->date)) ;
  670. }
  671. // téléphone
  672. if (isset($c->user) && strlen($c->user->phone)) {
  673. $str_user .= ' (' . $c->user->phone . ')';
  674. }
  675. $data_add = [$str_user];
  676. // produits
  677. $str_produits = '';
  678. foreach ($produits as $p) {
  679. if (isset($produits_selec[$p->id]['active']) && $produits_selec[$p->id]['active']) {
  680. $add = false;
  681. foreach ($c->productOrder as $cp) {
  682. if ($p->id == $cp->id_produit) {
  683. $str_produits .= $cp->quantity ;
  684. $add = true;
  685. }
  686. }
  687. }
  688. }
  689. $data_add[] = substr($str_produits, 0, strlen($str_produits) - 2);
  690. $data_add[] = number_format($c->amount, 2) . ' €';
  691. $data_add[] = $c->comment;
  692. $data[] = $data_add;
  693. }
  694. }
  695. }
  696. return [
  697. 'data' => $data,
  698. 'filename' => $filename
  699. ];
  700. }
  701. /**
  702. * Ajoute les commandes récurrentes pour une date donnée.
  703. *
  704. * @param string $date
  705. */
  706. public function actionAddSubscriptions($date)
  707. {
  708. Subscription::addAll($date, true);
  709. $this->redirect(['index', 'date' => $date]);
  710. }
  711. /**
  712. * Change l'état d'un jour de production (activé, désactivé).
  713. *
  714. * @param string $date
  715. * @param integer $actif
  716. * @param boolean $redirect
  717. */
  718. public function actionChangeState($date, $active, $redirect = true)
  719. {
  720. // changement état
  721. $distribution = Distribution::initDistribution($date) ;
  722. $distribution->active = $active;
  723. $distribution->save();
  724. if ($active) {
  725. // add commandes automatiques
  726. Subscription::addAll($date);
  727. }
  728. if($redirect) {
  729. $this->redirect(['index', 'date' => $date]);
  730. }
  731. }
  732. /**
  733. * Change l'état d'une semaine de production (activé, désactivé).
  734. *
  735. * @param string $date
  736. * @param integer $actif
  737. */
  738. public function actionChangeStateWeek($date, $active)
  739. {
  740. $week = sprintf('%02d',date('W',strtotime($date)));
  741. $start = strtotime(date('Y',strtotime($date)).'W'.$week);
  742. $date_lundi = date('Y-m-d',strtotime('Monday',$start)) ;
  743. $date_mardi = date('Y-m-d',strtotime('Tuesday',$start)) ;
  744. $date_mercredi = date('Y-m-d',strtotime('Wednesday',$start)) ;
  745. $date_jeudi = date('Y-m-d',strtotime('Thursday',$start)) ;
  746. $date_vendredi = date('Y-m-d',strtotime('Friday',$start)) ;
  747. $date_samedi = date('Y-m-d',strtotime('Saturday',$start)) ;
  748. $date_dimanche = date('Y-m-d',strtotime('Sunday',$start)) ;
  749. $points_vente = PointSale::searchAll() ;
  750. $lundi_active = false ;
  751. $mardi_active = false ;
  752. $mercredi_active = false ;
  753. $jeudi_active = false ;
  754. $vendredi_active = false ;
  755. $samedi_active = false ;
  756. $dimanche_active = false ;
  757. foreach($points_vente as $pv) {
  758. if($pv->livraison_lundi) $lundi_active = true ;
  759. if($pv->livraison_mardi) $mardi_active = true ;
  760. if($pv->livraison_mercredi) $mercredi_active = true ;
  761. if($pv->livraison_jeudi) $jeudi_active = true ;
  762. if($pv->livraison_vendredi) $vendredi_active = true ;
  763. if($pv->livraison_samedi) $samedi_active = true ;
  764. if($pv->livraison_dimanche) $dimanche_active = true ;
  765. }
  766. if($lundi_active || !$active) $this->actionChangeState($date_lundi, $active, false) ;
  767. if($mardi_active || !$active) $this->actionChangeState($date_mardi, $active, false) ;
  768. if($mercredi_active || !$active) $this->actionChangeState($date_mercredi, $active, false) ;
  769. if($jeudi_active || !$active) $this->actionChangeState($date_jeudi, $active, false) ;
  770. if($vendredi_active || !$active) $this->actionChangeState($date_vendredi, $active, false) ;
  771. if($samedi_active || !$active) $this->actionChangeState($date_samedi, $active, false) ;
  772. if($dimanche_active || !$active) $this->actionChangeState($date_dimanche, $active, false) ;
  773. $this->redirect(['index', 'date' => $date]);
  774. }
  775. /**
  776. * Met à jour une commande via une requête AJAX.
  777. *
  778. * @param integer $id_commande
  779. * @param array $produits
  780. * @param string $date
  781. * @param string $commentaire
  782. */
  783. public function actionAjaxUpdate(
  784. $idOrder, $products, $date, $comment)
  785. {
  786. $commande = Order::searchOne(['id' => $idOrder]) ;
  787. if ($commande &&
  788. $commande->distribution->id_producer == Producer::getId()) {
  789. $produits = json_decode($produits);
  790. foreach ($produits as $key => $quantite) {
  791. $commande_produit = ProductOrder::findOne([
  792. 'id_commande' => $id_commande,
  793. 'id_produit' => $key
  794. ]);
  795. if ($quantite) {
  796. if ($commande_produit) {
  797. $commande_produit->quantity = $quantite;
  798. } else {
  799. $produit = Product::findOne($key);
  800. if ($produit) {
  801. $commande_produit = new ProductOrder;
  802. $commande_produit->id_order = $idOrder;
  803. $commande_produit->id_product = $key;
  804. $commande_produit->quantity = $quantite;
  805. $commande_produit->price = $produit->price;
  806. }
  807. }
  808. $commande_produit->save();
  809. } else {
  810. if ($commande_produit)
  811. $commande_produit->delete();
  812. }
  813. }
  814. $commande->date_update = date('Y-m-d H:i:s');
  815. $commande->comment = $comment;
  816. $commande->save();
  817. // data commande
  818. $json_commande = $commande->getDataJson();
  819. // total point de vente
  820. $point_vente = PointSale::findOne($commande->id_point_sale);
  821. $commandes = Order::searchAll([
  822. 'distribution.date' => $date
  823. ]) ;
  824. $point_vente->initOrders($commandes);
  825. echo json_encode([
  826. 'total_pv' => number_format($point_vente->revenues, 2) . ' €',
  827. 'json_commande' => $json_commande
  828. ]);
  829. die();
  830. }
  831. }
  832. /**
  833. * Supprime une commande via une requête AJAX.
  834. *
  835. * @param string $date
  836. * @param integer $id_commande
  837. */
  838. public function actionAjaxDelete($date, $idOrder)
  839. {
  840. $commande = Order::searchOne([
  841. 'id' => $idOrder
  842. ]) ;
  843. // delete
  844. if ($commande) {
  845. // remboursement si l'utilisateur a payé pour cette commande
  846. $montant_paye = $commande->getAmount(Order::AMOUNT_PAID);
  847. if ($montant_paye > 0.01) {
  848. $commande->creditHistory(
  849. CreditHistory::TYPE_REFUND,
  850. $montant_paye,
  851. Producer::getId(),
  852. $commande->id_user,
  853. User::getId()
  854. );
  855. }
  856. $commande->delete();
  857. ProductOrder::deleteAll(['id_order' => $idOrder]);
  858. }
  859. // total point de vente
  860. $point_vente = PointSale::findOne($commande->id_point_sale);
  861. $commandes = Order::searchAll([
  862. 'distribution.date' => $date,
  863. ]) ;
  864. $point_vente->initOrders($commandes);
  865. echo json_encode([
  866. 'total_pv' => number_format($point_vente->revenues, 2) . ' €',
  867. ]);
  868. die();
  869. }
  870. /**
  871. * Crée une commande via une requête AJAX.
  872. *
  873. * @param string $date
  874. * @param integer $id_pv
  875. * @param integer $id_user
  876. * @param string $username
  877. * @param array $produits
  878. * @param string $commentaire
  879. */
  880. public function actionAjaxCreate(
  881. $date, $id_pv, $id_user, $username, $produits, $commentaire)
  882. {
  883. $produits = json_decode($produits);
  884. $point_vente = PointSale::findOne($id_pv);
  885. $production = Distribution::searchOne([
  886. 'date' => $date
  887. ]);
  888. if (preg_match("/^[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])$/", $date) &&
  889. ($id_user || strlen($username)) &&
  890. $point_vente &&
  891. count($produits) &&
  892. $production) {
  893. $commande = new Order;
  894. $commande->date = date('Y-m-d H:i:s', strtotime($date . ' ' . date('H:i:s')));
  895. $commande->id_point_sale = $id_pv;
  896. $commande->id_distribution = $production->id;
  897. $commande->type = Order::ORIGIN_ADMIN;
  898. $commande->comment = $commentaire;
  899. if ($id_user) {
  900. $commande->id_user = $id_user;
  901. // commentaire du point de vente
  902. $point_vente_user = UserPointSale::searchOne([
  903. 'id_point_sale' => $id_pv,
  904. 'id_user' => $id_user
  905. ]) ;
  906. if ($point_vente_user && strlen($point_vente_user->comment)) {
  907. $commande->point_sale_comment = $point_vente_user->comment;
  908. }
  909. } else {
  910. $commande->username = $username;
  911. $commande->id_user = 0;
  912. }
  913. $commande->save();
  914. foreach ($produits as $key => $quantite) {
  915. $produit = Product::findOne($key);
  916. if ($produit) {
  917. $commande_produit = new ProductOrder;
  918. $commande_produit->id_order = $commande->id;
  919. $commande_produit->id_product = $key;
  920. $commande_produit->quantity = $quantite;
  921. $commande_produit->price = $produit->price;
  922. $commande_produit->save();
  923. }
  924. }
  925. // total point de vente
  926. $point_vente = PointSale::findOne($commande->id_point_sale);
  927. $commandes = Order::searchAll([
  928. 'distribution.date' => $date
  929. ]) ;
  930. $point_vente->initOrders($commandes);
  931. // json commande
  932. $commande = Order::searchOne([
  933. 'id' => $commande->id
  934. ]) ;
  935. $produits = [];
  936. foreach ($commande->productOrder as $cp) {
  937. $produits[$cp->id_product] = $cp->quantity;
  938. }
  939. $json_commande = json_encode(['montant' => number_format($commande->amount, 2), 'produits' => $produits]);
  940. $json_commande = $commande->getDataJson();
  941. $str_user = '';
  942. if ($commande->user)
  943. $str_user = $commande->user->name . ' ' . $commande->user->lastname;
  944. else
  945. $str_user = $commande->username;
  946. $str_commentaire = '';
  947. if (strlen($commande->comment)) {
  948. $str_commentaire = ' <span class="glyphicon glyphicon-comment"></span>';
  949. }
  950. $str_label_type_commande = '';
  951. if ($commande->type) {
  952. $str_label_type_commande = ' <span class="label label-warning">vous</span>';
  953. }
  954. echo json_encode([
  955. 'id_commande' => $commande->id,
  956. 'total_pv' => number_format($point_vente->revenues, 2) . ' €',
  957. 'commande' => '<li>'
  958. . '<a class="btn btn-default" href="javascript:void(0);" '
  959. . 'data-pv-id="' . $id_pv . '" '
  960. . 'data-id-commande="' . $commande->id . '" '
  961. . 'data-commande=\'' . $json_commande . '\' '
  962. . 'data-date="' . date('d/m H:i', strtotime($commande->date)) . '">'
  963. . '<span class="montant">' . number_format($commande->amount, 2) . ' €</span>'
  964. . '<span class="user">' . $str_label_type_commande . ' ' . $str_user . '</span>'
  965. . $str_commentaire
  966. . '</a></li>',
  967. ]);
  968. die();
  969. }
  970. }
  971. /**
  972. * Retourne un récapitulatif du total des commandes (potentiel, commandé et
  973. * par produits) au format HTML;
  974. *
  975. * @param string $date
  976. */
  977. public function actionAjaxTotalOrders($date) {
  978. $production = Distribution::searchOne([
  979. 'date' => $date
  980. ]) ;
  981. if ($production) {
  982. // produits
  983. $produits = Product::searchOne() ;
  984. // commandes
  985. $commandes = Order::searchAll([
  986. 'distribution.date' => $date
  987. ]) ;
  988. $recettes = 0;
  989. $poids_pain = 0;
  990. foreach ($commandes as $c) {
  991. $c->init();
  992. if(is_null($c->date_delete)) {
  993. $recettes += $c->amount;
  994. $poids_pain += $c->weight;
  995. }
  996. }
  997. // produits selec pour production
  998. $produits_selec = ProductDistribution::searchByDistribution($production->id);
  999. $ca_potentiel = 0;
  1000. $poids_total = 0;
  1001. foreach ($produits_selec as $id_produit_selec => $produit_selec) {
  1002. if ($produit_selec['active']) {
  1003. foreach ($produits as $produit) {
  1004. if ($produit->id == $id_produit_selec) {
  1005. $ca_potentiel += $produit_selec['quantity_max'] * $produit->price;
  1006. $poids_total += $produit_selec['quantity_max'] * $produit->weight / 1000;
  1007. }
  1008. }
  1009. }
  1010. }
  1011. $html_totaux = $this->renderPartial('_total_commandes.php', [
  1012. 'produits' => $produits,
  1013. 'commandes' => $commandes,
  1014. 'produits_selec' => $produits_selec,
  1015. 'recettes' => $recettes,
  1016. 'poids_total' => $poids_total,
  1017. 'ca_potentiel' => $ca_potentiel,
  1018. 'poids_pain' => $poids_pain,
  1019. ]);
  1020. echo json_encode([
  1021. 'html_totaux' => $html_totaux,
  1022. ]);
  1023. }
  1024. die();
  1025. }
  1026. /**
  1027. * Active ou désactive la livraison dans un point de vente.
  1028. *
  1029. * @param integer $id_production
  1030. * @param integer $id_point_vente
  1031. * @param boolean $bool_livraison
  1032. */
  1033. public function actionAjaxPointSaleDelivery(
  1034. $id_production, $id_point_vente, $bool_livraison)
  1035. {
  1036. $production_point_vente = PointSaleDistribution::searchOne([
  1037. 'id_production' => $id_production,
  1038. 'id_point_vente' => $id_point_vente,
  1039. ]) ;
  1040. if ($production_point_vente) {
  1041. $production_point_vente->delivery = $bool_livraison;
  1042. $production_point_vente->save();
  1043. }
  1044. die();
  1045. }
  1046. /**
  1047. * Retourne l'état du paiement (historique, crédit) d'une commande donnée.
  1048. *
  1049. * @param integer $id_commande
  1050. */
  1051. public function actionPaymentStatus($id_commande)
  1052. {
  1053. $commande = Commande::searchOne(['id' => $id_commande]) ;
  1054. if ($commande) {
  1055. $commande->init();
  1056. $html = '';
  1057. if ($commande->id_user) {
  1058. $user_etablissement = UserProducer::find()
  1059. ->where([
  1060. 'id_user' => $commande->id_user,
  1061. 'id_producer' => $commande->distribution->id_producer
  1062. ])
  1063. ->one();
  1064. $montant_paye = $commande->getAmount();
  1065. //$html .= $commande->montant.' | '.$montant_paye ;
  1066. if (abs($commande->amount - $montant_paye) < 0.0001) {
  1067. $html .= '<span class="label label-success">Payé</span>';
  1068. $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']);
  1069. } elseif ($commande->amount > $montant_paye) {
  1070. $montant_payer = $commande->amount - $montant_paye;
  1071. $html .= '<span class="label label-danger">Non payé</span> reste <strong>' . number_format($montant_payer, 2) . ' €</strong> à payer';
  1072. $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']);
  1073. } elseif ($commande->amount < $montant_paye) {
  1074. $montant_rembourser = $montant_paye - $commande->amount;
  1075. $html .= ' <span class="label label-success">Payé</span> <strong>' . number_format($montant_rembourser, 2) . ' €</strong> à rembourser';
  1076. $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']);
  1077. }
  1078. $html .= '<span class="buttons-credit">'
  1079. . 'Crédit pain : <strong>' . number_format($user_etablissement->credit, 2) . ' €</strong><br />'
  1080. . $buttons_credit
  1081. . '</span>';
  1082. // historique
  1083. $historique = CreditHistory::find()
  1084. ->with('userAction')
  1085. ->where(['id_order' => $id_commande])
  1086. ->all();
  1087. $html .= '<br /><br /><strong>Historique</strong><br /><table class="table table-condensed table-bordered">'
  1088. . '<thead><tr><th>Date</th><th>Utilisateur</th><th>Action</th><th>- Débit</th><th>+ Crédit</th></tr></thead>'
  1089. . '<tbody>';
  1090. if ($historique && is_array($historique) && count($historique)) {
  1091. foreach ($historique as $h) {
  1092. $html .= '<tr>'
  1093. . '<td>' . date('d/m/Y H:i:s', strtotime($h->date)) . '</td>'
  1094. . '<td>' . Html::encode($h->strUserAction()) . '</td>'
  1095. . '<td>' . $h->getStrLibelle() . '</td>'
  1096. . '<td>' . ($h->isTypeDebit() ? '- '.$h->getAmount(Order::AMOUNT_TOTAL,true) : '') . '</td>'
  1097. . '<td>' . ($h->isTypeCredit() ? '+ '.$h->getAmount(Order::AMOUNT_TOTAL,true) : '') . '</td>'
  1098. . '</tr>';
  1099. }
  1100. } else {
  1101. $html .= '<tr><td colspan="4">Aucun résultat</td></tr>';
  1102. }
  1103. $html .= '</tbody></table>';
  1104. } else {
  1105. $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>';
  1106. }
  1107. echo json_encode([
  1108. 'html_statut_paiement' => $html,
  1109. 'json_commande' => $commande->getDataJson()
  1110. ]);
  1111. }
  1112. die();
  1113. }
  1114. /**
  1115. * Effectue le paiement/remboursement d'une commande.
  1116. *
  1117. * @param integer $id_commande
  1118. * @param string $type
  1119. * @param float $montant
  1120. * @return string
  1121. */
  1122. public function actionPayment($id_commande, $type, $montant)
  1123. {
  1124. $commande = Order::searchOne([
  1125. 'id' => $id_order
  1126. ]) ;
  1127. if ($commande) {
  1128. $commande->creditHistory(
  1129. $type,
  1130. $montant,
  1131. Producer::getId(),
  1132. $commande->id_user,
  1133. User::getId()
  1134. );
  1135. }
  1136. return $this->actionPaymentStatus($id_commande);
  1137. }
  1138. }