Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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