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.

581 lines
21KB

  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 producer\controllers;
  32. class CommandeController extends ProducerBaseController
  33. {
  34. public function behaviors()
  35. {
  36. return [
  37. 'access' => [
  38. 'class' => AccessControl::className(),
  39. 'rules' => [
  40. [
  41. 'allow' => true,
  42. 'roles' => ['@'],
  43. ]
  44. ],
  45. ],
  46. ];
  47. }
  48. /**
  49. * Retourne au format JSON toutes les informations relatives à une
  50. * production donnée.
  51. *
  52. * @param integer $id_production
  53. * @return mixed
  54. */
  55. public function actionInfosProduction($id_production)
  56. {
  57. $production = Production::findOne($id_production);
  58. if ($production) {
  59. $arr = [];
  60. $produits_dispos = ProductionProduit::findProduits($production->id);
  61. $arr['produits_dispos'] = $produits_dispos;
  62. $points_vente = PointVente::find()
  63. ->joinWith(['productionPointVente' => function($q) use ($production) {
  64. $q->where(['id_production' => $production->id]);
  65. }])
  66. ->where([
  67. 'id_etablissement' => $production->id_etablissement,
  68. ])
  69. ->all();
  70. $arr['points_vente'] = [];
  71. foreach ($points_vente as $pv) {
  72. if (isset($pv->productionPointVente) &&
  73. isset($pv->productionPointVente[0])) {
  74. $arr['points_vente'][$pv->id] = $pv->productionPointVente[0]->livraison;
  75. } else {
  76. $arr['points_vente'][$pv->id] = false;
  77. }
  78. }
  79. return json_encode($arr);
  80. }
  81. return json_encode([]);
  82. }
  83. /**
  84. * Initialise le formulaire de création/modification de commande.
  85. *
  86. * @param Commande $commande
  87. * @return array
  88. */
  89. public function initForm($commande = null) {
  90. // etablissements
  91. $etablissements = Yii::$app->user->identity->getEtablissementsFavoris();
  92. $id_etablissement = $this->getProducer()->id;
  93. // etablissement
  94. $etablissement = Etablissement::findOne($id_etablissement);
  95. // points de vente
  96. $points_vente = PointVente::find()
  97. ->with('pointVenteUser')
  98. ->where(['id_etablissement' => $id_etablissement])
  99. ->andWhere('acces_restreint = 0 OR (acces_restreint = 1 AND (SELECT COUNT(*) FROM point_vente_user WHERE point_vente.id = point_vente_user.id_point_vente AND point_vente_user.id_user = :id_user) > 0)')
  100. ->params([':id_user' => Yii::$app->user->identity->id])
  101. ->all();
  102. $arr_points_vente = $points_vente;
  103. // jours de production
  104. $heure_limite = 20;
  105. $date = date('Y-m-d');
  106. if (isset($etablissement)) {
  107. $heure_limite = $etablissement->heure_limite_commande;
  108. if (date('H') >= $heure_limite) {
  109. $date = date('Y-m-d', strtotime(date('Y-m-d')) + ($etablissement->delai_commande) * (24 * 60 * 60));
  110. } else {
  111. $date = date('Y-m-d', strtotime(date('Y-m-d')) + ($etablissement->delai_commande - 1) * (24 * 60 * 60));
  112. }
  113. }
  114. $jours_production = Production::find()
  115. ->where(['actif' => 1])
  116. ->andWhere('date > :date')
  117. ->andWhere(['id_etablissement' => $id_etablissement])
  118. ->addParams([':date' => $date])
  119. ->all();
  120. $arr_jours_production = array('' => '--');
  121. foreach ($jours_production as $j)
  122. $arr_jours_production[$j->id] = date('d/m/Y', strtotime($j->date));
  123. // produits
  124. $produits = Produit::find()
  125. ->leftJoin('production_produit', 'produit.id = production_produit.id_produit')
  126. ->where(['produit.actif' => 1, 'id_etablissement' => $id_etablissement])
  127. ->andWhere('produit.vrac IS NULL OR produit.vrac = 0')
  128. ->orderBy('produit.order ASC')->all();
  129. $arr_produits = array();
  130. foreach ($produits as $p)
  131. $arr_produits[] = $p;
  132. // produits vrac
  133. $produits_vrac = Produit::find()->where(['actif' => 1, 'vrac' => 1])->orderBy('order ASC')->all();
  134. // produits selec
  135. $posts = Yii::$app->request->post();
  136. $produits_selec = [];
  137. if (isset($posts['Produit'])) {
  138. foreach ($posts['Produit'] as $key => $quantity) {
  139. $key = (int) str_replace('produit_', '', $key);
  140. $p = Produit::find()->where(['id' => $key])->one();
  141. if ($p && $quantity)
  142. $produits_selec[$p->id] = (int) $quantity;
  143. }
  144. }
  145. elseif (!is_null($commande)) {
  146. $produits_commande = CommandeProduit::find()->where(['id_commande' => $commande->id])->all();
  147. foreach ($produits_commande as $pc) {
  148. $produits_selec[$pc->id_produit] = (int) $pc->quantite;
  149. }
  150. }
  151. $produits_dispos = [];
  152. $production = null;
  153. if (!is_null($commande) && $commande->id_production) {
  154. $produits_dispos = ProductionProduit::findProduits($commande->id_production);
  155. $production = Production::find()->where(['id' => $commande->id_production])->one();
  156. }
  157. $commandes = Commande::find()
  158. ->where(['id_user' => Yii::$app->user->identity->id])
  159. ->all();
  160. if ($id_etablissement) {
  161. $user_etablissement = UserEtablissement::find()
  162. ->where([
  163. 'id_etablissement' => $id_etablissement,
  164. 'id_user' => Yii::$app->user->identity->id
  165. ])
  166. ->one();
  167. $credit = $user_etablissement->credit;
  168. } else {
  169. $credit = 0;
  170. }
  171. return [
  172. 'points_vente' => $arr_points_vente,
  173. 'jours_production' => $arr_jours_production,
  174. 'produits' => $produits,
  175. 'produits_selec' => $produits_selec,
  176. 'produits_dispos' => $produits_dispos,
  177. 'production' => $production,
  178. 'commandes_en_cours' => $commandes,
  179. 'produits_vrac' => $produits_vrac,
  180. 'etablissements' => $etablissements,
  181. 'id_etablissement' => $id_etablissement,
  182. 'etablissement' => $etablissement,
  183. 'credit' => $credit
  184. ];
  185. }
  186. /**
  187. * Affiche l'historique des commandes de l'utilisateur
  188. *
  189. * @return ProducerView
  190. */
  191. public function actionHistorique()
  192. {
  193. $data_provider_commandes = new ActiveDataProvider([
  194. 'query' => Commande::find()
  195. ->with('commandeProduits', 'pointVente', 'creditHistorique')
  196. ->joinWith('production', 'production.etablissement')
  197. ->where([
  198. 'id_user' => Yii::$app->user->id,
  199. 'production.id_etablissement' => $this->getProducer()->id
  200. ])
  201. ->orderBy('production.date DESC'),
  202. 'pagination' => [
  203. 'pageSize' => 10,
  204. ],
  205. ]);
  206. return $this->render('historique', [
  207. 'data_provider_commandes' => $data_provider_commandes,
  208. 'commande_ok' => Yii::$app->getRequest()->get('commande_ok', false),
  209. 'annule_ok' => Yii::$app->getRequest()->get('annule_ok', false),
  210. ]);
  211. }
  212. /**
  213. * Supprime un producteur.
  214. *
  215. * @param integer $id
  216. */
  217. public function actionRemoveEtablissement($id = 0)
  218. {
  219. $user_etablissement = UserEtablissement::find()
  220. ->where(['id_etablissement' => $id, 'id_user' => Yii::$app->user->identity->id])
  221. ->one();
  222. $user_etablissement->actif = 0;
  223. $user_etablissement->save();
  224. $this->redirect(['commande/index']);
  225. }
  226. /**
  227. * Crée une commande.
  228. *
  229. * @return mixed
  230. */
  231. public function actionCreate()
  232. {
  233. $id_etablissement = $this->getProducer()->id ;
  234. $commande = new Commande;
  235. $posts = Yii::$app->request->post();
  236. if ($id_etablissement)
  237. $this->_verifEtablissementActif($id_etablissement);
  238. if ($commande->load($posts)) {
  239. $commande = Commande::find()->where('id_production = ' . $posts['Commande']['id_production'])->andWhere('id_user = ' . Yii::$app->user->id)->one();
  240. if (!$commande) {
  241. $commande = new Commande;
  242. $commande->load(Yii::$app->request->post());
  243. $commande->id_user = Yii::$app->user->id;
  244. $commande->date = date('Y-m-d H:i:s');
  245. $commande->type = Commande::TYPE_USER;
  246. }
  247. $this->gestionForm($commande);
  248. }
  249. return $this->render('create', array_merge($this->initForm($commande), [
  250. 'model' => $commande
  251. ]));
  252. }
  253. /**
  254. * Modifie une commande.
  255. *
  256. * @param integer $id
  257. * @return mixed
  258. * @throws UserException
  259. */
  260. public function actionUpdate($id)
  261. {
  262. $commande = Commande::find()
  263. ->with('production')
  264. ->where(['id' => $id])
  265. ->one();
  266. if ($commande->getEtat() != Commande::ETAT_MODIFIABLE) {
  267. throw new UserException('Cette commande n\'est pas modifiable.');
  268. }
  269. $this->_verifEtablissementActif($commande->production->id_etablissement);
  270. if ($commande && $commande->load(Yii::$app->request->post())) {
  271. $commande->date_update = date('Y-m-d H:i:s');
  272. $this->gestionForm($commande);
  273. }
  274. return $this->render('update', array_merge($this->initForm($commande), [
  275. 'model' => $commande,
  276. 'commande_introuvable' => !$commande,
  277. ]));
  278. }
  279. /**
  280. * Vérifie si un producteur est actif.
  281. *
  282. * @param integer $id_etablissement
  283. * @throws NotFoundHttpException
  284. */
  285. public function _verifEtablissementActif($id_etablissement)
  286. {
  287. $etablissement = Etablissement::findOne($id_etablissement);
  288. if ($etablissement && !$etablissement->actif) {
  289. throw new NotFoundHttpException('Cet établissement est actuellement hors ligne.');
  290. }
  291. }
  292. /**
  293. * Traite le formulaire de création/modification de commande.
  294. *
  295. * @param Commande $commande
  296. */
  297. public function gestionForm($commande)
  298. {
  299. $posts = Yii::$app->request->post();
  300. $produits = array();
  301. $quantite_totale = 0;
  302. foreach ($posts['Produit'] as $key => $quantity) {
  303. $key = (int) str_replace('produit_', '', $key);
  304. $p = Produit::find()->where(['id' => $key])->one();
  305. $quantite_totale += $quantity;
  306. if ($p && $quantity)
  307. $produits[] = $p;
  308. }
  309. // nombre de produits
  310. $err_nb_produits = false;
  311. if (!Yii::$app->user->identity->confiance && $quantite_totale > 3) {
  312. $err_nb_produits = true;
  313. }
  314. // date
  315. $err_date = false;
  316. $pate_deja_petrie = false;
  317. if (isset($commande->id_production)) {
  318. // date de commande
  319. $production = Production::find()->where(['id' => $commande->id_production])->one();
  320. if (date('H') >= 20) {
  321. $date = date('Y-m-d', strtotime(date('Y-m-d')) + 60 * 60 * 24);
  322. } else {
  323. $date = date('Y-m-d');
  324. }
  325. if ($production->date < $date) {
  326. $err_date = true;
  327. }
  328. }
  329. // point de vente
  330. $err_point_vente = false;
  331. if (isset($production) && $production) {
  332. $ppv = ProductionPointVente::find()
  333. ->where([
  334. 'id_production' => $production->id,
  335. 'id_point_vente' => $posts['Commande']['id_point_vente']
  336. ])
  337. ->one();
  338. if (!$ppv || !$ppv->livraison) {
  339. $err_point_vente = true;
  340. }
  341. $point_vente = PointVente::findOne($posts['Commande']['id_point_vente']);
  342. if ($point_vente) {
  343. if (strlen($point_vente->code) && !$point_vente->verifCode($posts['code_point_vente_' . $point_vente->id])) {
  344. $err_point_vente = true;
  345. }
  346. } else {
  347. $err_point_vente = true;
  348. }
  349. }
  350. if ($commande->validate() && count($produits) && !$err_nb_produits && !$err_date && !$err_point_vente) {
  351. // gestion point de vente
  352. $pv = PointVente::find()
  353. ->with('pointVenteUser')
  354. ->where(['id' => $commande->id_point_vente])
  355. ->one();
  356. if ($pv && strlen($pv->getCommentaire()))
  357. $commande->commentaire_point_vente = $pv->getCommentaire();
  358. else
  359. $commande->commentaire_point_vente = '';
  360. // sauvegarde de la commande
  361. $commande->save();
  362. // ajout de l'utilisateur à l'établissement
  363. Etablissement::addUser(Yii::$app->user->identity->id, $production->id_etablissement) ;
  364. // suppression de tous les enregistrements CommandeProduit
  365. if (!is_null($commande)) {
  366. CommandeProduit::deleteAll(['id_commande' => $commande->id]);
  367. }
  368. // produits dispos
  369. $produits_dispos = ProductionProduit::findProduits($production->id);
  370. // sauvegarde des produits
  371. foreach ($produits as $p) {
  372. if (isset($produits_dispos[$p->id])) {
  373. $commande_produit = new CommandeProduit();
  374. $commande_produit->id_commande = $commande->id;
  375. $commande_produit->id_produit = $p->id;
  376. $commande_produit->prix = $p->prix;
  377. $quantite_voulue = (int) $posts['Produit']['produit_' . $p->id];
  378. if ($produits_dispos[$p->id]['quantite_max'] && $quantite_voulue > $produits_dispos[$p->id]['quantite_restante'])
  379. $quantite_voulue = $produits_dispos[$p->id]['quantite_restante'];
  380. $commande_produit->quantite = $quantite_voulue;
  381. $commande_produit->save();
  382. }
  383. }
  384. // credit pain
  385. $credit_pain = isset($posts['credit_pain']) && $posts['credit_pain'];
  386. if ($credit_pain && ($pv->credit_pain || $commande->getMontantPaye())) {
  387. $commande = Commande::find()
  388. ->with('commandeProduits')
  389. ->where(['id' => $commande->id])
  390. ->one();
  391. $commande->init();
  392. $montant_paye = $commande->getMontantPaye();
  393. // à payer
  394. if ($commande->getStatutPaiement() == Commande::STATUT_IMPAYEE) {
  395. $montant_payer = $commande->montant - $montant_paye;
  396. $credit = Yii::$app->user->identity->getCredit($production->id_etablissement);
  397. if ($montant_payer > $credit) {
  398. $montant_payer = $credit;
  399. }
  400. if ($montant_payer > 0) {
  401. $commande->creditHistorique(
  402. CreditHistorique::TYPE_PAIEMENT,
  403. $montant_payer,
  404. $production->id_etablissement,
  405. Yii::$app->user->identity->id,
  406. Yii::$app->user->identity->id
  407. );
  408. }
  409. }
  410. // surplus à rembourser
  411. elseif ($commande->getStatutPaiement() == Commande::STATUT_SURPLUS) {
  412. $montant_rembourser = $montant_paye - $commande->montant;
  413. $commande->creditHistorique(
  414. CreditHistorique::TYPE_REMBOURSEMENT,
  415. $montant_rembourser,
  416. $production->id_etablissement,
  417. Yii::$app->user->identity->id,
  418. Yii::$app->user->identity->id
  419. );
  420. }
  421. }
  422. // redirection
  423. $this->redirect(Yii::$app->urlManager->createUrl(['commande/historique', 'commande_ok' => true, 'pate_deja_petrie' => $pate_deja_petrie]));
  424. } else {
  425. if (!count($produits))
  426. Yii::$app->session->setFlash('error', "Vous n'avez choisi aucun produit");
  427. if ($err_nb_produits)
  428. Yii::$app->session->setFlash('error', "Vous ne pouvez pas commander plus de 3 produits");
  429. if ($err_date)
  430. Yii::$app->session->setFlash('error', "Vous ne pouvez pas commander pour cette date.");
  431. if ($err_point_vente)
  432. Yii::$app->session->setFlash('error', "Point de vente invalide.");
  433. }
  434. }
  435. /**
  436. * Annule une commande.
  437. *
  438. * @param integer $id
  439. * @throws \yii\web\NotFoundHttpException
  440. * @throws UserException
  441. */
  442. public function actionAnnuler($id)
  443. {
  444. $commande = Commande::find()
  445. ->with('production', 'creditHistorique', 'commandeProduits')
  446. ->where(['id' => $id])
  447. ->one();
  448. if(!$commande)
  449. throw new \yii\web\NotFoundHttpException('Commande introuvable');
  450. if ($commande->getEtat() != Commande::ETAT_MODIFIABLE) {
  451. throw new UserException('Vous ne pouvez plus annuler cette commande.');
  452. }
  453. $commande->init();
  454. if ($commande && Yii::$app->user->id == $commande->id_user) {
  455. // remboursement
  456. if ($commande->getMontantPaye()) {
  457. $commande->creditHistorique(
  458. CreditHistorique::TYPE_REMBOURSEMENT,
  459. $commande->getMontantPaye(),
  460. $commande->production->id_etablissement,
  461. Yii::$app->user->identity->id,
  462. Yii::$app->user->identity->id
  463. );
  464. }
  465. // delete
  466. $commande->date_delete = date('Y-m-d H:i:s');
  467. $commande->save() ;
  468. Yii::$app->session->setFlash('success','Votre commande a bien été annulée.') ;
  469. }
  470. $this->redirect(Yii::$app->urlManager->createUrl(['commande/historique']));
  471. }
  472. /**
  473. * Vérifie le code saisi pour un point de vente.
  474. *
  475. * @param integer $id_point_vente
  476. * @param string $code
  477. * @return boolean
  478. */
  479. public function actionVerifCodePointVente($id_point_vente, $code)
  480. {
  481. $point_vente = PointVente::findOne($id_point_vente);
  482. if ($point_vente) {
  483. if ($point_vente->verifCode($code)) {
  484. return true;
  485. }
  486. }
  487. return false;
  488. }
  489. }