Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

325 rindas
11KB

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