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.

583 line
20KB

  1. <?php
  2. /**
  3. Copyright La boîte à pain (2018)
  4. contact@laboiteapain.net
  5. Ce logiciel est un programme informatique servant à aider les producteurs
  6. à distribuer leur production en circuits courts.
  7. Ce logiciel est régi par la licence CeCILL soumise au droit français et
  8. respectant les principes de diffusion des logiciels libres. Vous pouvez
  9. utiliser, modifier et/ou redistribuer ce programme sous les conditions
  10. de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  11. sur le site "http://www.cecill.info".
  12. En contrepartie de l'accessibilité au code source et des droits de copie,
  13. de modification et de redistribution accordés par cette licence, il n'est
  14. offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  15. seule une responsabilité restreinte pèse sur l'auteur du programme, le
  16. titulaire des droits patrimoniaux et les concédants successifs.
  17. A cet égard l'attention de l'utilisateur est attirée sur les risques
  18. associés au chargement, à l'utilisation, à la modification et/ou au
  19. développement et à la reproduction du logiciel par l'utilisateur étant
  20. donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  21. manipuler et qui le réserve donc à des développeurs et des professionnels
  22. avertis possédant des connaissances informatiques approfondies. Les
  23. utilisateurs sont donc invités à charger et tester l'adéquation du
  24. logiciel à leurs besoins dans des conditions permettant d'assurer la
  25. sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  26. à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  27. Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  28. pris connaissance de la licence CeCILL, et que vous en avez accepté les
  29. termes.
  30. */
  31. namespace producer\controllers;
  32. use common\models\ProductDistribution ;
  33. class OrderController extends ProducerBaseController
  34. {
  35. public function behaviors()
  36. {
  37. return [
  38. 'access' => [
  39. 'class' => AccessControl::className(),
  40. 'rules' => [
  41. [
  42. 'allow' => true,
  43. 'roles' => ['@'],
  44. ]
  45. ],
  46. ],
  47. ];
  48. }
  49. public function actionOrder()
  50. {
  51. return $this->render('order') ;
  52. }
  53. /**
  54. * Retourne au format JSON toutes les informations relatives à une
  55. * production donnée.
  56. *
  57. * @param integer $idDistribution
  58. * @return mixed
  59. */
  60. public function actionInfosDistribution($idDistribution)
  61. {
  62. $distribution = Distribution::searchOne([
  63. 'id' => $idDistribution
  64. ]);
  65. if ($distribution) {
  66. $arr = [];
  67. $productsArray = ProductDistribution::searchByDistribution($distribution->id) ;
  68. $data['products'] = $productsArray;
  69. $pointSaleArray = PointSale::find()
  70. ->joinWith(['pointSaleDistribution' => function($q) use ($distribution) {
  71. $q->where(['id_distribution' => $distribution->id]);
  72. }])
  73. ->where([
  74. 'id_producer' => $distribution->id_producer,
  75. ])
  76. ->all();
  77. $data['points_sale'] = [];
  78. foreach ($pointSaleArray as $pointSale) {
  79. if (isset($pointSale->pointSaleDistribution) &&
  80. isset($pointSale->pointSaleDistribution[0])) {
  81. $data['points_sale'][$pointSale->id] = $pointSale->pointSaleDistribution[0]->delivery;
  82. } else {
  83. $data['points_sale'][$pointSale->id] = false;
  84. }
  85. }
  86. return json_encode($data);
  87. }
  88. return json_encode([]);
  89. }
  90. /**
  91. * Initialise le formulaire de création/modification de commande.
  92. *
  93. * @param Order $order
  94. * @return array
  95. */
  96. public function initForm($order = null) {
  97. // Producteurs
  98. $producersArray = Yii::$app->user->identity->getBookmarkedProducers();
  99. $idProducer = $this->getProducer()->id;
  100. // Producteur
  101. $producer = Producer::findOne($idProducer);
  102. // Points de vente
  103. $pointsSaleArray = PointSale::find()
  104. ->with('userPointSale')
  105. ->where(['id_producer' => $idProducer])
  106. ->andWhere('restricted_access = 0 OR (restricted_access = 1 AND (SELECT COUNT(*) FROM user_point_sale WHERE point_sale.id = user_point_sale.id_point_sale AND user_point_sale.id_user = :id_user) > 0)')
  107. ->params([':id_user' => User::getCurrentId()])
  108. ->all();
  109. // jours de production
  110. $deadline = 20;
  111. $date = date('Y-m-d');
  112. if (isset($producer)) {
  113. $deadline = $producer->order_deadline;
  114. if (date('H') >= $deadline) {
  115. $date = date('Y-m-d', strtotime(date('Y-m-d')) + ($producer->order_delay) * (24 * 60 * 60));
  116. } else {
  117. $date = date('Y-m-d', strtotime(date('Y-m-d')) + ($producer->order_delay - 1) * (24 * 60 * 60));
  118. }
  119. }
  120. $distributionDays = Distribution::find()
  121. ->where(['active' => 1])
  122. ->andWhere('date > :date')
  123. ->andWhere(['id_producer' => $idProducer])
  124. ->addParams([':date' => $date])
  125. ->all();
  126. $distributionDaysArray = array('' => '--');
  127. foreach ($distributionDays as $distribution) {
  128. $distributionDaysArray[$distribution->id] = date('d/m/Y', strtotime($distribution->date));
  129. }
  130. // produits
  131. $products = Product::find()
  132. ->leftJoin('product_distribution', 'product.id = product_distribution.id_product')
  133. ->where(['product.active' => 1, 'id_producer' => $idProducer])
  134. ->orderBy('product.order ASC')->all();
  135. $productsArray = [] ;
  136. foreach ($products as $p)
  137. $productsArray[] = $p;
  138. // produits selec
  139. $posts = Yii::$app->request->post();
  140. $selectedProducts = [];
  141. if (isset($posts['Product'])) {
  142. foreach ($posts['Product'] as $key => $quantity) {
  143. $key = (int) str_replace('product_', '', $key);
  144. $product = Product::find()->where(['id' => $key])->one();
  145. if ($product && $quantity)
  146. $selectedProducts[$product->id] = (int) $quantity;
  147. }
  148. }
  149. elseif (!is_null($order)) {
  150. $productOrderArray = ProductOrder::searchAll([
  151. 'id_order' => $order->id
  152. ]) ;
  153. foreach ($productOrderArray as $productOrder) {
  154. $selectedProducts[$productOrder->id_product] = (int) $productOrder->quantity;
  155. }
  156. }
  157. $availableProducts = [] ;
  158. $distribution = null;
  159. if (!is_null($order) && $order->id_distribution) {
  160. $availableProducts = ProductDistribution::searchByDistribution($order->id_distribution);
  161. $distribution = Distribution::find()->where(['id' => $order->id_distribution])->one();
  162. }
  163. $orders = Order::searchAll([
  164. 'id_user' => User::getCurrentId()
  165. ]) ;
  166. if ($idProducer) {
  167. $userProducer = UserProducer::searchOne([
  168. 'id_producer' => $idProducer,
  169. 'id_user' => User::getCurrentId()
  170. ]) ;
  171. $credit = $userProducer->credit;
  172. } else {
  173. $credit = 0;
  174. }
  175. return [
  176. 'pointsSaleArray' => $pointsSaleArray,
  177. 'distributionDaysArray' => $distributionDaysArray,
  178. 'productsArray' => $productsArray,
  179. 'selectedProducts' => $selectedProducts,
  180. 'availableProducts' => $availableProducts,
  181. 'distribution' => $distribution,
  182. 'ordersArray' => $orders,
  183. 'producersArray' => $producersArray,
  184. 'idProducer' => $idProducer,
  185. 'producer' => $producer,
  186. 'credit' => $credit
  187. ];
  188. }
  189. /**
  190. * Affiche l'historique des commandes de l'utilisateur
  191. *
  192. * @return ProducerView
  193. */
  194. public function actionHistory()
  195. {
  196. $dataProviderOrders = new ActiveDataProvider([
  197. 'query' => Order::find()
  198. ->with('productOrder', 'pointSale', 'creditHistory')
  199. ->joinWith('distribution', 'distribution.producer')
  200. ->where([
  201. 'id_user' => Yii::$app->user->id,
  202. 'distribution.id_producer' => $this->getProducer()->id
  203. ])
  204. ->orderBy('distribution.date DESC'),
  205. 'pagination' => [
  206. 'pageSize' => 10,
  207. ],
  208. ]);
  209. return $this->render('history', [
  210. 'dataProviderOrders' => $dataProviderOrders,
  211. 'orderOk' => Yii::$app->getRequest()->get('orderOk', false),
  212. 'cancelOk' => Yii::$app->getRequest()->get('cancelOk', false),
  213. ]);
  214. }
  215. /**
  216. * Supprime un producteur.
  217. *
  218. * @param integer $id
  219. */
  220. public function actionRemoveProducer($id = 0)
  221. {
  222. $userProducer = UserProducer::find()
  223. ->where(['id_producer' => $id, 'id_user' => User::getCurrentId()])
  224. ->one();
  225. $userProducer->active = 0;
  226. $userProducer->save();
  227. $this->redirect(['order/index']);
  228. }
  229. /**
  230. * Crée une commande.
  231. *
  232. * @return mixed
  233. */
  234. public function actionCreate()
  235. {
  236. $idProducer = $this->getProducer()->id ;
  237. $order = new Order;
  238. $posts = Yii::$app->request->post();
  239. if ($idProducer) {
  240. $this->_verifyProducerActive($idProducer);
  241. }
  242. if ($order->load($posts)) {
  243. $order = Order::find()
  244. ->where('id_distribution = ' . $posts['Order']['id_distribution'])
  245. ->andWhere('id_user = ' . User::getCurrentId())
  246. ->one();
  247. if (!$order) {
  248. $order = new Order;
  249. $order->load(Yii::$app->request->post());
  250. $order->id_user = User::getCurrentId();
  251. $order->date = date('Y-m-d H:i:s');
  252. $order->origin = Order::ORIGIN_USER;
  253. }
  254. $this->processForm($order);
  255. }
  256. return $this->render('create', array_merge($this->initForm($order), [
  257. 'model' => $order
  258. ]));
  259. }
  260. /**
  261. * Modifie une commande.
  262. *
  263. * @param integer $id
  264. * @return mixed
  265. * @throws UserException
  266. */
  267. public function actionUpdate($id)
  268. {
  269. $order = Order::searchOne([
  270. 'id' => $id
  271. ]) ;
  272. if ($order->getState() != Order::STATE_OPEN) {
  273. throw new UserException('Cette commande n\'est pas modifiable.');
  274. }
  275. $this->_verifyProducerActive($order->distribution->id_producer);
  276. if ($order && $order->load(Yii::$app->request->post())) {
  277. $order->date_update = date('Y-m-d H:i:s');
  278. $this->processForm($order);
  279. }
  280. return $this->render('update', array_merge($this->initForm($order), [
  281. 'model' => $order,
  282. 'orderNotfound' => !$order,
  283. ]));
  284. }
  285. /**
  286. * Vérifie si un producteur est actif.
  287. *
  288. * @param integer $idProducer
  289. * @throws NotFoundHttpException
  290. */
  291. public function _verifyProducerActive($idProducer)
  292. {
  293. $producer = Producer::findOne($idProducer);
  294. if ($producer && !$producer->active) {
  295. throw new NotFoundHttpException('Ce producteur est actuellement hors ligne.');
  296. }
  297. }
  298. /**
  299. * Traite le formulaire de création/modification de commande.
  300. *
  301. * @param Commande $order
  302. */
  303. public function processForm($order)
  304. {
  305. $posts = Yii::$app->request->post();
  306. $productsArray = [];
  307. $totalQuantity = 0;
  308. foreach ($posts['Product'] as $key => $quantity) {
  309. $key = (int) str_replace('product_', '', $key);
  310. $product = Product::find()->where(['id' => $key])->one();
  311. $totalQuantity += $quantity;
  312. if ($product && $quantity) {
  313. $productsArray[] = $product;
  314. }
  315. }
  316. // date
  317. $errorDate = false;
  318. if (isset($order->id_distribution)) {
  319. // date de commande
  320. $distribution = Distribution::find()->where(['id' => $order->id_distribution])->one();
  321. if (date('H') >= 20) {
  322. $date = date('Y-m-d', strtotime(date('Y-m-d')) + 60 * 60 * 24);
  323. } else {
  324. $date = date('Y-m-d');
  325. }
  326. if ($distribution->date < $date) {
  327. $errorDate = true;
  328. }
  329. }
  330. // point de vente
  331. $errorPointSale = false;
  332. if (isset($distribution) && $distribution) {
  333. $pointSaleDistribution = PointSaleDistribution::searchOne([
  334. 'id_distribution' => $distribution->id,
  335. 'id_point_sale' => $posts['Order']['id_point_sale']
  336. ]) ;
  337. if (!$pointSaleDistribution || !$pointSaleDistribution->delivery) {
  338. $errorPointSale = true;
  339. }
  340. $pointSale = PointSale::findOne($posts['Order']['id_point_sale']);
  341. if ($pointSale) {
  342. if (strlen($pointSale->code) && !$pointSale->validateCode($posts['code_point_sale_' . $pointSale->id])) {
  343. $errorPointSale = true;
  344. }
  345. } else {
  346. $errorPointSale = true;
  347. }
  348. }
  349. if ($order->validate() && count($productsArray) && !$errorDate && !$errorPointSale) {
  350. // gestion point de vente
  351. $pointSale = PointSale::searchOne([
  352. 'id' => $order->id_point_sale
  353. ]) ;
  354. $order->comment_point_sale = ($pointSale && strlen($pointSale->getComment())) ?
  355. $pv->getComment() : '' ;
  356. // la commande est automatiquement réactivée lors d'une modification
  357. $order->date_delete = null ;
  358. // sauvegarde de la commande
  359. $order->save();
  360. // ajout de l'utilisateur à l'établissement
  361. Producer::addUser(User::getCurrentId(), $distribution->id_producer) ;
  362. // suppression de tous les enregistrements ProductOrder
  363. if (!is_null($order)) {
  364. ProductOrder::deleteAll(['id_order' => $order->id]);
  365. }
  366. // produits dispos
  367. $availableProducts = ProductDistribution::searchByDistribution($distribution->id) ;
  368. // sauvegarde des produits
  369. foreach ($productsArray as $product) {
  370. if (isset($availableProducts[$product->id])) {
  371. $productOrder = new ProductOrder();
  372. $productOrder->id_order = $order->id;
  373. $productOrder->id_product = $product->id;
  374. $productOrder->price = $product->price;
  375. $quantity = (int) $posts['Product']['product_' . $product->id];
  376. if ($availableProducts[$product->id]['quantity_max'] && $quantity > $availableProducts[$product->id]['quantity_remaining']) {
  377. $quantity = $availableProducts[$product->id]['quantity_remaining'];
  378. }
  379. $productOrder->quantity = $quantity;
  380. $productOrder->sale_mode = Product::SALE_MODE_UNIT ;
  381. $productOrder->save();
  382. }
  383. }
  384. // credit
  385. $credit = isset($posts['credit']) && $posts['credit'];
  386. $order = Order::searchOne([
  387. 'id' => $order->id
  388. ]) ;
  389. if ($credit && ($pointSale->credit || $order->getAmount(Order::AMOUNT_PAID))) {
  390. $amountPaid = $order->getAmount(Order::AMOUNT_PAID);
  391. // à payer
  392. if ($order->getPaymentStatus() == Order::PAYMENT_UNPAID) {
  393. $amountRemaining = $order->getAmount(Order::AMOUNT_REMAINING) ;
  394. $credit = Yii::$app->user->identity->getCredit($distribution->id_producer);
  395. if ($amountRemaining > $credit) {
  396. $amountRemaining = $credit;
  397. }
  398. if ($amountRemaining > 0) {
  399. $order->saveCreditHistory(
  400. CreditHistory::TYPE_PAYMENT,
  401. $amountRemaining,
  402. $distribution->id_producer,
  403. User::getCurrentId(),
  404. User::getCurrentId()
  405. );
  406. }
  407. }
  408. // surplus à rembourser
  409. elseif ($order->getPaymentStatus() == Order::PAYMENT_SURPLUS) {
  410. $amountSurplus = $order->getAmount(Order::AMOUNT_SURPLUS) ;
  411. $order->saveCreditHistory(
  412. CreditHistory::TYPE_REFUND,
  413. $amountSurplus,
  414. $distribution->id_producer,
  415. User::getCurrentId(),
  416. User::getCurrentId()
  417. );
  418. }
  419. }
  420. // redirection
  421. $this->redirect(Yii::$app->urlManager->createUrl(['order/history', 'orderOk' => true]));
  422. }
  423. else {
  424. if (!count($productsArray)) {
  425. Yii::$app->session->setFlash('error', "Vous n'avez choisi aucun produit");
  426. }
  427. if ($errorDate) {
  428. Yii::$app->session->setFlash('error', "Vous ne pouvez pas commander pour cette date.");
  429. }
  430. if ($errorPointSale) {
  431. Yii::$app->session->setFlash('error', "Point de vente invalide.");
  432. }
  433. }
  434. }
  435. /**
  436. * Annule une commande.
  437. *
  438. * @param integer $id
  439. * @throws \yii\web\NotFoundHttpException
  440. * @throws UserException
  441. */
  442. public function actionCancel($id)
  443. {
  444. $order = Order::searchOne([
  445. 'id' => $id
  446. ]) ;
  447. if(!$order) {
  448. throw new \yii\web\NotFoundHttpException('Commande introuvable');
  449. }
  450. if ($order->getState() != Order::STATE_OPEN) {
  451. throw new UserException('Vous ne pouvez plus annuler cette commande.');
  452. }
  453. if ($order && User::getCurrentId() == $order->id_user) {
  454. // remboursement
  455. if ($order->getAmount(Order::AMOUNT_PAID)) {
  456. $order->saveCreditHistory(
  457. CreditHistory::TYPE_REFUND,
  458. $order->getAmount(Order::AMOUNT_PAID),
  459. $order->distribution->id_producer,
  460. User::getCurrentId(),
  461. User::getCurrentId()
  462. );
  463. }
  464. // delete
  465. $order->date_delete = date('Y-m-d H:i:s');
  466. $order->save() ;
  467. Yii::$app->session->setFlash('success','Votre commande a bien été annulée.') ;
  468. }
  469. $this->redirect(Yii::$app->urlManager->createUrl(['order/history']));
  470. }
  471. /**
  472. * Vérifie le code saisi pour un point de vente.
  473. *
  474. * @param integer $idPointSale
  475. * @param string $code
  476. * @return boolean
  477. */
  478. public function actionValidateCodePointSale($idPointSale, $code)
  479. {
  480. $pointSale = PointSale::findOne($idPointSale);
  481. if ($pointSale) {
  482. if ($pointSale->validateCode($code)) {
  483. return true;
  484. }
  485. }
  486. return false;
  487. }
  488. }