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.

577 lines
19KB

  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. ->andWhere('date_delete IS NULL')
  201. ->orderBy('distribution.date DESC'),
  202. 'pagination' => [
  203. 'pageSize' => 10,
  204. ],
  205. ]);
  206. return $this->render('history', [
  207. 'dataProviderOrders' => $dataProviderOrders,
  208. 'orderOk' => Yii::$app->getRequest()->get('orderOk', false),
  209. 'cancelOk' => Yii::$app->getRequest()->get('cancelOk', false),
  210. ]);
  211. }
  212. /**
  213. * Supprime un producteur.
  214. *
  215. * @param integer $id
  216. */
  217. public function actionRemoveProducer($id = 0)
  218. {
  219. $userProducer = UserProducer::find()
  220. ->where(['id_producer' => $id, 'id_user' => User::getCurrentId()])
  221. ->one();
  222. $userProducer->active = 0;
  223. $userProducer->save();
  224. $this->redirect(['order/index']);
  225. }
  226. /**
  227. * Crée une commande.
  228. *
  229. * @return mixed
  230. */
  231. public function actionCreate()
  232. {
  233. $idProducer = $this->getProducer()->id ;
  234. $order = new Order;
  235. $posts = Yii::$app->request->post();
  236. if ($idProducer) {
  237. $this->_verifyProducerActive($idProducer);
  238. }
  239. if ($order->load($posts)) {
  240. $order = Order::find()
  241. ->where('id_distribution = ' . $posts['Order']['id_distribution'])
  242. ->andWhere('id_user = ' . User::getCurrentId())
  243. ->one();
  244. if (!$order) {
  245. $order = new Order;
  246. $order->load(Yii::$app->request->post());
  247. $order->id_user = User::getCurrentId();
  248. $order->date = date('Y-m-d H:i:s');
  249. $order->type = Order::ORIGIN_USER;
  250. }
  251. $this->processForm($order);
  252. }
  253. return $this->render('create', array_merge($this->initForm($order), [
  254. 'model' => $order
  255. ]));
  256. }
  257. /**
  258. * Modifie une commande.
  259. *
  260. * @param integer $id
  261. * @return mixed
  262. * @throws UserException
  263. */
  264. public function actionUpdate($id)
  265. {
  266. $order = Order::searchOne([
  267. 'id' => $id
  268. ]) ;
  269. if ($order->getState() != Order::STATE_OPEN) {
  270. throw new UserException('Cette commande n\'est pas modifiable.');
  271. }
  272. $this->_verifyProducerActive($order->distribution->id_producer);
  273. if ($order && $order->load(Yii::$app->request->post())) {
  274. $order->date_update = date('Y-m-d H:i:s');
  275. $this->processForm($order);
  276. }
  277. return $this->render('update', array_merge($this->initForm($order), [
  278. 'model' => $order,
  279. 'orderNotfound' => !$order,
  280. ]));
  281. }
  282. /**
  283. * Vérifie si un producteur est actif.
  284. *
  285. * @param integer $idProducer
  286. * @throws NotFoundHttpException
  287. */
  288. public function _verifyProducerActive($idProducer)
  289. {
  290. $producer = Producer::findOne($idProducer);
  291. if ($producer && !$producer->active) {
  292. throw new NotFoundHttpException('Ce producteur est actuellement hors ligne.');
  293. }
  294. }
  295. /**
  296. * Traite le formulaire de création/modification de commande.
  297. *
  298. * @param Commande $order
  299. */
  300. public function processForm($order)
  301. {
  302. $posts = Yii::$app->request->post();
  303. $productsArray = [];
  304. $totalQuantity = 0;
  305. foreach ($posts['Product'] as $key => $quantity) {
  306. $key = (int) str_replace('product_', '', $key);
  307. $product = Product::find()->where(['id' => $key])->one();
  308. $totalQuantity += $quantity;
  309. if ($product && $quantity) {
  310. $productsArray[] = $product;
  311. }
  312. }
  313. // date
  314. $errorDate = false;
  315. if (isset($order->id_distribution)) {
  316. // date de commande
  317. $distribution = Distribution::find()->where(['id' => $order->id_distribution])->one();
  318. if (date('H') >= 20) {
  319. $date = date('Y-m-d', strtotime(date('Y-m-d')) + 60 * 60 * 24);
  320. } else {
  321. $date = date('Y-m-d');
  322. }
  323. if ($distribution->date < $date) {
  324. $errorDate = true;
  325. }
  326. }
  327. // point de vente
  328. $errorPointSale = false;
  329. if (isset($distribution) && $distribution) {
  330. $pointSaleDistribution = PointSaleDistribution::searchOne([
  331. 'id_distribution' => $distribution->id,
  332. 'id_point_sale' => $posts['Order']['id_point_sale']
  333. ]) ;
  334. if (!$pointSaleDistribution || !$pointSaleDistribution->delivery) {
  335. $errorPointSale = true;
  336. }
  337. $pointSale = PointSale::findOne($posts['Order']['id_point_sale']);
  338. if ($pointSale) {
  339. if (strlen($pointSale->code) && !$pointSale->validateCode($posts['code_point_sale_' . $pointSale->id])) {
  340. $errorPointSale = true;
  341. }
  342. } else {
  343. $errorPointSale = true;
  344. }
  345. }
  346. if ($order->validate() && count($productsArray) && !$errorDate && !$errorPointSale) {
  347. // gestion point de vente
  348. $pointSale = PointSale::searchOne([
  349. 'id' => $order->id_point_sale
  350. ]) ;
  351. if ($pointSale && strlen($pointSale->getComment()))
  352. $order->comment_point_sale = $pv->getComment();
  353. else
  354. $order->comment_point_sale = '';
  355. // sauvegarde de la commande
  356. $order->save();
  357. // ajout de l'utilisateur à l'établissement
  358. Producer::addUser(User::getCurrentId(), $distribution->id_producer) ;
  359. // suppression de tous les enregistrements ProductOrder
  360. if (!is_null($order)) {
  361. ProductOrder::deleteAll(['id_order' => $order->id]);
  362. }
  363. // produits dispos
  364. $availableProducts = ProductDistribution::searchByDistribution($distribution->id) ;
  365. // sauvegarde des produits
  366. foreach ($productsArray as $product) {
  367. if (isset($availableProducts[$product->id])) {
  368. $productOrder = new ProductOrder();
  369. $productOrder->id_order = $order->id;
  370. $productOrder->id_product = $product->id;
  371. $productOrder->price = $product->price;
  372. $quantity = (int) $posts['Product']['product_' . $product->id];
  373. if ($availableProducts[$product->id]['quantity_max'] && $quantity > $availableProducts[$product->id]['quantity_remaining']) {
  374. $quantity = $availableProducts[$product->id]['quantity_remaining'];
  375. }
  376. $productOrder->quantity = $quantity;
  377. $productOrder->sale_mode = Product::SALE_MODE_UNIT ;
  378. $productOrder->save();
  379. }
  380. }
  381. // credit
  382. $credit = isset($posts['credit']) && $posts['credit'];
  383. $order = Order::searchOne([
  384. 'id' => $order->id
  385. ]) ;
  386. if ($credit && ($pointSale->credit || $order->getAmount(Order::AMOUNT_PAID))) {
  387. $amountPaid = $order->getAmount(Order::AMOUNT_PAID);
  388. // à payer
  389. if ($order->getPaymentStatus() == Order::PAYMENT_UNPAID) {
  390. $amountRemaining = $order->getAmount(Order::AMOUNT_REMAINING) ;
  391. $credit = Yii::$app->user->identity->getCredit($distribution->id_producer);
  392. if ($amountRemaining > $credit) {
  393. $amountRemaining = $credit;
  394. }
  395. if ($amountRemaining > 0) {
  396. $order->saveCreditHistory(
  397. CreditHistory::TYPE_PAYMENT,
  398. $amountRemaining,
  399. $distribution->id_producer,
  400. User::getCurrentId(),
  401. User::getCurrentId()
  402. );
  403. }
  404. }
  405. // surplus à rembourser
  406. elseif ($order->getPaymentStatus() == Order::PAYMENT_SURPLUS) {
  407. $amountSurplus = $order->getAmount(Order::AMOUNT_SURPLUS) ;
  408. $order->saveCreditHistory(
  409. CreditHistory::TYPE_REFUND,
  410. $amountSurplus,
  411. $distribution->id_producer,
  412. User::getCurrentId(),
  413. User::getCurrentId()
  414. );
  415. }
  416. }
  417. // redirection
  418. $this->redirect(Yii::$app->urlManager->createUrl(['order/history', 'orderOk' => true]));
  419. }
  420. else {
  421. if (!count($productsArray)) {
  422. Yii::$app->session->setFlash('error', "Vous n'avez choisi aucun produit");
  423. }
  424. if ($errorDate) {
  425. Yii::$app->session->setFlash('error', "Vous ne pouvez pas commander pour cette date.");
  426. }
  427. if ($errorPointSale) {
  428. Yii::$app->session->setFlash('error', "Point de vente invalide.");
  429. }
  430. }
  431. }
  432. /**
  433. * Annule une commande.
  434. *
  435. * @param integer $id
  436. * @throws \yii\web\NotFoundHttpException
  437. * @throws UserException
  438. */
  439. public function actionCancel($id)
  440. {
  441. $order = Order::searchOne([
  442. 'id' => $id
  443. ]) ;
  444. if(!$order) {
  445. throw new \yii\web\NotFoundHttpException('Commande introuvable');
  446. }
  447. if ($order->getState() != Order::STATE_OPEN) {
  448. throw new UserException('Vous ne pouvez plus annuler cette commande.');
  449. }
  450. if ($order && User::getCurrentId() == $order->id_user) {
  451. // remboursement
  452. if ($order->getAmount(Order::AMOUNT_PAID)) {
  453. $order->saveCreditHistory(
  454. CreditHistory::TYPE_REFUND,
  455. $order->getAmount(Order::AMOUNT_PAID),
  456. $order->distribution->id_producer,
  457. User::getCurrentId(),
  458. User::getCurrentId()
  459. );
  460. }
  461. // delete
  462. $order->date_delete = date('Y-m-d H:i:s');
  463. $order->save() ;
  464. Yii::$app->session->setFlash('success','Votre commande a bien été annulée.') ;
  465. }
  466. $this->redirect(Yii::$app->urlManager->createUrl(['order/history']));
  467. }
  468. /**
  469. * Vérifie le code saisi pour un point de vente.
  470. *
  471. * @param integer $idPointSale
  472. * @param string $code
  473. * @return boolean
  474. */
  475. public function actionValidateCodePointSale($idPointSale, $code)
  476. {
  477. $pointSale = PointSale::findOne($idPointSale);
  478. if ($pointSale) {
  479. if ($pointSale->validateCode($code)) {
  480. return true;
  481. }
  482. }
  483. return false;
  484. }
  485. }