Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

CommandeController.php 21KB

6 лет назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582
  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. ->andWhere('date_delete IS NULL')
  202. ->orderBy('production.date DESC'),
  203. 'pagination' => [
  204. 'pageSize' => 10,
  205. ],
  206. ]);
  207. return $this->render('historique', [
  208. 'data_provider_commandes' => $data_provider_commandes,
  209. 'commande_ok' => Yii::$app->getRequest()->get('commande_ok', false),
  210. 'annule_ok' => Yii::$app->getRequest()->get('annule_ok', false),
  211. ]);
  212. }
  213. /**
  214. * Supprime un producteur.
  215. *
  216. * @param integer $id
  217. */
  218. public function actionRemoveEtablissement($id = 0)
  219. {
  220. $user_etablissement = UserEtablissement::find()
  221. ->where(['id_etablissement' => $id, 'id_user' => Yii::$app->user->identity->id])
  222. ->one();
  223. $user_etablissement->actif = 0;
  224. $user_etablissement->save();
  225. $this->redirect(['commande/index']);
  226. }
  227. /**
  228. * Crée une commande.
  229. *
  230. * @return mixed
  231. */
  232. public function actionCreate()
  233. {
  234. $id_etablissement = $this->getProducer()->id ;
  235. $commande = new Commande;
  236. $posts = Yii::$app->request->post();
  237. if ($id_etablissement)
  238. $this->_verifEtablissementActif($id_etablissement);
  239. if ($commande->load($posts)) {
  240. $commande = Commande::find()->where('id_production = ' . $posts['Commande']['id_production'])->andWhere('id_user = ' . Yii::$app->user->id)->one();
  241. if (!$commande) {
  242. $commande = new Commande;
  243. $commande->load(Yii::$app->request->post());
  244. $commande->id_user = Yii::$app->user->id;
  245. $commande->date = date('Y-m-d H:i:s');
  246. $commande->type = Commande::TYPE_USER;
  247. }
  248. $this->gestionForm($commande);
  249. }
  250. return $this->render('create', array_merge($this->initForm($commande), [
  251. 'model' => $commande
  252. ]));
  253. }
  254. /**
  255. * Modifie une commande.
  256. *
  257. * @param integer $id
  258. * @return mixed
  259. * @throws UserException
  260. */
  261. public function actionUpdate($id)
  262. {
  263. $commande = Commande::find()
  264. ->with('production')
  265. ->where(['id' => $id])
  266. ->one();
  267. if ($commande->getEtat() != Commande::ETAT_MODIFIABLE) {
  268. throw new UserException('Cette commande n\'est pas modifiable.');
  269. }
  270. $this->_verifEtablissementActif($commande->production->id_etablissement);
  271. if ($commande && $commande->load(Yii::$app->request->post())) {
  272. $commande->date_update = date('Y-m-d H:i:s');
  273. $this->gestionForm($commande);
  274. }
  275. return $this->render('update', array_merge($this->initForm($commande), [
  276. 'model' => $commande,
  277. 'commande_introuvable' => !$commande,
  278. ]));
  279. }
  280. /**
  281. * Vérifie si un producteur est actif.
  282. *
  283. * @param integer $id_etablissement
  284. * @throws NotFoundHttpException
  285. */
  286. public function _verifEtablissementActif($id_etablissement)
  287. {
  288. $etablissement = Etablissement::findOne($id_etablissement);
  289. if ($etablissement && !$etablissement->actif) {
  290. throw new NotFoundHttpException('Cet établissement est actuellement hors ligne.');
  291. }
  292. }
  293. /**
  294. * Traite le formulaire de création/modification de commande.
  295. *
  296. * @param Commande $commande
  297. */
  298. public function gestionForm($commande)
  299. {
  300. $posts = Yii::$app->request->post();
  301. $produits = array();
  302. $quantite_totale = 0;
  303. foreach ($posts['Produit'] as $key => $quantity) {
  304. $key = (int) str_replace('produit_', '', $key);
  305. $p = Produit::find()->where(['id' => $key])->one();
  306. $quantite_totale += $quantity;
  307. if ($p && $quantity)
  308. $produits[] = $p;
  309. }
  310. // nombre de produits
  311. $err_nb_produits = false;
  312. if (!Yii::$app->user->identity->confiance && $quantite_totale > 3) {
  313. $err_nb_produits = true;
  314. }
  315. // date
  316. $err_date = false;
  317. $pate_deja_petrie = false;
  318. if (isset($commande->id_production)) {
  319. // date de commande
  320. $production = Production::find()->where(['id' => $commande->id_production])->one();
  321. if (date('H') >= 20) {
  322. $date = date('Y-m-d', strtotime(date('Y-m-d')) + 60 * 60 * 24);
  323. } else {
  324. $date = date('Y-m-d');
  325. }
  326. if ($production->date < $date) {
  327. $err_date = true;
  328. }
  329. }
  330. // point de vente
  331. $err_point_vente = false;
  332. if (isset($production) && $production) {
  333. $ppv = ProductionPointVente::find()
  334. ->where([
  335. 'id_production' => $production->id,
  336. 'id_point_vente' => $posts['Commande']['id_point_vente']
  337. ])
  338. ->one();
  339. if (!$ppv || !$ppv->livraison) {
  340. $err_point_vente = true;
  341. }
  342. $point_vente = PointVente::findOne($posts['Commande']['id_point_vente']);
  343. if ($point_vente) {
  344. if (strlen($point_vente->code) && !$point_vente->verifCode($posts['code_point_vente_' . $point_vente->id])) {
  345. $err_point_vente = true;
  346. }
  347. } else {
  348. $err_point_vente = true;
  349. }
  350. }
  351. if ($commande->validate() && count($produits) && !$err_nb_produits && !$err_date && !$err_point_vente) {
  352. // gestion point de vente
  353. $pv = PointVente::find()
  354. ->with('pointVenteUser')
  355. ->where(['id' => $commande->id_point_vente])
  356. ->one();
  357. if ($pv && strlen($pv->getCommentaire()))
  358. $commande->commentaire_point_vente = $pv->getCommentaire();
  359. else
  360. $commande->commentaire_point_vente = '';
  361. // sauvegarde de la commande
  362. $commande->save();
  363. // ajout de l'utilisateur à l'établissement
  364. Etablissement::addUser(Yii::$app->user->identity->id, $production->id_etablissement) ;
  365. // suppression de tous les enregistrements CommandeProduit
  366. if (!is_null($commande)) {
  367. CommandeProduit::deleteAll(['id_commande' => $commande->id]);
  368. }
  369. // produits dispos
  370. $produits_dispos = ProductionProduit::findProduits($production->id);
  371. // sauvegarde des produits
  372. foreach ($produits as $p) {
  373. if (isset($produits_dispos[$p->id])) {
  374. $commande_produit = new CommandeProduit();
  375. $commande_produit->id_commande = $commande->id;
  376. $commande_produit->id_produit = $p->id;
  377. $commande_produit->prix = $p->prix;
  378. $quantite_voulue = (int) $posts['Produit']['produit_' . $p->id];
  379. if ($produits_dispos[$p->id]['quantite_max'] && $quantite_voulue > $produits_dispos[$p->id]['quantite_restante'])
  380. $quantite_voulue = $produits_dispos[$p->id]['quantite_restante'];
  381. $commande_produit->quantite = $quantite_voulue;
  382. $commande_produit->save();
  383. }
  384. }
  385. // credit pain
  386. $credit_pain = isset($posts['credit_pain']) && $posts['credit_pain'];
  387. if ($credit_pain && ($pv->credit_pain || $commande->getMontantPaye())) {
  388. $commande = Commande::find()
  389. ->with('commandeProduits')
  390. ->where(['id' => $commande->id])
  391. ->one();
  392. $commande->init();
  393. $montant_paye = $commande->getMontantPaye();
  394. // à payer
  395. if ($commande->getStatutPaiement() == Commande::STATUT_IMPAYEE) {
  396. $montant_payer = $commande->montant - $montant_paye;
  397. $credit = Yii::$app->user->identity->getCredit($production->id_etablissement);
  398. if ($montant_payer > $credit) {
  399. $montant_payer = $credit;
  400. }
  401. if ($montant_payer > 0) {
  402. $commande->creditHistorique(
  403. CreditHistorique::TYPE_PAIEMENT,
  404. $montant_payer,
  405. $production->id_etablissement,
  406. Yii::$app->user->identity->id,
  407. Yii::$app->user->identity->id
  408. );
  409. }
  410. }
  411. // surplus à rembourser
  412. elseif ($commande->getStatutPaiement() == Commande::STATUT_SURPLUS) {
  413. $montant_rembourser = $montant_paye - $commande->montant;
  414. $commande->creditHistorique(
  415. CreditHistorique::TYPE_REMBOURSEMENT,
  416. $montant_rembourser,
  417. $production->id_etablissement,
  418. Yii::$app->user->identity->id,
  419. Yii::$app->user->identity->id
  420. );
  421. }
  422. }
  423. // redirection
  424. $this->redirect(Yii::$app->urlManager->createUrl(['commande/historique', 'commande_ok' => true, 'pate_deja_petrie' => $pate_deja_petrie]));
  425. } else {
  426. if (!count($produits))
  427. Yii::$app->session->setFlash('error', "Vous n'avez choisi aucun produit");
  428. if ($err_nb_produits)
  429. Yii::$app->session->setFlash('error', "Vous ne pouvez pas commander plus de 3 produits");
  430. if ($err_date)
  431. Yii::$app->session->setFlash('error', "Vous ne pouvez pas commander pour cette date.");
  432. if ($err_point_vente)
  433. Yii::$app->session->setFlash('error', "Point de vente invalide.");
  434. }
  435. }
  436. /**
  437. * Annule une commande.
  438. *
  439. * @param integer $id
  440. * @throws \yii\web\NotFoundHttpException
  441. * @throws UserException
  442. */
  443. public function actionAnnuler($id)
  444. {
  445. $commande = Commande::find()
  446. ->with('production', 'creditHistorique', 'commandeProduits')
  447. ->where(['id' => $id])
  448. ->one();
  449. if(!$commande)
  450. throw new \yii\web\NotFoundHttpException('Commande introuvable');
  451. if ($commande->getEtat() != Commande::ETAT_MODIFIABLE) {
  452. throw new UserException('Vous ne pouvez plus annuler cette commande.');
  453. }
  454. $commande->init();
  455. if ($commande && Yii::$app->user->id == $commande->id_user) {
  456. // remboursement
  457. if ($commande->getMontantPaye()) {
  458. $commande->creditHistorique(
  459. CreditHistorique::TYPE_REMBOURSEMENT,
  460. $commande->getMontantPaye(),
  461. $commande->production->id_etablissement,
  462. Yii::$app->user->identity->id,
  463. Yii::$app->user->identity->id
  464. );
  465. }
  466. // delete
  467. $commande->date_delete = date('Y-m-d H:i:s');
  468. $commande->save() ;
  469. Yii::$app->session->setFlash('success','Votre commande a bien été annulée.') ;
  470. }
  471. $this->redirect(Yii::$app->urlManager->createUrl(['commande/historique']));
  472. }
  473. /**
  474. * Vérifie le code saisi pour un point de vente.
  475. *
  476. * @param integer $id_point_vente
  477. * @param string $code
  478. * @return boolean
  479. */
  480. public function actionVerifCodePointVente($id_point_vente, $code)
  481. {
  482. $point_vente = PointVente::findOne($id_point_vente);
  483. if ($point_vente) {
  484. if ($point_vente->verifCode($code)) {
  485. return true;
  486. }
  487. }
  488. return false;
  489. }
  490. }