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.

492 lines
18KB

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