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.

578 lines
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. /**
  50. * Retourne au format JSON toutes les informations relatives à une
  51. * production donnée.
  52. *
  53. * @param integer $idDistribution
  54. * @return mixed
  55. */
  56. public function actionInfosDistribution($idDistribution)
  57. {
  58. $distribution = Distribution::searchOne([
  59. 'id' => $idDistribution
  60. ]);
  61. if ($distribution) {
  62. $arr = [];
  63. $productsArray = ProductDistribution::searchByDistribution($distribution->id) ;
  64. $data['products'] = $productsArray;
  65. $pointSaleArray = PointSale::find()
  66. ->joinWith(['pointSaleDistribution' => function($q) use ($distribution) {
  67. $q->where(['id_distribution' => $distribution->id]);
  68. }])
  69. ->where([
  70. 'id_producer' => $distribution->id_producer,
  71. ])
  72. ->all();
  73. $data['points_sale'] = [];
  74. foreach ($pointSaleArray as $pointSale) {
  75. if (isset($pointSale->pointSaleDistribution) &&
  76. isset($pointSale->pointSaleDistribution[0])) {
  77. $data['points_sale'][$pointSale->id] = $pointSale->pointSaleDistribution[0]->delivery;
  78. } else {
  79. $data['points_sale'][$pointSale->id] = false;
  80. }
  81. }
  82. return json_encode($data);
  83. }
  84. return json_encode([]);
  85. }
  86. /**
  87. * Initialise le formulaire de création/modification de commande.
  88. *
  89. * @param Order $order
  90. * @return array
  91. */
  92. public function initForm($order = null) {
  93. // Producteurs
  94. $producersArray = Yii::$app->user->identity->getBookmarkedProducers();
  95. $idProducer = $this->getProducer()->id;
  96. // Producteur
  97. $producer = Producer::findOne($idProducer);
  98. // Points de vente
  99. $pointsSaleArray = PointSale::find()
  100. ->with('userPointSale')
  101. ->where(['id_producer' => $idProducer])
  102. ->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)')
  103. ->params([':id_user' => User::getCurrentId()])
  104. ->all();
  105. // jours de production
  106. $deadline = 20;
  107. $date = date('Y-m-d');
  108. if (isset($producer)) {
  109. $deadline = $producer->order_deadline;
  110. if (date('H') >= $deadline) {
  111. $date = date('Y-m-d', strtotime(date('Y-m-d')) + ($producer->order_delay) * (24 * 60 * 60));
  112. } else {
  113. $date = date('Y-m-d', strtotime(date('Y-m-d')) + ($producer->order_delay - 1) * (24 * 60 * 60));
  114. }
  115. }
  116. $distributionDays = Distribution::find()
  117. ->where(['active' => 1])
  118. ->andWhere('date > :date')
  119. ->andWhere(['id_producer' => $idProducer])
  120. ->addParams([':date' => $date])
  121. ->all();
  122. $distributionDaysArray = array('' => '--');
  123. foreach ($distributionDays as $distribution) {
  124. $distributionDaysArray[$distribution->id] = date('d/m/Y', strtotime($distribution->date));
  125. }
  126. // produits
  127. $products = Product::find()
  128. ->leftJoin('product_distribution', 'product.id = product_distribution.id_product')
  129. ->where(['product.active' => 1, 'id_producer' => $idProducer])
  130. ->orderBy('product.order ASC')->all();
  131. $productsArray = [] ;
  132. foreach ($products as $p)
  133. $productsArray[] = $p;
  134. // produits selec
  135. $posts = Yii::$app->request->post();
  136. $selectedProducts = [];
  137. if (isset($posts['Product'])) {
  138. foreach ($posts['Product'] as $key => $quantity) {
  139. $key = (int) str_replace('product_', '', $key);
  140. $product = Product::find()->where(['id' => $key])->one();
  141. if ($product && $quantity)
  142. $selectedProducts[$product->id] = (int) $quantity;
  143. }
  144. }
  145. elseif (!is_null($order)) {
  146. $productOrderArray = ProductOrder::searchAll([
  147. 'id_order' => $order->id
  148. ]) ;
  149. foreach ($productOrderArray as $productOrder) {
  150. $selectedProducts[$productOrder->id_product] = (int) $productOrder->quantity;
  151. }
  152. }
  153. $availableProducts = [] ;
  154. $distribution = null;
  155. if (!is_null($order) && $order->id_distribution) {
  156. $availableProducts = ProductDistribution::searchByDistribution($order->id_distribution);
  157. $distribution = Distribution::find()->where(['id' => $order->id_distribution])->one();
  158. }
  159. $orders = Order::searchAll([
  160. 'id_user' => User::getCurrentId()
  161. ]) ;
  162. if ($idProducer) {
  163. $userProducer = UserProducer::searchOne([
  164. 'id_producer' => $idProducer,
  165. 'id_user' => User::getCurrentId()
  166. ]) ;
  167. $credit = $userProducer->credit;
  168. } else {
  169. $credit = 0;
  170. }
  171. return [
  172. 'pointsSaleArray' => $pointsSaleArray,
  173. 'distributionDaysArray' => $distributionDaysArray,
  174. 'productsArray' => $productsArray,
  175. 'selectedProducts' => $selectedProducts,
  176. 'availableProducts' => $availableProducts,
  177. 'distribution' => $distribution,
  178. 'ordersArray' => $orders,
  179. 'producersArray' => $producersArray,
  180. 'idProducer' => $idProducer,
  181. 'producer' => $producer,
  182. 'credit' => $credit
  183. ];
  184. }
  185. /**
  186. * Affiche l'historique des commandes de l'utilisateur
  187. *
  188. * @return ProducerView
  189. */
  190. public function actionHistory()
  191. {
  192. $dataProviderOrders = new ActiveDataProvider([
  193. 'query' => Order::find()
  194. ->with('productOrder', 'pointSale', 'creditHistory')
  195. ->joinWith('distribution', 'distribution.producer')
  196. ->where([
  197. 'id_user' => Yii::$app->user->id,
  198. 'distribution.id_producer' => $this->getProducer()->id
  199. ])
  200. ->orderBy('distribution.date DESC'),
  201. 'pagination' => [
  202. 'pageSize' => 10,
  203. ],
  204. ]);
  205. return $this->render('history', [
  206. 'dataProviderOrders' => $dataProviderOrders,
  207. 'orderOk' => Yii::$app->getRequest()->get('orderOk', false),
  208. 'cancelOk' => Yii::$app->getRequest()->get('cancelOk', false),
  209. ]);
  210. }
  211. /**
  212. * Supprime un producteur.
  213. *
  214. * @param integer $id
  215. */
  216. public function actionRemoveProducer($id = 0)
  217. {
  218. $userProducer = UserProducer::find()
  219. ->where(['id_producer' => $id, 'id_user' => User::getCurrentId()])
  220. ->one();
  221. $userProducer->active = 0;
  222. $userProducer->save();
  223. $this->redirect(['order/index']);
  224. }
  225. /**
  226. * Crée une commande.
  227. *
  228. * @return mixed
  229. */
  230. public function actionCreate()
  231. {
  232. $idProducer = $this->getProducer()->id ;
  233. $order = new Order;
  234. $posts = Yii::$app->request->post();
  235. if ($idProducer) {
  236. $this->_verifyProducerActive($idProducer);
  237. }
  238. if ($order->load($posts)) {
  239. $order = Order::find()
  240. ->where('id_distribution = ' . $posts['Order']['id_distribution'])
  241. ->andWhere('id_user = ' . User::getCurrentId())
  242. ->one();
  243. if (!$order) {
  244. $order = new Order;
  245. $order->load(Yii::$app->request->post());
  246. $order->id_user = User::getCurrentId();
  247. $order->date = date('Y-m-d H:i:s');
  248. $order->type = Order::ORIGIN_USER;
  249. }
  250. $this->processForm($order);
  251. }
  252. return $this->render('create', array_merge($this->initForm($order), [
  253. 'model' => $order
  254. ]));
  255. }
  256. /**
  257. * Modifie une commande.
  258. *
  259. * @param integer $id
  260. * @return mixed
  261. * @throws UserException
  262. */
  263. public function actionUpdate($id)
  264. {
  265. $order = Order::searchOne([
  266. 'id' => $id
  267. ]) ;
  268. if ($order->getState() != Order::STATE_OPEN) {
  269. throw new UserException('Cette commande n\'est pas modifiable.');
  270. }
  271. $this->_verifyProducerActive($order->distribution->id_producer);
  272. if ($order && $order->load(Yii::$app->request->post())) {
  273. $order->date_update = date('Y-m-d H:i:s');
  274. $this->processForm($order);
  275. }
  276. return $this->render('update', array_merge($this->initForm($order), [
  277. 'model' => $order,
  278. 'orderNotfound' => !$order,
  279. ]));
  280. }
  281. /**
  282. * Vérifie si un producteur est actif.
  283. *
  284. * @param integer $idProducer
  285. * @throws NotFoundHttpException
  286. */
  287. public function _verifyProducerActive($idProducer)
  288. {
  289. $producer = Producer::findOne($idProducer);
  290. if ($producer && !$producer->active) {
  291. throw new NotFoundHttpException('Ce producteur est actuellement hors ligne.');
  292. }
  293. }
  294. /**
  295. * Traite le formulaire de création/modification de commande.
  296. *
  297. * @param Commande $order
  298. */
  299. public function processForm($order)
  300. {
  301. $posts = Yii::$app->request->post();
  302. $productsArray = [];
  303. $totalQuantity = 0;
  304. foreach ($posts['Product'] as $key => $quantity) {
  305. $key = (int) str_replace('product_', '', $key);
  306. $product = Product::find()->where(['id' => $key])->one();
  307. $totalQuantity += $quantity;
  308. if ($product && $quantity) {
  309. $productsArray[] = $product;
  310. }
  311. }
  312. // date
  313. $errorDate = false;
  314. if (isset($order->id_distribution)) {
  315. // date de commande
  316. $distribution = Distribution::find()->where(['id' => $order->id_distribution])->one();
  317. if (date('H') >= 20) {
  318. $date = date('Y-m-d', strtotime(date('Y-m-d')) + 60 * 60 * 24);
  319. } else {
  320. $date = date('Y-m-d');
  321. }
  322. if ($distribution->date < $date) {
  323. $errorDate = true;
  324. }
  325. }
  326. // point de vente
  327. $errorPointSale = false;
  328. if (isset($distribution) && $distribution) {
  329. $pointSaleDistribution = PointSaleDistribution::searchOne([
  330. 'id_distribution' => $distribution->id,
  331. 'id_point_sale' => $posts['Order']['id_point_sale']
  332. ]) ;
  333. if (!$pointSaleDistribution || !$pointSaleDistribution->delivery) {
  334. $errorPointSale = true;
  335. }
  336. $pointSale = PointSale::findOne($posts['Order']['id_point_sale']);
  337. if ($pointSale) {
  338. if (strlen($pointSale->code) && !$pointSale->validateCode($posts['code_point_sale_' . $pointSale->id])) {
  339. $errorPointSale = true;
  340. }
  341. } else {
  342. $errorPointSale = true;
  343. }
  344. }
  345. if ($order->validate() && count($productsArray) && !$errorDate && !$errorPointSale) {
  346. // gestion point de vente
  347. $pointSale = PointSale::searchOne([
  348. 'id' => $order->id_point_sale
  349. ]) ;
  350. $order->comment_point_sale = ($pointSale && strlen($pointSale->getComment())) ?
  351. $pv->getComment() : '' ;
  352. // la commande est automatiquement réactivée lors d'une modification
  353. $order->date_delete = null ;
  354. // sauvegarde de la commande
  355. $order->save();
  356. // ajout de l'utilisateur à l'établissement
  357. Producer::addUser(User::getCurrentId(), $distribution->id_producer) ;
  358. // suppression de tous les enregistrements ProductOrder
  359. if (!is_null($order)) {
  360. ProductOrder::deleteAll(['id_order' => $order->id]);
  361. }
  362. // produits dispos
  363. $availableProducts = ProductDistribution::searchByDistribution($distribution->id) ;
  364. // sauvegarde des produits
  365. foreach ($productsArray as $product) {
  366. if (isset($availableProducts[$product->id])) {
  367. $productOrder = new ProductOrder();
  368. $productOrder->id_order = $order->id;
  369. $productOrder->id_product = $product->id;
  370. $productOrder->price = $product->price;
  371. $quantity = (int) $posts['Product']['product_' . $product->id];
  372. if ($availableProducts[$product->id]['quantity_max'] && $quantity > $availableProducts[$product->id]['quantity_remaining']) {
  373. $quantity = $availableProducts[$product->id]['quantity_remaining'];
  374. }
  375. $productOrder->quantity = $quantity;
  376. $productOrder->sale_mode = Product::SALE_MODE_UNIT ;
  377. $productOrder->save();
  378. }
  379. }
  380. // credit
  381. $credit = isset($posts['credit']) && $posts['credit'];
  382. $order = Order::searchOne([
  383. 'id' => $order->id
  384. ]) ;
  385. if ($credit && ($pointSale->credit || $order->getAmount(Order::AMOUNT_PAID))) {
  386. $amountPaid = $order->getAmount(Order::AMOUNT_PAID);
  387. // à payer
  388. if ($order->getPaymentStatus() == Order::PAYMENT_UNPAID) {
  389. $amountRemaining = $order->getAmount(Order::AMOUNT_REMAINING) ;
  390. $credit = Yii::$app->user->identity->getCredit($distribution->id_producer);
  391. if ($amountRemaining > $credit) {
  392. $amountRemaining = $credit;
  393. }
  394. if ($amountRemaining > 0) {
  395. $order->saveCreditHistory(
  396. CreditHistory::TYPE_PAYMENT,
  397. $amountRemaining,
  398. $distribution->id_producer,
  399. User::getCurrentId(),
  400. User::getCurrentId()
  401. );
  402. }
  403. }
  404. // surplus à rembourser
  405. elseif ($order->getPaymentStatus() == Order::PAYMENT_SURPLUS) {
  406. $amountSurplus = $order->getAmount(Order::AMOUNT_SURPLUS) ;
  407. $order->saveCreditHistory(
  408. CreditHistory::TYPE_REFUND,
  409. $amountSurplus,
  410. $distribution->id_producer,
  411. User::getCurrentId(),
  412. User::getCurrentId()
  413. );
  414. }
  415. }
  416. // redirection
  417. $this->redirect(Yii::$app->urlManager->createUrl(['order/history', 'orderOk' => true]));
  418. }
  419. else {
  420. if (!count($productsArray)) {
  421. Yii::$app->session->setFlash('error', "Vous n'avez choisi aucun produit");
  422. }
  423. if ($errorDate) {
  424. Yii::$app->session->setFlash('error', "Vous ne pouvez pas commander pour cette date.");
  425. }
  426. if ($errorPointSale) {
  427. Yii::$app->session->setFlash('error', "Point de vente invalide.");
  428. }
  429. }
  430. }
  431. /**
  432. * Annule une commande.
  433. *
  434. * @param integer $id
  435. * @throws \yii\web\NotFoundHttpException
  436. * @throws UserException
  437. */
  438. public function actionCancel($id)
  439. {
  440. $order = Order::searchOne([
  441. 'id' => $id
  442. ]) ;
  443. if(!$order) {
  444. throw new \yii\web\NotFoundHttpException('Commande introuvable');
  445. }
  446. if ($order->getState() != Order::STATE_OPEN) {
  447. throw new UserException('Vous ne pouvez plus annuler cette commande.');
  448. }
  449. if ($order && User::getCurrentId() == $order->id_user) {
  450. // remboursement
  451. if ($order->getAmount(Order::AMOUNT_PAID)) {
  452. $order->saveCreditHistory(
  453. CreditHistory::TYPE_REFUND,
  454. $order->getAmount(Order::AMOUNT_PAID),
  455. $order->distribution->id_producer,
  456. User::getCurrentId(),
  457. User::getCurrentId()
  458. );
  459. }
  460. // delete
  461. $order->date_delete = date('Y-m-d H:i:s');
  462. $order->save() ;
  463. Yii::$app->session->setFlash('success','Votre commande a bien été annulée.') ;
  464. }
  465. $this->redirect(Yii::$app->urlManager->createUrl(['order/history']));
  466. }
  467. /**
  468. * Vérifie le code saisi pour un point de vente.
  469. *
  470. * @param integer $idPointSale
  471. * @param string $code
  472. * @return boolean
  473. */
  474. public function actionValidateCodePointSale($idPointSale, $code)
  475. {
  476. $pointSale = PointSale::findOne($idPointSale);
  477. if ($pointSale) {
  478. if ($pointSale->validateCode($code)) {
  479. return true;
  480. }
  481. }
  482. return false;
  483. }
  484. }