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.

1435 lines
54KB

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