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.

535 lines
19KB

  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. use common\models\CreditHistorique ;
  17. use yii\web\NotFoundHttpException ;
  18. use common\models\ProductionPointVente ;
  19. use yii\base\UserException ;
  20. class CommandeController extends \yii\web\Controller {
  21. public function behaviors() {
  22. return [
  23. 'access' => [
  24. 'class' => AccessControl::className(),
  25. 'rules' => [
  26. [
  27. 'allow' => true,
  28. 'roles' => ['@'],
  29. ]
  30. ],
  31. ],
  32. ];
  33. }
  34. public function actionInfosProduction($id_production) {
  35. $production = Production::findOne($id_production);
  36. if ($production) {
  37. $arr = [] ;
  38. $produits_dispos = ProductionProduit::findProduits($production->id);
  39. $arr['produits_dispos'] = $produits_dispos ;
  40. $points_vente = PointVente::find()
  41. ->joinWith(['productionPointVente'=> function($q) use ($production) {
  42. $q->where(['id_production' => $production->id]) ;
  43. } ])
  44. ->where([
  45. 'id_etablissement' => $production->id_etablissement,
  46. ])
  47. ->all();
  48. $arr['points_vente'] = [] ;
  49. foreach($points_vente as $pv)
  50. {
  51. if(isset($pv->productionPointVente) &&
  52. isset($pv->productionPointVente[0]))
  53. {
  54. $arr['points_vente'][$pv->id] = $pv->productionPointVente[0]->livraison ;
  55. }
  56. else {
  57. $arr['points_vente'][$pv->id] = false ;
  58. }
  59. }
  60. return json_encode($arr);
  61. }
  62. return json_encode([]);
  63. }
  64. public static function initForm($commande = null) {
  65. // etablissements
  66. $etablissements = Yii::$app->user->identity->getEtablissementsFavoris() ;
  67. $id_etablissement = Yii::$app->request->get('id_etablissement', 0) ;
  68. $etablissement_paiement_ok = false ;
  69. if($id_etablissement)
  70. {
  71. $etablissement = Etablissement::findOne($id_etablissement);
  72. if($etablissement->etatPaiement() == Etablissement::PAIEMENT_OK || $etablissement->etatPaiement() == Etablissement::PAIEMENT_ESSAI)
  73. {
  74. $etablissement_paiement_ok = true ;
  75. }
  76. }
  77. // points de vente
  78. $points_vente = PointVente::find()
  79. ->with('pointVenteUser')
  80. ->where(['id_etablissement'=>$id_etablissement])
  81. ->andWhere('acces_restreint = 0 OR (acces_restreint = 1 AND (SELECT COUNT(*) FROM point_vente_user WHERE point_vente.id = point_vente_user.id_point_vente AND point_vente_user.id_user = :id_user) > 0)')
  82. ->params([':id_user' => Yii::$app->user->identity->id])
  83. ->all();
  84. $arr_points_vente = $points_vente;
  85. // jours de production
  86. $heure_limite = 20 ;
  87. $date = date('Y-m-d') ;
  88. if(isset($etablissement))
  89. {
  90. $heure_limite = $etablissement->heure_limite_commande ;
  91. if (date('H') >= $heure_limite) {
  92. $date = date('Y-m-d', strtotime(date('Y-m-d')) + ($etablissement->delai_commande)*(24*60*60) );
  93. } else {
  94. $date = date('Y-m-d', strtotime(date('Y-m-d')) + ($etablissement->delai_commande - 1)*(24*60*60));
  95. }
  96. }
  97. $jours_production = Production::find()
  98. ->where(['actif' => 1])
  99. ->andWhere('date > :date')
  100. ->andWhere(['id_etablissement'=>$id_etablissement])
  101. ->addParams([':date' => $date])
  102. ->all();
  103. $arr_jours_production = array('' => '--');
  104. foreach ($jours_production as $j)
  105. $arr_jours_production[$j->id] = date('d/m/Y', strtotime($j->date));
  106. // produits
  107. $produits = Produit::find()
  108. ->leftJoin('production_produit', 'produit.id = production_produit.id_produit')
  109. ->where(['produit.actif' => 1, 'id_etablissement' => $id_etablissement])
  110. ->andWhere('produit.vrac IS NULL OR produit.vrac = 0')
  111. ->orderBy('produit.order ASC')->all();
  112. $arr_produits = array();
  113. foreach ($produits as $p)
  114. $arr_produits[] = $p;
  115. // produits vrac
  116. $produits_vrac = Produit::find()->where(['actif' => 1, 'vrac' => 1])->orderBy('order ASC')->all();
  117. // produits selec
  118. $posts = Yii::$app->request->post();
  119. $produits_selec = [];
  120. if (isset($posts['Produit'])) {
  121. foreach ($posts['Produit'] as $key => $quantity) {
  122. $key = (int) str_replace('produit_', '', $key);
  123. $p = Produit::find()->where(['id' => $key])->one();
  124. if ($p && $quantity)
  125. $produits_selec[$p->id] = (int) $quantity;
  126. }
  127. }
  128. elseif (!is_null($commande)) {
  129. $produits_commande = CommandeProduit::find()->where(['id_commande' => $commande->id])->all();
  130. foreach ($produits_commande as $pc) {
  131. $produits_selec[$pc->id_produit] = (int) $pc->quantite;
  132. }
  133. }
  134. $produits_dispos = [];
  135. $production = null;
  136. if (!is_null($commande) && $commande->id_production) {
  137. $produits_dispos = ProductionProduit::findProduits($commande->id_production);
  138. $production = Production::find()->where(['id' => $commande->id_production])->one();
  139. }
  140. $commandes = Commande::find()
  141. ->where(['id_user' => Yii::$app->user->identity->id])
  142. ->all();
  143. if($id_etablissement)
  144. {
  145. $user_etablissement = UserEtablissement::find()
  146. ->where([
  147. 'id_etablissement' => $id_etablissement,
  148. 'id_user' => Yii::$app->user->identity->id
  149. ])
  150. ->one() ;
  151. $credit = $user_etablissement->credit ;
  152. }
  153. else {
  154. $credit = 0 ;
  155. }
  156. return [
  157. 'points_vente' => $arr_points_vente,
  158. 'jours_production' => $arr_jours_production,
  159. 'produits' => $produits,
  160. 'produits_selec' => $produits_selec,
  161. 'produits_dispos' => $produits_dispos,
  162. 'production' => $production,
  163. 'commandes_en_cours' => $commandes,
  164. 'produits_vrac' => $produits_vrac,
  165. 'etablissements' => $etablissements,
  166. 'id_etablissement' => $id_etablissement,
  167. 'etablissement_paiement_ok' => $etablissement_paiement_ok,
  168. 'credit' => $credit
  169. ];
  170. }
  171. public function actionIndex() {
  172. $model_form_etablissement = new AddEtablissementForm() ;
  173. if($model_form_etablissement->load(Yii::$app->request->post())
  174. && $model_form_etablissement->validate())
  175. {
  176. $model_form_etablissement->add() ;
  177. $model_form_etablissement->code = '' ;
  178. }
  179. // liste des etablissements
  180. $etablissements = Yii::$app->user->identity->getEtablissementsFavoris();
  181. // liste des boulangeries disponibles
  182. $arr_etablissements = Etablissement::getEtablissementsPopulateDropdown() ;
  183. $data_etablissements_dispos = $arr_etablissements['data'] ;
  184. $options_etablissements_dispos = $arr_etablissements['options'] ;
  185. // liste des commandes
  186. $commandes = Commande::find()
  187. ->with('commandeProduits', 'pointVente', 'creditHistorique')
  188. ->joinWith('production','production.etablissement')
  189. ->where(['id_user' => Yii::$app->user->id])
  190. //->andWhere('production.date < '.)
  191. ->orderBy('production.date DESC')
  192. ->limit(40)
  193. ->all();
  194. // initilisation commandes
  195. foreach ($commandes as $c)
  196. $c->init();
  197. return $this->render('index', [
  198. 'commandes' => $commandes,
  199. 'commande_ok' => Yii::$app->getRequest()->get('commande_ok', false),
  200. 'annule_ok' => Yii::$app->getRequest()->get('annule_ok', false),
  201. 'pate_deja_petrie' => Yii::$app->getRequest()->get('pate_deja_petrie', false),
  202. 'etablissements' => $etablissements,
  203. 'model_form_etablissement' => $model_form_etablissement,
  204. 'data_etablissements_dispos' => $data_etablissements_dispos,
  205. 'options_etablissements_dispos' => $options_etablissements_dispos,
  206. ]);
  207. }
  208. public function actionRemoveEtablissement($id = 0)
  209. {
  210. $user_etablissement = UserEtablissement::find()
  211. ->where(['id_etablissement'=>$id, 'id_user' => Yii::$app->user->identity->id])
  212. ->one() ;
  213. $user_etablissement->actif = 0 ;
  214. $user_etablissement->save() ;
  215. $this->redirect(['commande/index']) ;
  216. }
  217. public function actionCreate($id_etablissement = 0) {
  218. $commande = new Commande;
  219. $posts = Yii::$app->request->post();
  220. if($id_etablissement)
  221. $this->_verifEtablissementActif($id_etablissement) ;
  222. if ($commande->load($posts)) {
  223. $commande = Commande::find()->where('id_production = ' . $posts['Commande']['id_production'])->andWhere('id_user = ' . Yii::$app->user->id)->one();
  224. if (!$commande) {
  225. $commande = new Commande;
  226. $commande->load(Yii::$app->request->post());
  227. $commande->id_user = Yii::$app->user->id;
  228. $commande->date = date('Y-m-d H:i:s');
  229. $commande->type = Commande::TYPE_USER ;
  230. }
  231. $this->gestionForm($commande);
  232. }
  233. return $this->render('create', array_merge(self::initForm($commande), [
  234. 'model' => $commande,
  235. ]));
  236. }
  237. public function actionUpdate($id) {
  238. $commande = Commande::find()
  239. ->with('production')
  240. ->where(['id' => $id])
  241. ->one();
  242. if($commande->getEtat() != Commande::ETAT_MODIFIABLE)
  243. {
  244. throw new UserException('Cette commande n\'est pas modifiable.') ;
  245. }
  246. $this->_verifEtablissementActif($commande->production->id_etablissement) ;
  247. if ($commande && $commande->load(Yii::$app->request->post()))
  248. {
  249. $commande->date_update = date('Y-m-d H:i:s');
  250. $this->gestionForm($commande);
  251. }
  252. return $this->render('update', array_merge(self::initForm($commande), [
  253. 'model' => $commande,
  254. 'commande_introuvable' => !$commande,
  255. ]));
  256. }
  257. public function _verifEtablissementActif($id_etablissement)
  258. {
  259. $etablissement = Etablissement::findOne($id_etablissement) ;
  260. if($etablissement && !$etablissement->actif)
  261. {
  262. throw new NotFoundHttpException('Cet établissement est actuellement hors ligne.');
  263. }
  264. }
  265. public function gestionForm($commande) {
  266. $posts = Yii::$app->request->post();
  267. $produits = array();
  268. $quantite_totale = 0;
  269. foreach ($posts['Produit'] as $key => $quantity) {
  270. $key = (int) str_replace('produit_', '', $key);
  271. $p = Produit::find()->where(['id' => $key])->one();
  272. $quantite_totale += $quantity;
  273. if ($p && $quantity)
  274. $produits[] = $p;
  275. }
  276. // nombre de produits
  277. $err_nb_produits = false;
  278. if (!Yii::$app->user->identity->confiance && $quantite_totale > 3) {
  279. $err_nb_produits = true;
  280. }
  281. // date
  282. $err_date = false;
  283. $pate_deja_petrie = false;
  284. if (isset($commande->id_production)) {
  285. // date de commande
  286. $production = Production::find()->where(['id' => $commande->id_production])->one();
  287. if (date('H') >= 20) {
  288. $date = date('Y-m-d', strtotime(date('Y-m-d')) + 60 * 60 * 24);
  289. } else {
  290. $date = date('Y-m-d');
  291. }
  292. if ($production->date < $date) {
  293. $err_date = true;
  294. }
  295. }
  296. // point de vente
  297. $err_point_vente = false ;
  298. if(isset($production) && $production)
  299. {
  300. $ppv = ProductionPointVente::find()
  301. ->where([
  302. 'id_production' => $production->id,
  303. 'id_point_vente' => $posts['Commande']['id_point_vente']
  304. ])
  305. ->one() ;
  306. if(!$ppv || !$ppv->livraison)
  307. {
  308. $err_point_vente = true ;
  309. }
  310. $point_vente = PointVente::findOne($posts['Commande']['id_point_vente']) ;
  311. if($point_vente)
  312. {
  313. if(strlen($point_vente->code) && !$point_vente->verifCode($posts['code_point_vente_'.$point_vente->id]))
  314. {
  315. $err_point_vente = true ;
  316. }
  317. }
  318. else {
  319. $err_point_vente = true ;
  320. }
  321. }
  322. if ($commande->validate() && count($produits) && !$err_nb_produits && !$err_date && !$err_point_vente) {
  323. // gestion point de vente
  324. $pv = PointVente::find()
  325. ->with('pointVenteUser')
  326. ->where(['id' => $commande->id_point_vente])
  327. ->one() ;
  328. if($pv && strlen($pv->getCommentaire()))
  329. $commande->commentaire_point_vente = $pv->getCommentaire() ;
  330. else
  331. $commande->commentaire_point_vente = '' ;
  332. // sauvegarde de la commande
  333. $commande->save();
  334. // suppression de tous les enregistrements CommandeProduit
  335. if (!is_null($commande)) {
  336. CommandeProduit::deleteAll(['id_commande' => $commande->id]);
  337. }
  338. // produits dispos
  339. $produits_dispos = ProductionProduit::findProduits($production->id);
  340. // sauvegarde des produits
  341. foreach ($produits as $p) {
  342. // le produit doit etre dispo à la vente
  343. if (isset($produits_dispos[$p->id]) && $produits_dispos[$p->id]['actif']) {
  344. $commande_produit = new CommandeProduit();
  345. $commande_produit->id_commande = $commande->id;
  346. $commande_produit->id_produit = $p->id;
  347. $commande_produit->prix = $p->prix;
  348. $quantite_voulue = (int) $posts['Produit']['produit_' . $p->id];
  349. if ($produits_dispos[$p->id]['quantite_max'] && $quantite_voulue > $produits_dispos[$p->id]['quantite_restante'])
  350. $quantite_voulue = $produits_dispos[$p->id]['quantite_restante'];
  351. $commande_produit->quantite = $quantite_voulue;
  352. $commande_produit->save();
  353. }
  354. }
  355. // credit pain
  356. $credit_pain = isset($posts['credit_pain']) && $posts['credit_pain'] ;
  357. if($credit_pain && ($pv->credit_pain || $commande->getMontantPaye()))
  358. {
  359. $commande = Commande::find()
  360. ->with('commandeProduits')
  361. ->where(['id' => $commande->id])
  362. ->one() ;
  363. $commande->init() ;
  364. $montant_paye = $commande->getMontantPaye() ;
  365. // à payer
  366. if($commande->getStatutPaiement() == Commande::STATUT_IMPAYEE)
  367. {
  368. $montant_payer = $commande->montant - $montant_paye ;
  369. $credit = Yii::$app->user->identity->getCredit($production->id_etablissement) ;
  370. if($montant_payer > $credit)
  371. {
  372. $montant_payer = $credit ;
  373. }
  374. $commande->creditHistorique(
  375. CreditHistorique::TYPE_PAIEMENT,
  376. $montant_payer,
  377. $production->id_etablissement,
  378. Yii::$app->user->identity->id
  379. ) ;
  380. }
  381. // surplus à rembourser
  382. elseif($commande->getStatutPaiement() == Commande::STATUT_SURPLUS)
  383. {
  384. $montant_rembourser = $montant_paye - $commande->montant ;
  385. $commande->creditHistorique(
  386. CreditHistorique::TYPE_REMBOURSEMENT,
  387. $montant_rembourser,
  388. $production->id_etablissement,
  389. Yii::$app->user->identity->id
  390. ) ;
  391. }
  392. }
  393. // redirection
  394. $this->redirect(Yii::$app->urlManager->createUrl(['commande/index', 'commande_ok' => true, 'pate_deja_petrie' => $pate_deja_petrie]));
  395. }
  396. else {
  397. if (!count($produits))
  398. Yii::$app->session->setFlash('error', "Vous n'avez choisi aucun produit");
  399. if ($err_nb_produits)
  400. Yii::$app->session->setFlash('error', "Vous ne pouvez pas commander plus de 3 produits");
  401. if ($err_date)
  402. Yii::$app->session->setFlash('error', "Vous ne pouvez pas commander pour cette date.");
  403. if($err_point_vente)
  404. Yii::$app->session->setFlash('error', "Point de vente invalide.");
  405. }
  406. }
  407. public function actionAnnuler($id) {
  408. $commande = Commande::find()
  409. ->with('production','creditHistorique','commandeProduits')
  410. ->where(['id' => $id])
  411. ->one();
  412. if($commande->getEtat() != Commande::ETAT_MODIFIABLE)
  413. {
  414. throw new UserException('Vous ne pouvez plus annuler cette commande.') ;
  415. }
  416. $commande->init() ;
  417. if ($commande && Yii::$app->user->id == $commande->id_user) {
  418. // remboursement
  419. if($commande->getMontantPaye())
  420. {
  421. $commande->creditHistorique(
  422. CreditHistorique::TYPE_REMBOURSEMENT,
  423. $commande->getMontantPaye(),
  424. $commande->production->id_etablissement,
  425. Yii::$app->user->identity->id
  426. ) ;
  427. }
  428. // delete
  429. $commande->delete();
  430. CommandeProduit::deleteAll(['id_commande' => $commande->id]);
  431. }
  432. $this->redirect(Yii::$app->urlManager->createUrl(['commande/index', 'annule_ok' => true]));
  433. }
  434. public function actionVerifCodePointVente($id_point_vente, $code)
  435. {
  436. $point_vente = PointVente::findOne($id_point_vente) ;
  437. if($point_vente)
  438. {
  439. if($point_vente->verifCode($code))
  440. {
  441. return true ;
  442. }
  443. }
  444. return false ;
  445. }
  446. }