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

493 Zeilen
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. ->andWhere('date_delete IS NULL')
  164. ->orderBy('production.date DESC'),
  165. 'pagination' => [
  166. 'pageSize' => 10,
  167. ],
  168. ]);
  169. return $this->render('historique', [
  170. 'data_provider_commandes' => $data_provider_commandes,
  171. 'commande_ok' => Yii::$app->getRequest()->get('commande_ok', false),
  172. 'annule_ok' => Yii::$app->getRequest()->get('annule_ok', false),
  173. ]);
  174. }
  175. public function actionRemoveEtablissement($id = 0) {
  176. $user_etablissement = UserEtablissement::find()
  177. ->where(['id_etablissement' => $id, 'id_user' => Yii::$app->user->identity->id])
  178. ->one();
  179. $user_etablissement->actif = 0;
  180. $user_etablissement->save();
  181. $this->redirect(['commande/index']);
  182. }
  183. public function actionCreate() {
  184. $id_etablissement = $this->getProducer()->id ;
  185. $commande = new Commande;
  186. $posts = Yii::$app->request->post();
  187. if ($id_etablissement)
  188. $this->_verifEtablissementActif($id_etablissement);
  189. if ($commande->load($posts)) {
  190. $commande = Commande::find()->where('id_production = ' . $posts['Commande']['id_production'])->andWhere('id_user = ' . Yii::$app->user->id)->one();
  191. if (!$commande) {
  192. $commande = new Commande;
  193. $commande->load(Yii::$app->request->post());
  194. $commande->id_user = Yii::$app->user->id;
  195. $commande->date = date('Y-m-d H:i:s');
  196. $commande->type = Commande::TYPE_USER;
  197. }
  198. $this->gestionForm($commande);
  199. }
  200. return $this->render('create', array_merge($this->initForm($commande), [
  201. 'model' => $commande
  202. ]));
  203. }
  204. public function actionUpdate($id) {
  205. $commande = Commande::find()
  206. ->with('production')
  207. ->where(['id' => $id])
  208. ->one();
  209. if ($commande->getEtat() != Commande::ETAT_MODIFIABLE) {
  210. throw new UserException('Cette commande n\'est pas modifiable.');
  211. }
  212. $this->_verifEtablissementActif($commande->production->id_etablissement);
  213. if ($commande && $commande->load(Yii::$app->request->post())) {
  214. $commande->date_update = date('Y-m-d H:i:s');
  215. $this->gestionForm($commande);
  216. }
  217. return $this->render('update', array_merge($this->initForm($commande), [
  218. 'model' => $commande,
  219. 'commande_introuvable' => !$commande,
  220. ]));
  221. }
  222. public function _verifEtablissementActif($id_etablissement) {
  223. $etablissement = Etablissement::findOne($id_etablissement);
  224. if ($etablissement && !$etablissement->actif) {
  225. throw new NotFoundHttpException('Cet établissement est actuellement hors ligne.');
  226. }
  227. }
  228. public function gestionForm($commande) {
  229. $posts = Yii::$app->request->post();
  230. $produits = array();
  231. $quantite_totale = 0;
  232. foreach ($posts['Produit'] as $key => $quantity) {
  233. $key = (int) str_replace('produit_', '', $key);
  234. $p = Produit::find()->where(['id' => $key])->one();
  235. $quantite_totale += $quantity;
  236. if ($p && $quantity)
  237. $produits[] = $p;
  238. }
  239. // nombre de produits
  240. $err_nb_produits = false;
  241. if (!Yii::$app->user->identity->confiance && $quantite_totale > 3) {
  242. $err_nb_produits = true;
  243. }
  244. // date
  245. $err_date = false;
  246. $pate_deja_petrie = false;
  247. if (isset($commande->id_production)) {
  248. // date de commande
  249. $production = Production::find()->where(['id' => $commande->id_production])->one();
  250. if (date('H') >= 20) {
  251. $date = date('Y-m-d', strtotime(date('Y-m-d')) + 60 * 60 * 24);
  252. } else {
  253. $date = date('Y-m-d');
  254. }
  255. if ($production->date < $date) {
  256. $err_date = true;
  257. }
  258. }
  259. // point de vente
  260. $err_point_vente = false;
  261. if (isset($production) && $production) {
  262. $ppv = ProductionPointVente::find()
  263. ->where([
  264. 'id_production' => $production->id,
  265. 'id_point_vente' => $posts['Commande']['id_point_vente']
  266. ])
  267. ->one();
  268. if (!$ppv || !$ppv->livraison) {
  269. $err_point_vente = true;
  270. }
  271. $point_vente = PointVente::findOne($posts['Commande']['id_point_vente']);
  272. if ($point_vente) {
  273. if (strlen($point_vente->code) && !$point_vente->verifCode($posts['code_point_vente_' . $point_vente->id])) {
  274. $err_point_vente = true;
  275. }
  276. } else {
  277. $err_point_vente = true;
  278. }
  279. }
  280. if ($commande->validate() && count($produits) && !$err_nb_produits && !$err_date && !$err_point_vente) {
  281. // gestion point de vente
  282. $pv = PointVente::find()
  283. ->with('pointVenteUser')
  284. ->where(['id' => $commande->id_point_vente])
  285. ->one();
  286. if ($pv && strlen($pv->getCommentaire()))
  287. $commande->commentaire_point_vente = $pv->getCommentaire();
  288. else
  289. $commande->commentaire_point_vente = '';
  290. // sauvegarde de la commande
  291. $commande->save();
  292. // ajout de l'utilisateur à l'établissement
  293. Etablissement::addUser(Yii::$app->user->identity->id, $production->id_etablissement) ;
  294. // suppression de tous les enregistrements CommandeProduit
  295. if (!is_null($commande)) {
  296. CommandeProduit::deleteAll(['id_commande' => $commande->id]);
  297. }
  298. // produits dispos
  299. $produits_dispos = ProductionProduit::findProduits($production->id);
  300. // sauvegarde des produits
  301. foreach ($produits as $p) {
  302. // le produit doit etre dispo à la vente
  303. if (isset($produits_dispos[$p->id]) && $produits_dispos[$p->id]['actif']) {
  304. $commande_produit = new CommandeProduit();
  305. $commande_produit->id_commande = $commande->id;
  306. $commande_produit->id_produit = $p->id;
  307. $commande_produit->prix = $p->prix;
  308. $quantite_voulue = (int) $posts['Produit']['produit_' . $p->id];
  309. if ($produits_dispos[$p->id]['quantite_max'] && $quantite_voulue > $produits_dispos[$p->id]['quantite_restante'])
  310. $quantite_voulue = $produits_dispos[$p->id]['quantite_restante'];
  311. $commande_produit->quantite = $quantite_voulue;
  312. $commande_produit->save();
  313. }
  314. }
  315. // credit pain
  316. $credit_pain = isset($posts['credit_pain']) && $posts['credit_pain'];
  317. if ($credit_pain && ($pv->credit_pain || $commande->getMontantPaye())) {
  318. $commande = Commande::find()
  319. ->with('commandeProduits')
  320. ->where(['id' => $commande->id])
  321. ->one();
  322. $commande->init();
  323. $montant_paye = $commande->getMontantPaye();
  324. // à payer
  325. if ($commande->getStatutPaiement() == Commande::STATUT_IMPAYEE) {
  326. $montant_payer = $commande->montant - $montant_paye;
  327. $credit = Yii::$app->user->identity->getCredit($production->id_etablissement);
  328. if ($montant_payer > $credit) {
  329. $montant_payer = $credit;
  330. }
  331. if ($montant_payer > 0) {
  332. $commande->creditHistorique(
  333. CreditHistorique::TYPE_PAIEMENT,
  334. $montant_payer,
  335. $production->id_etablissement,
  336. Yii::$app->user->identity->id,
  337. Yii::$app->user->identity->id
  338. );
  339. }
  340. }
  341. // surplus à rembourser
  342. elseif ($commande->getStatutPaiement() == Commande::STATUT_SURPLUS) {
  343. $montant_rembourser = $montant_paye - $commande->montant;
  344. $commande->creditHistorique(
  345. CreditHistorique::TYPE_REMBOURSEMENT,
  346. $montant_rembourser,
  347. $production->id_etablissement,
  348. Yii::$app->user->identity->id,
  349. Yii::$app->user->identity->id
  350. );
  351. }
  352. }
  353. // redirection
  354. $this->redirect(Yii::$app->urlManager->createUrl(['commande/historique', 'commande_ok' => true, 'pate_deja_petrie' => $pate_deja_petrie]));
  355. } else {
  356. if (!count($produits))
  357. Yii::$app->session->setFlash('error', "Vous n'avez choisi aucun produit");
  358. if ($err_nb_produits)
  359. Yii::$app->session->setFlash('error', "Vous ne pouvez pas commander plus de 3 produits");
  360. if ($err_date)
  361. Yii::$app->session->setFlash('error', "Vous ne pouvez pas commander pour cette date.");
  362. if ($err_point_vente)
  363. Yii::$app->session->setFlash('error', "Point de vente invalide.");
  364. }
  365. }
  366. public function actionAnnuler($id) {
  367. $commande = Commande::find()
  368. ->with('production', 'creditHistorique', 'commandeProduits')
  369. ->where(['id' => $id])
  370. ->one();
  371. if(!$commande)
  372. throw new \yii\web\NotFoundHttpException('Commande introuvable');
  373. if ($commande->getEtat() != Commande::ETAT_MODIFIABLE) {
  374. throw new UserException('Vous ne pouvez plus annuler cette commande.');
  375. }
  376. $commande->init();
  377. if ($commande && Yii::$app->user->id == $commande->id_user) {
  378. // remboursement
  379. if ($commande->getMontantPaye()) {
  380. $commande->creditHistorique(
  381. CreditHistorique::TYPE_REMBOURSEMENT,
  382. $commande->getMontantPaye(),
  383. $commande->production->id_etablissement,
  384. Yii::$app->user->identity->id,
  385. Yii::$app->user->identity->id
  386. );
  387. }
  388. // delete
  389. $commande->date_delete = date('Y-m-d H:i:s');
  390. $commande->save() ;
  391. Yii::$app->session->setFlash('success','Votre commande a bien été annulée.') ;
  392. }
  393. $this->redirect(Yii::$app->urlManager->createUrl(['commande/historique']));
  394. }
  395. public function actionVerifCodePointVente($id_point_vente, $code) {
  396. $point_vente = PointVente::findOne($id_point_vente);
  397. if ($point_vente) {
  398. if ($point_vente->verifCode($code)) {
  399. return true;
  400. }
  401. }
  402. return false;
  403. }
  404. }