Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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