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.

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