Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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