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.

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