Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

336 lines
12KB

  1. <?php
  2. namespace frontend\controllers;
  3. use common\models\ProductionProduit;
  4. use common\models\CommandeProduit;
  5. use Yii;
  6. use yii\filters\AccessControl;
  7. use common\models\Commande;
  8. use common\models\PointVente;
  9. use common\models\Production;
  10. use common\models\Produit;
  11. use common\models\Etablissement;
  12. use common\helpers\Departements;
  13. use yii\helpers\Html;
  14. use frontend\models\AddEtablissementForm;
  15. use common\models\UserEtablissement;
  16. class CommandeController extends \yii\web\Controller {
  17. public function behaviors() {
  18. return [
  19. 'access' => [
  20. 'class' => AccessControl::className(),
  21. 'rules' => [
  22. [
  23. 'allow' => true,
  24. 'roles' => ['@'],
  25. ]
  26. ],
  27. ],
  28. ];
  29. }
  30. public function actionInfosProduction($date) {
  31. $production = Production::find()->where(['date' => $date])->one();
  32. if ($production) {
  33. $produits_dispos = ProductionProduit::findProduits($production->id);
  34. return json_encode([
  35. 'produits_dispos' => $produits_dispos,
  36. 'livraison' => (int) $production->livraison
  37. ]);
  38. }
  39. return json_encode([]);
  40. }
  41. public static function initForm($commande = null) {
  42. // etablissements
  43. $etablissements = Yii::$app->user->identity->getEtablissementsFavoris() ;
  44. $id_etablissement = Yii::$app->request->get('id_etablissement', 0) ;
  45. $etablissement_paiement_ok = false ;
  46. if($id_etablissement)
  47. {
  48. $etablissement = Etablissement::findOne($id_etablissement);
  49. if($etablissement->etatPaiement() == Etablissement::PAIEMENT_OK || $etablissement->etatPaiement() == Etablissement::PAIEMENT_ESSAI)
  50. {
  51. $etablissement_paiement_ok = true ;
  52. }
  53. }
  54. // points de vente
  55. $points_vente = PointVente::find()
  56. ->where(['id_etablissement'=>$id_etablissement])
  57. ->all();
  58. $arr_points_vente = $points_vente;
  59. // jours de production;
  60. if (date('H') >= 20) {
  61. $date = date('Y-m-d', strtotime(date('Y-m-d')) + 60 * 60 * 24);
  62. } else {
  63. $date = date('Y-m-d');
  64. }
  65. $jours_production = Production::find()
  66. ->where(['actif' => 1])
  67. ->andWhere('date > :date')
  68. ->andWhere(['id_etablissement'=>$id_etablissement])
  69. ->addParams([':date' => $date])
  70. ->all();
  71. $arr_jours_production = array('' => '--');
  72. foreach ($jours_production as $j)
  73. $arr_jours_production[$j->id] = date('d/m/Y', strtotime($j->date));
  74. // produits
  75. $produits = Produit::find()
  76. ->where(['actif' => 1, 'id_etablissement' => $id_etablissement])
  77. ->andWhere('vrac IS NULL OR vrac = 0')
  78. ->orderBy('order ASC')->all();
  79. $arr_produits = array();
  80. foreach ($produits as $p)
  81. $arr_produits[] = $p;
  82. // produits vrac
  83. $produits_vrac = Produit::find()->where(['actif' => 1, 'vrac' => 1])->orderBy('order ASC')->all();
  84. // produits selec
  85. $posts = Yii::$app->request->post();
  86. $produits_selec = [];
  87. if (isset($posts['Produit'])) {
  88. foreach ($posts['Produit'] as $key => $quantity) {
  89. $key = (int) str_replace('produit_', '', $key);
  90. $p = Produit::find()->where(['id' => $key])->one();
  91. if ($p && $quantity)
  92. $produits_selec[$p->id] = (int) $quantity;
  93. }
  94. }
  95. elseif (!is_null($commande)) {
  96. $produits_commande = CommandeProduit::find()->where(['id_commande' => $commande->id])->all();
  97. foreach ($produits_commande as $pc) {
  98. $produits_selec[$pc->id_produit] = (int) $pc->quantite;
  99. }
  100. }
  101. $produits_dispos = [];
  102. $production = null;
  103. if (!is_null($commande) && $commande->id_production) {
  104. $produits_dispos = ProductionProduit::findProduits($commande->id_production);
  105. $production = Production::find()->where(['id' => $commande->id_production])->one();
  106. }
  107. $commandes = Commande::find()
  108. ->where(['id_user' => Yii::$app->user->identity->id])
  109. ->all();
  110. return [
  111. 'points_vente' => $arr_points_vente,
  112. 'jours_production' => $arr_jours_production,
  113. 'produits' => $produits,
  114. 'produits_selec' => $produits_selec,
  115. 'produits_dispos' => $produits_dispos,
  116. 'production' => $production,
  117. 'commandes_en_cours' => $commandes,
  118. 'produits_vrac' => $produits_vrac,
  119. 'etablissements' => $etablissements,
  120. 'id_etablissement' => $id_etablissement,
  121. 'etablissement_paiement_ok' => $etablissement_paiement_ok,
  122. ];
  123. }
  124. public function actionIndex() {
  125. $model_form_etablissement = new AddEtablissementForm() ;
  126. if($model_form_etablissement->load(Yii::$app->request->post())
  127. && $model_form_etablissement->validate())
  128. {
  129. $model_form_etablissement->add() ;
  130. $model_form_etablissement->id_etablissement = 0 ;
  131. }
  132. // liste des etablissements
  133. $etablissements = Yii::$app->user->identity->getEtablissementsFavoris();
  134. // liste des boulangeries disponibles
  135. $arr_etablissements = Etablissement::getEtablissementsPopulateDropdown() ;
  136. $data_etablissements_dispos = $arr_etablissements['data'] ;
  137. $options_etablissements_dispos = $arr_etablissements['options'] ;
  138. // liste des commandes
  139. $commandes = Commande::find()
  140. ->with('commandeProduits', 'pointVente')
  141. ->joinWith('production','production.etablissement')
  142. ->where(['id_user' => Yii::$app->user->id])
  143. //->andWhere('production.date < '.)
  144. ->orderBy('production.date DESC')
  145. ->limit(40)
  146. ->all();
  147. // initilisation commandes
  148. foreach ($commandes as $c)
  149. $c->init();
  150. return $this->render('index', [
  151. 'commandes' => $commandes,
  152. 'commande_ok' => Yii::$app->getRequest()->get('commande_ok', false),
  153. 'annule_ok' => Yii::$app->getRequest()->get('annule_ok', false),
  154. 'pate_deja_petrie' => Yii::$app->getRequest()->get('pate_deja_petrie', false),
  155. 'etablissements' => $etablissements,
  156. 'model_form_etablissement' => $model_form_etablissement,
  157. 'data_etablissements_dispos' => $data_etablissements_dispos,
  158. 'options_etablissements_dispos' => $options_etablissements_dispos,
  159. ]);
  160. }
  161. public function actionRemoveEtablissement($id = 0)
  162. {
  163. $user_etablissement = UserEtablissement::find()
  164. ->where(['id_etablissement'=>$id, 'id_user' => Yii::$app->user->identity->id])
  165. ->one() ;
  166. $user_etablissement->delete() ;
  167. $this->redirect(['commande/index']) ;
  168. }
  169. public function actionCreate() {
  170. $commande = new Commande;
  171. $posts = Yii::$app->request->post();
  172. if ($commande->load($posts)) {
  173. $commande = Commande::find()->where('id_production = ' . $posts['Commande']['id_production'])->andWhere('id_user = ' . Yii::$app->user->id)->one();
  174. if (!$commande) {
  175. $commande = new Commande;
  176. $commande->load(Yii::$app->request->post());
  177. $commande->id_user = Yii::$app->user->id;
  178. $commande->date = date('Y-m-d H:i:s');
  179. }
  180. $this->gestionForm($commande);
  181. }
  182. return $this->render('create', array_merge(self::initForm($commande), [
  183. 'model' => $commande,
  184. ]));
  185. }
  186. public function actionUpdate($id) {
  187. $commande = Commande::find()->where(['id' => $id])->one();
  188. if ($commande && $commande->load(Yii::$app->request->post())) {
  189. $commande->date_update = date('Y-m-d H:i:s');
  190. $this->gestionForm($commande);
  191. }
  192. return $this->render('update', array_merge(self::initForm($commande), [
  193. 'model' => $commande,
  194. 'commande_introuvable' => !$commande,
  195. ]));
  196. }
  197. public function gestionForm($commande) {
  198. $posts = Yii::$app->request->post();
  199. $produits = array();
  200. $quantite_totale = 0;
  201. foreach ($posts['Produit'] as $key => $quantity) {
  202. $key = (int) str_replace('produit_', '', $key);
  203. $p = Produit::find()->where(['id' => $key])->one();
  204. $quantite_totale += $quantity;
  205. if ($p && $quantity)
  206. $produits[] = $p;
  207. }
  208. // nombre de produits
  209. $err_nb_produits = false;
  210. if (!Yii::$app->user->identity->confiance && $quantite_totale > 3) {
  211. $err_nb_produits = true;
  212. }
  213. // date
  214. $err_date = false;
  215. $pate_deja_petrie = false;
  216. if (isset($commande->id_production)) {
  217. // date de commande
  218. $production = Production::find()->where(['id' => $commande->id_production])->one();
  219. if (date('H') >= 20) {
  220. $date = date('Y-m-d', strtotime(date('Y-m-d')) + 60 * 60 * 24);
  221. } else {
  222. $date = date('Y-m-d');
  223. }
  224. if ($production->date < $date) {
  225. $err_date = true;
  226. }
  227. }
  228. if ($commande->validate() && count($produits) && !$err_nb_produits && !$err_date) {
  229. // sauvegarde de la commande
  230. $commande->save();
  231. // suppression de tous les enregistrements CommandeProduit
  232. if (!is_null($commande)) {
  233. CommandeProduit::deleteAll(['id_commande' => $commande->id]);
  234. }
  235. // produits dispos
  236. $produits_dispos = ProductionProduit::findProduits($production->id);
  237. // sauvegarde des produits
  238. foreach ($produits as $p) {
  239. // le produit doit etre dispo à la vente
  240. if (isset($produits_dispos[$p->id]) && $produits_dispos[$p->id]['actif']) {
  241. $commande_produit = new CommandeProduit();
  242. $commande_produit->id_commande = $commande->id;
  243. $commande_produit->id_produit = $p->id;
  244. $commande_produit->prix = $p->prix;
  245. $quantite_voulue = (int) $posts['Produit']['produit_' . $p->id];
  246. if ($quantite_voulue > $produits_dispos[$p->id]['quantite_restante'] && !$produits_dispos[$p->id]['vrac'])
  247. $quantite_voulue = $produits_dispos[$p->id]['quantite_restante'];
  248. $commande_produit->quantite = $quantite_voulue;
  249. $commande_produit->save();
  250. }
  251. }
  252. // redirection
  253. $this->redirect(Yii::$app->urlManager->createUrl(['commande/index', 'commande_ok' => true, 'pate_deja_petrie' => $pate_deja_petrie]));
  254. }
  255. else {
  256. if (!count($produits))
  257. Yii::$app->session->setFlash('error', "Vous n'avez choisi aucun produit");
  258. if ($err_nb_produits)
  259. Yii::$app->session->setFlash('error', "Vous ne pouvez pas commander plus de 3 produits");
  260. if ($err_date)
  261. Yii::$app->session->setFlash('error', "Vous ne pouvez pas commander pour cette date.");
  262. }
  263. }
  264. public function actionAnnuler($id) {
  265. $commande = Commande::find()->where(['id' => $id])->one();
  266. if ($commande && Yii::$app->user->id == $commande->id_user) {
  267. $commande->delete();
  268. CommandeProduit::deleteAll(['id_commande' => $commande->id]);
  269. }
  270. $this->redirect(Yii::$app->urlManager->createUrl(['commande/index', 'annule_ok' => true]));
  271. }
  272. }