Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

496 linhas
19KB

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