No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

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