Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

1240 Zeilen
48KB

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