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.

1330 lines
53KB

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