Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

1017 rindas
41KB

  1. <?php
  2. /**
  3. * Copyright distrib (2018)
  4. *
  5. * contact@opendistrib.net
  6. *
  7. * Ce logiciel est un programme informatique servant à aider les producteurs
  8. * à distribuer leur production en circuits courts.
  9. *
  10. * Ce logiciel est régi par la licence CeCILL soumise au droit français et
  11. * respectant les principes de diffusion des logiciels libres. Vous pouvez
  12. * utiliser, modifier et/ou redistribuer ce programme sous les conditions
  13. * de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  14. * sur le site "http://www.cecill.info".
  15. *
  16. * En contrepartie de l'accessibilité au code source et des droits de copie,
  17. * de modification et de redistribution accordés par cette licence, il n'est
  18. * offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  19. * seule une responsabilité restreinte pèse sur l'auteur du programme, le
  20. * titulaire des droits patrimoniaux et les concédants successifs.
  21. *
  22. * A cet égard l'attention de l'utilisateur est attirée sur les risques
  23. * associés au chargement, à l'utilisation, à la modification et/ou au
  24. * développement et à la reproduction du logiciel par l'utilisateur étant
  25. * donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  26. * manipuler et qui le réserve donc à des développeurs et des professionnels
  27. * avertis possédant des connaissances informatiques approfondies. Les
  28. * utilisateurs sont donc invités à charger et tester l'adéquation du
  29. * logiciel à leurs besoins dans des conditions permettant d'assurer la
  30. * sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  31. * à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  32. *
  33. * Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  34. * pris connaissance de la licence CeCILL, et que vous en avez accepté les
  35. * termes.
  36. */
  37. namespace producer\controllers;
  38. use common\helpers\GlobalParam;
  39. use common\helpers\Mailjet;
  40. use common\helpers\MeanPayment;
  41. use common\helpers\Password;
  42. use common\logic\Distribution\Distribution\Model\Distribution;
  43. use common\logic\Order\Order\Model\Order;
  44. use common\logic\Order\ProductOrder\Model\ProductOrder;
  45. use common\logic\PointSale\PointSale\Model\PointSale;
  46. use common\logic\Producer\Producer\Model\Producer;
  47. use common\logic\Product\Product\Model\Product;
  48. use common\logic\User\CreditHistory\Model\CreditHistory;
  49. use common\logic\User\User\Model\User;
  50. use DateTime;
  51. use yii\base\UserException;
  52. use yii\data\ActiveDataProvider;
  53. use yii\filters\AccessControl;
  54. use yii\web\NotFoundHttpException;
  55. class OrderController extends ProducerBaseController
  56. {
  57. var $enableCsrfValidation = false;
  58. public function behaviors()
  59. {
  60. return [
  61. 'access' => [
  62. 'class' => AccessControl::class,
  63. 'only' => [
  64. 'history',
  65. 'remove-producer',
  66. 'cancel'
  67. ],
  68. 'rules' => [
  69. [
  70. 'allow' => true,
  71. 'roles' => ['@']
  72. ]
  73. ],
  74. ],
  75. ];
  76. }
  77. public function actionOrder(int $id = 0, $date = '')
  78. {
  79. $orderManager = $this->getOrderManager();
  80. $distributionManager = $this->getDistributionManager();
  81. $params = [];
  82. $producer = $this->getProducerCurrent();
  83. if (\Yii::$app->user->isGuest && !$producer->option_allow_order_guest) {
  84. return $this->redirect(
  85. $this->getUrlManagerFrontend()->createAbsoluteUrl(['site/producer', 'id' => $producer->id])
  86. );
  87. }
  88. $order = $orderManager->findOneOrderById($id);
  89. if ($order && $orderManager->isOrderStateOpen($order)) {
  90. $params['order'] = $order;
  91. }
  92. if ($distributionManager->isDistributionDateAvailable($date)) {
  93. $params['date'] = $date;
  94. }
  95. return $this->render('order', $params);
  96. }
  97. /**
  98. * Affiche l'historique des commandes de l'utilisateur.
  99. */
  100. public function actionHistory($type = 'incoming')
  101. {
  102. $queryHistoryArray = $this->getOrderManager()
  103. ->queryOrdersHistory($this->getProducerCurrent(), $this->getUserCurrent());
  104. $queryHistoryIncoming = $queryHistoryArray['incoming'];
  105. $queryHistoryPassed = $queryHistoryArray['passed'];
  106. $dataProviderOrders = new ActiveDataProvider([
  107. 'query' => ($type == 'incoming') ? $queryHistoryIncoming : $queryHistoryPassed,
  108. 'pagination' => [
  109. 'pageSize' => 10,
  110. ],
  111. ]);
  112. return $this->render('history', [
  113. 'dataProviderOrders' => $dataProviderOrders,
  114. 'orderOk' => \Yii::$app->getRequest()->get('orderOk', false),
  115. 'cancelOk' => \Yii::$app->getRequest()->get('cancelOk', false),
  116. 'type' => $type,
  117. 'countIncoming' => $queryHistoryIncoming->count(),
  118. 'countPassed' => $queryHistoryPassed->count(),
  119. ]);
  120. }
  121. public function actionRemoveProducer(int $id = 0)
  122. {
  123. $producer = $this->getProducerManager()->findOneProducerById($id);
  124. $this->getUserProducerManager()->updateActive(
  125. $this->getUserCurrent(),
  126. $producer,
  127. false
  128. );
  129. return $this->redirect(['order/index']);
  130. }
  131. /**
  132. * Crée une commande.
  133. */
  134. public function actionAjaxProcess()
  135. {
  136. \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
  137. $posts = \Yii::$app->request->post();
  138. $orderManager = $this->getOrderManager();
  139. $producerManager = $this->getProducerManager();
  140. $userManager = $this->getUserManager();
  141. $producer = $this->getProducerCurrent();
  142. $redirect = null;
  143. $idProducer = $producer->id;
  144. $order = new Order;
  145. if ($idProducer) {
  146. $this->_verifyProducerActive($idProducer);
  147. }
  148. if ($order->load($posts)) {
  149. $user = $this->getUserCurrent();
  150. $order = Order::find()
  151. ->where('id_distribution = :id_distribution')
  152. ->andWhere('id_user = :id_user')
  153. ->andWhere('id_point_sale = :id_point_sale')
  154. ->params([
  155. ':id_distribution' => $posts['Order']['id_distribution'],
  156. ':id_point_sale' => $posts['Order']['id_point_sale'],
  157. ':id_user' => $user ? $user->id : null
  158. ])
  159. ->one();
  160. if ($order && !$order->online_payment_url) {
  161. if ($order->id_point_sale != $posts['Order']['id_point_sale']) {
  162. $order->id_point_sale = $posts['Order']['id_point_sale'];
  163. $order->date_update = date('Y-m-d H:i:s');
  164. }
  165. } else {
  166. // gestion user : option_allow_order_guest
  167. if (isset($posts['user']) && $posts['user']) {
  168. $userIndividualExist = User::searchOne([
  169. 'email' => $posts['user']['email'],
  170. 'type' => User::TYPE_INDIVIDUAL
  171. ]);
  172. if ($userIndividualExist) {
  173. $errorUserGuest = 'Cette adresse email est déjà utilisée, veuillez vous <a href="' . \Yii::$app->urlManagerFrontend->createUrl(
  174. ['site/producer', 'id' => $idProducer]
  175. ) . '">connecter à votre compte</a> ou en utiliser une autre.';
  176. return ['status' => 'error', 'errors' => [$errorUserGuest]];
  177. }
  178. $user = User::searchOne([
  179. 'email' => $posts['user']['email'],
  180. 'type' => User::TYPE_GUEST
  181. ]);
  182. if (!$user) {
  183. $user = new User;
  184. $user->id_producer = 0;
  185. $user->type = User::TYPE_GUEST;
  186. $userManager->setPassword($user, Password::generate());
  187. $userManager->generateAuthKey($user);
  188. $user->username = $posts['user']['email'];
  189. $user->email = $posts['user']['email'];
  190. $user->name = $posts['user']['firstname'];
  191. $user->lastname = $posts['user']['lastname'];
  192. $user->phone = $posts['user']['phone'];
  193. $user->save();
  194. // liaison producer / user
  195. $producerManager->addUser($user, $producer);
  196. } else {
  197. $producerManager->addUser($user, $producer);
  198. }
  199. }
  200. $order = new Order;
  201. $order->load(\Yii::$app->request->post());
  202. $order->id_user = $user ? $user->id : null;
  203. $order->status = 'tmp-order';
  204. $order->date = date('Y-m-d H:i:s');
  205. $order->origin = Order::ORIGIN_USER;
  206. }
  207. $errors = $this->processForm($order, $user);
  208. if (count($errors)) {
  209. return ['status' => 'error', 'errors' => $errors];
  210. }
  211. if ($producerManager->isOnlinePaymentActiveAndTypeOrder($producer)) {
  212. $order = $orderManager->findOneOrderById($order->id);
  213. \Stripe\Stripe::setApiKey(
  214. $producerManager->getPrivateKeyApiStripe($producer)
  215. );
  216. $lineItems = [];
  217. foreach ($order->productOrder as $productOrder) {
  218. $product = $productOrder->product;
  219. $lineItems[] = [
  220. 'price_data' => [
  221. 'currency' => 'eur',
  222. 'product_data' => [
  223. 'name' => $product->name . ' (' . $productOrder->quantity . ' ' . $this->getProductManager()->strUnit(
  224. $product->unit,
  225. 'wording_short',
  226. true
  227. ) . ')',
  228. ],
  229. 'unit_amount' => $productOrder->price * 100 * $productOrder->quantity,
  230. ],
  231. 'quantity' => 1,
  232. ];
  233. }
  234. $checkout_session = \Stripe\Checkout\Session::create([
  235. 'line_items' => $lineItems,
  236. 'payment_method_types' => ['card'],
  237. 'mode' => 'payment',
  238. 'customer_email' => $user->email,
  239. 'client_reference_id' => $user->id,
  240. 'payment_intent_data' => [
  241. 'metadata' => [
  242. 'user_id' => $user->id,
  243. 'producer_id' => $producer->id,
  244. 'order_id' => $order->id
  245. ],
  246. ],
  247. 'success_url' => $this->getUrlManagerProducer()->createAbsoluteUrl(
  248. [
  249. 'order/confirm',
  250. 'idOrder' => $order->id,
  251. 'returnPayment' => 'success'
  252. ]
  253. ),
  254. 'cancel_url' => $this->getUrlManagerProducer()->createAbsoluteUrl(
  255. [
  256. 'order/confirm',
  257. 'idOrder' => $order->id,
  258. 'returnPayment' => 'cancel'
  259. ]
  260. ),
  261. ]);
  262. $redirect = $checkout_session->url;
  263. $order->online_payment_url = $redirect;
  264. $order->save();
  265. }
  266. }
  267. return ['status' => 'success', 'idOrder' => $order->id, 'redirect' => $redirect];
  268. }
  269. /**
  270. * Vérifie si un producteur est actif.
  271. */
  272. public function _verifyProducerActive($idProducer)
  273. {
  274. $producer = $this->getProducerManager()->findOneProducerById($idProducer);
  275. if ($producer && !$producer->active) {
  276. throw new NotFoundHttpException('Ce producteur est actuellement hors ligne.');
  277. }
  278. }
  279. /**
  280. * Traite le formulaire de création/modification de commande.
  281. */
  282. public function processForm($order, $user)
  283. {
  284. $productManager = $this->getProductManager();
  285. $distributionManager = $this->getDistributionManager();
  286. $pointSaleDistributionManager = $this->getPointSaleDistributionManager();
  287. $pointSaleManager = $this->getPointSaleManager();
  288. $userPointSaleManager = $this->getUserPointSaleManager();
  289. $userProducerManager = $this->getUserProducerManager();
  290. $orderManager = $this->getOrderManager();
  291. $producerManager = $this->getProducerManager();
  292. $productOrderManager = $this->getProductOrderManager();
  293. $userManager = $this->getUserManager();
  294. $creditHistoryManager = $this->getCreditHistoryManager();
  295. $posts = \Yii::$app->request->post();
  296. $productsArray = [];
  297. $totalQuantity = 0;
  298. $producer = $this->getProducerCurrent();
  299. $isNewOrder = false;
  300. if (!$order->id) {
  301. $isNewOrder = true;
  302. }
  303. foreach ($posts['products'] as $key => $quantity) {
  304. $product = $productManager->findOneProductById((int)$key);
  305. $totalQuantity += $quantity;
  306. if ($product && $quantity) {
  307. $productsArray[] = $product;
  308. }
  309. }
  310. $errorDate = false;
  311. if (isset($order->id_distribution)) {
  312. $distribution = $distributionManager->findOneDistributionById($order->id_distribution);
  313. if ($orderManager->getState($order) != Order::STATE_OPEN) {
  314. $errorDate = true;
  315. }
  316. }
  317. $errorPointSale = false;
  318. if (isset($distribution) && $distribution) {
  319. $order->populateDistribution($distribution);
  320. $pointSale = $pointSaleManager->findOnePointSaleById($posts['Order']['id_point_sale']);
  321. $pointSaleDistribution = $pointSaleDistributionManager->findOnePointSaleDistribution($distribution, $pointSale);
  322. if (!$pointSaleDistribution || !$pointSaleDistribution->delivery) {
  323. $errorPointSale = true;
  324. }
  325. if ($pointSale) {
  326. if (strlen($pointSale->code) && !$pointSaleManager->validateCode($pointSale, $posts['code_point_sale'])) {
  327. $errorPointSale = true;
  328. }
  329. } else {
  330. $errorPointSale = true;
  331. }
  332. $userPointSale = $userPointSaleManager->findOneUserPointSale(GlobalParam::getCurrentUser(), $pointSale);
  333. if ($pointSale && $pointSale->restricted_access && !$userPointSale) {
  334. $errorPointSale = true;
  335. }
  336. }
  337. $errors = [];
  338. if ($order->validate() && count($productsArray) && !$errorDate && !$errorPointSale) {
  339. $userProducer = $userProducerManager->findOneUserProducer($user, $producer);
  340. $pointSale = $pointSaleManager->findOnePointSaleById($order->id_point_sale);
  341. $order->comment_point_sale = ($pointSale && strlen($pointSaleManager->getComment($pointSale))) ?
  342. $pointSaleManager->getComment($pointSale) : '';
  343. $order->date_delete = null; // la commande est automatiquement réactivée lors d'une modification
  344. $order->delivery_home = isset($posts['Order']['delivery_home']) ? $posts['Order']['delivery_home'] : false;
  345. $order->delivery_address = (isset($posts['Order']['delivery_address']) && $order->delivery_home) ? $posts['Order']['delivery_address'] : null;
  346. $order->comment = isset($posts['Order']['comment']) ? $posts['Order']['comment'] : null;
  347. $order->save();
  348. $orderManager->generateOrderReference($order);
  349. $orderManager->updateOrderStatus($order, 'new-order', 'user');
  350. $producerManager->addUser($user, $producer);
  351. // suppression de tous les enregistrements ProductOrder
  352. if (!is_null($order)) {
  353. $productOrderManager->deleteProductOrdersByOrder($order);
  354. if (isset($order->productOrder)) {
  355. foreach ($order->productOrder as $productOrder) {
  356. $unitsArray[$productOrder->id_product] = $productOrder->unit;
  357. }
  358. }
  359. }
  360. $availableProducts = $orderManager->findProductDistributionsByDistribution($distribution);
  361. foreach ($productsArray as $product) {
  362. if (isset($availableProducts[$product->id])) {
  363. $productOrder = new ProductOrder();
  364. $productOrder->id_order = $order->id;
  365. $productOrder->id_product = $product->id;
  366. $productOrder->id_tax_rate = $product->taxRate->id;
  367. $unit = (!is_null(
  368. $order
  369. ) && isset($unitsArray[$product->id])) ? $unitsArray[$product->id] : $product->unit;
  370. $coefficient = Product::$unitsArray[$unit]['coefficient'];
  371. $quantity = ((float)$posts['products'][$product->id]) / $coefficient;
  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->price = $productManager->getPrice($product, [
  377. 'user' => GlobalParam::getCurrentUser(),
  378. 'user_producer' => $userProducer,
  379. 'point_sale' => $pointSale,
  380. 'quantity' => $quantity
  381. ]);
  382. $productOrder->unit = $product->unit;
  383. $productOrder->step = $product->step;
  384. $productOrder->save();
  385. }
  386. }
  387. // lien utilisateur / point de vente
  388. $pointSaleManager->addUser($user, $pointSale);
  389. // credit
  390. $credit = $producerManager->getConfig('credit');
  391. $creditLimit = $producerManager->getConfig('credit_limit');
  392. $creditFunctioning = $producerManager->getPointSaleCreditFunctioning($pointSale);
  393. $creditUser = $userManager->getCredit($user, $producer);
  394. $order = $orderManager->findOneOrderById($order->id);
  395. $orderManager->initOrder($order);
  396. $amountRemaining = $orderManager->getOrderAmount($order, Order::AMOUNT_REMAINING);
  397. if ($credit && $pointSale->credit &&
  398. (($creditFunctioning == Producer::CREDIT_FUNCTIONING_OPTIONAL && $posts['use_credit']) ||
  399. $creditFunctioning == Producer::CREDIT_FUNCTIONING_MANDATORY ||
  400. ($creditFunctioning == Producer::CREDIT_FUNCTIONING_USER && $userProducer->credit_active)
  401. )) {
  402. $orderManager->updateOrderStatus($order, 'waiting-paiement-by-credit', 'user');
  403. // à payer
  404. if ($orderManager->getPaymentStatus($order) == Order::PAYMENT_UNPAID) {
  405. if (!is_null($creditLimit) && $amountRemaining > $creditUser - $creditLimit) {
  406. $amountRemaining = $creditUser - $creditLimit;
  407. }
  408. if ($amountRemaining > 0) {
  409. $creditHistoryManager->createCreditHistory(
  410. CreditHistory::TYPE_PAYMENT,
  411. $amountRemaining,
  412. $producer,
  413. GlobalParam::getCurrentUser(),
  414. GlobalParam::getCurrentUser(),
  415. MeanPayment::CREDIT,
  416. $order
  417. );
  418. $orderManager->updateOrderStatus($order, 'paid-by-credit', 'user');
  419. } else {
  420. $orderManager->updateOrderStatus($order, 'waiting-paiement-on-delivery', 'user');
  421. }
  422. } // surplus à rembourser
  423. elseif ($orderManager->getPaymentStatus($order) == Order::PAYMENT_SURPLUS) {
  424. $amountSurplus = $orderManager->getOrderAmount($order, Order::AMOUNT_SURPLUS);
  425. $creditHistoryManager->createCreditHistory(
  426. CreditHistory::TYPE_REFUND,
  427. $amountSurplus,
  428. $producer,
  429. GlobalParam::getCurrentUser(),
  430. GlobalParam::getCurrentUser(),
  431. MeanPayment::CREDIT,
  432. $order
  433. );
  434. }
  435. } else {
  436. $orderManager->updateOrderStatus($order, 'waiting-paiement-on-delivery', 'user');
  437. }
  438. $paramsEmail = [
  439. 'from_email' => $producerManager->getEmailOpendistrib($producer),
  440. 'from_name' => $producer->name,
  441. 'to_email' => $user->email,
  442. 'to_name' => $userManager->getUsername($user),
  443. 'subject' => '[' . $producer->name . '] Confirmation de commande',
  444. 'content_view_text' => '@common/mail/orderConfirm-text.php',
  445. 'content_view_html' => '@common/mail/orderConfirm-html.php',
  446. 'content_params' => [
  447. 'order' => $order,
  448. 'pointSale' => $pointSale,
  449. 'distribution' => $distribution,
  450. 'user' => $user,
  451. 'producer' => $producer
  452. ]
  453. ];
  454. /*
  455. * Envoi email de confirmation
  456. */
  457. if ($isNewOrder) {
  458. // au client
  459. if ($producerManager->getConfig('option_email_confirm')) {
  460. Mailjet::sendMail($paramsEmail);
  461. }
  462. // au producteur
  463. $contactProducer = $producerManager->getMainContact($producer);
  464. if ($producerManager->getConfig('option_email_confirm_producer') && $contactProducer && strlen(
  465. $contactProducer->email
  466. )) {
  467. $paramsEmail['to_email'] = $contactProducer->email;
  468. $paramsEmail['to_name'] = $contactProducer->name;
  469. $paramsEmail['content_view_text'] = '@common/mail/orderConfirmProducer-text.php';
  470. $paramsEmail['content_view_html'] = '@common/mail/orderConfirmProducer-html.php';
  471. Mailjet::sendMail($paramsEmail);
  472. }
  473. }
  474. $orderManager->initOrder($order);
  475. $orderManager->updateOrderTillerSynchronization($order);
  476. }
  477. if (!count($productsArray)) {
  478. $errors[] = "Vous n'avez choisi aucun produit";
  479. }
  480. if ($errorDate) {
  481. $errors[] = "Vous ne pouvez pas commander pour cette date.";
  482. }
  483. if ($errorPointSale) {
  484. $errors[] = "Point de vente invalide.";
  485. }
  486. return $errors;
  487. }
  488. /**
  489. * Annule une commande.
  490. */
  491. public function actionCancel(int $id)
  492. {
  493. $orderManager = $this->getOrderManager();
  494. $order = $this->getOrderManager()->findOneOrderById($id);
  495. $orderManager->initOrder($order);
  496. if (!$order) {
  497. throw new \yii\web\NotFoundHttpException('Commande introuvable');
  498. }
  499. if (!$orderManager->isOrderStateOpen($order)) {
  500. throw new UserException('Vous ne pouvez plus annuler cette commande.');
  501. }
  502. if ($orderManager->isOrderbelongsToUser($order, GlobalParam::getCurrentUser())) {
  503. $orderManager->deleteOrder($order);
  504. $this->setFlash('success', 'Votre commande a bien été annulée.');
  505. }
  506. return $this->redirect($this->getUrlManagerProducer()->createUrl(['order/history']));
  507. }
  508. /**
  509. * Page de confirmation de commande.
  510. */
  511. public function actionConfirm(int $idOrder, string $returnPayment = '')
  512. {
  513. $orderManager = $this->getOrderManager();
  514. $order = $orderManager->findOneOrderById($idOrder);
  515. $producer = $this->getProducerCurrent();
  516. if (!$order || (!$producer->option_allow_order_guest && !$orderManager->isOrderBelongsToUser($order, GlobalParam::getCurrentUser()))) {
  517. throw new \yii\base\UserException('Commande introuvable.');
  518. }
  519. $orderManager->initOrder($order);
  520. return $this->render('confirm', [
  521. 'order' => $order,
  522. 'returnPayment' => $returnPayment
  523. ]);
  524. }
  525. /**
  526. * Vérifie le code saisi pour un point de vente.
  527. */
  528. public function actionAjaxValidateCodePointSale(int $idPointSale, string $code)
  529. {
  530. \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
  531. $pointSaleManager = $this->getPointSaleManager();
  532. $pointSale = $pointSaleManager->findOnePointSaleById($idPointSale);
  533. if ($pointSale && $pointSaleManager->validateCode($pointSale, $code)) {
  534. return 1;
  535. }
  536. return 0;
  537. }
  538. public function actionAjaxInfos(string $date = '', int $pointSaleId = 0)
  539. {
  540. \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
  541. $user = GlobalParam::getCurrentUser();
  542. $producer = $this->getProducerCurrent();
  543. $pointSale = $this->getPointSaleManager()->findOnePointSaleById($pointSaleId);
  544. $order = $this->getOrderUser($date, $pointSale);
  545. return $this->buildJsonAjaxInfos($date, $producer, $pointSale, $user, $order);
  546. }
  547. public function buildJsonAjaxInfos(
  548. string $date,
  549. Producer $producer,
  550. PointSale $pointSale = null,
  551. User $user = null,
  552. Order $order = null
  553. )
  554. {
  555. $orderManager = $this->getOrderManager();
  556. $json = [];
  557. $format = 'Y-m-d';
  558. $dateObject = DateTime::createFromFormat($format, $date);
  559. $json['producer'] = $this->ajaxInfosProducer($producer);
  560. $json['distributions'] = $this->ajaxInfosDistributions($producer, $pointSale);
  561. $json['orders'] = $this->ajaxInfosOrders($producer);
  562. $json['user'] = $this->ajaxInfosUser($producer);
  563. $json['points_sale'] = $this->ajaxInfosPointsSale($producer);
  564. if ($dateObject && $dateObject->format($format) === $date) {
  565. $distribution = $this->getDistributionManager()->createDistributionIfNotExist($date);
  566. $json['distribution'] = $distribution;
  567. $json['points_sale'] = $this->ajaxInfosPointsSale($producer, $distribution);
  568. $json['categories'] = $this->ajaxInfosProductCategories($producer);
  569. $json['products'] = $this->ajaxInfosProducts($producer, $distribution, $pointSale, $user, $order);
  570. if ($order) {
  571. $json['order'] = array_merge($order->getAttributes(), [
  572. 'amount_total' => $orderManager->getOrderAmountWithTax($order, Order::AMOUNT_TOTAL),
  573. 'amount_paid' => $orderManager->getOrderAmount($order, Order::AMOUNT_PAID),
  574. ]);
  575. }
  576. }
  577. return $json;
  578. }
  579. public function ajaxInfosProducer(Producer $producer)
  580. {
  581. return [
  582. 'order_infos' => $producer->order_infos,
  583. 'credit' => $producer->credit,
  584. 'credit_functioning' => $producer->credit_functioning,
  585. 'use_credit_checked_default' => $producer->use_credit_checked_default,
  586. 'credit_limit' => is_numeric($producer->credit_limit) ? $producer->credit_limit : null,
  587. 'option_allow_order_guest' => $producer->option_allow_order_guest,
  588. 'option_order_entry_point' => $producer->option_order_entry_point,
  589. 'option_delivery' => $producer->option_delivery,
  590. 'online_payment' => $producer->online_payment,
  591. 'option_online_payment_type' => $producer->online_payment
  592. ];
  593. }
  594. public function ajaxInfosDistributions(Producer $producer, PointSale $pointSaleCurrent = null)
  595. {
  596. $distributionManager = $this->getDistributionManager();
  597. $dateMini = date('Y-m-d');
  598. $distributionsArray = Distribution::searchAll([
  599. 'active' => 1,
  600. 'id_producer' => $producer->id
  601. ], [
  602. 'conditions' => ['date > :date'],
  603. 'params' => [':date' => $dateMini],
  604. 'join_with' => ['pointSaleDistribution'],
  605. ]);
  606. $distributionsArray = $distributionManager->filterDistributionsByDateDelay($distributionsArray);
  607. // Filtre par point de vente
  608. if ($pointSaleCurrent && $producer->option_order_entry_point == Producer::ORDER_ENTRY_POINT_POINT_SALE) {
  609. $distributionsArrayFilterPointSale = [];
  610. for ($i = 0; $i < count($distributionsArray); $i++) {
  611. $distribution = $distributionsArray[$i];
  612. if ($distributionManager->isPointSaleActive($distribution, $pointSaleCurrent)) {
  613. $countOrders = Order::searchCount([
  614. 'id_distribution' => $distribution->id,
  615. 'id_point_sale' => $pointSaleCurrent->id
  616. ]);
  617. $orderUserPointSale = $this->getOrderUser($distribution->date, $pointSaleCurrent);
  618. if (!$pointSaleCurrent->maximum_number_orders
  619. || ($orderUserPointSale && $orderUserPointSale->id_point_sale == $pointSaleCurrent->id)
  620. || ($pointSaleCurrent->maximum_number_orders &&
  621. ($countOrders < $pointSaleCurrent->maximum_number_orders))) {
  622. $distributionsArrayFilterPointSale[] = $distribution;
  623. }
  624. }
  625. }
  626. return $distributionsArrayFilterPointSale;
  627. } else {
  628. return $distributionsArray;
  629. }
  630. }
  631. public function ajaxInfosOrders(Producer $producer, PointSale $pointSaleCurrent = null): array
  632. {
  633. $producerManager = $this->getProducerManager();
  634. $orderManager = $this->getOrderManager();
  635. $dateMini = date('Y-m-d');
  636. $ordersUserArray = [];
  637. if (GlobalParam::getCurrentUserId() && !$producerManager->isOnlinePaymentActiveAndTypeOrder($producer)) {
  638. $conditionsOrdersUser = [
  639. 'distribution.date > :date'
  640. ];
  641. $paramsOrdersUser = [
  642. ':date' => $dateMini
  643. ];
  644. if ($pointSaleCurrent && $producer->option_order_entry_point == Producer::ORDER_ENTRY_POINT_POINT_SALE) {
  645. $conditionsOrdersUser[] = 'order.id_point_sale = :id_point_sale';
  646. $paramsOrdersUser[':id_point_sale'] = $pointSaleCurrent->id;
  647. }
  648. $ordersUserArray = Order::searchAll([
  649. 'id_user' => GlobalParam::getCurrentUserId()
  650. ], [
  651. 'conditions' => $conditionsOrdersUser,
  652. 'params' => $paramsOrdersUser
  653. ]);
  654. }
  655. if (is_array($ordersUserArray) && count($ordersUserArray)) {
  656. foreach ($ordersUserArray as &$order) {
  657. $order = array_merge($order->getAttributes(), [
  658. 'amount_total' => $orderManager->getOrderAmountWithTax($order, Order::AMOUNT_TOTAL),
  659. 'date_distribution' => $order->distribution->date,
  660. 'pointSale' => $order->pointSale->getAttributes()
  661. ]);
  662. }
  663. }
  664. return $ordersUserArray;
  665. }
  666. public function ajaxInfosUser(Producer $producer)
  667. {
  668. $userProducerManager = $this->getUserProducerManager();
  669. $producerManager = $this->getProducerManager();
  670. $user = GlobalParam::getCurrentUser();
  671. if($user) {
  672. $userProducer = $userProducerManager->findOneUserProducer($user, $producer);
  673. if (!$userProducer) {
  674. $userProducer = $producerManager->addUser($user, $producer);
  675. }
  676. }
  677. $jsonUser = false;
  678. if ($user && $userProducer) {
  679. $jsonUser = [
  680. 'address' => $user->address,
  681. 'credit' => $userProducer->credit,
  682. 'credit_active' => $userProducer->credit_active,
  683. ];
  684. }
  685. return $jsonUser;
  686. }
  687. private function ajaxInfosPointsSale($producer, $distribution = false)
  688. {
  689. $userManager = $this->getUserManager();
  690. $producerManager = $this->getProducerManager();
  691. $user = GlobalParam::getCurrentUser();
  692. $pointsSaleArray = PointSale::find();
  693. if ($distribution) {
  694. $pointsSaleArray = $pointsSaleArray->joinWith([
  695. 'pointSaleDistribution' => function ($query) use (
  696. $distribution
  697. ) {
  698. $query->where(
  699. [
  700. 'id_distribution' => $distribution->id,
  701. 'delivery' => 1
  702. ]
  703. );
  704. }
  705. ]);
  706. }
  707. if (GlobalParam::getCurrentUserId()) {
  708. $pointsSaleArray = $pointsSaleArray->with([
  709. 'userPointSale' => function ($query) {
  710. $query->onCondition(
  711. ['id_user' => GlobalParam::getCurrentUserId()]
  712. );
  713. }
  714. ]);
  715. }
  716. $pointsSaleArray = $pointsSaleArray->where(['id_producer' => $producer->id])
  717. ->andWhere(
  718. 'status = 1 AND (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))'
  719. )
  720. ->params([':id_user' => GlobalParam::getCurrentUserId()])
  721. ->orderBy('code ASC, restricted_access ASC, is_bread_box ASC, `default` DESC, name ASC')
  722. ->all();
  723. $creditFunctioningProducer = $producerManager->getConfig('credit_functioning');
  724. $position = 0;
  725. foreach ($pointsSaleArray as &$pointSale) {
  726. $pointSale = array_merge($pointSale->getAttributes(), [
  727. 'pointSaleDistribution' => [
  728. 'id_distribution' => $pointSale->pointSaleDistribution ? $pointSale->pointSaleDistribution[0]->id_distribution : false,
  729. 'id_point_sale' => $pointSale->pointSaleDistribution ? $pointSale->pointSaleDistribution[0]->id_point_sale : false,
  730. 'delivery' => $pointSale->pointSaleDistribution ? $pointSale->pointSaleDistribution[0]->delivery : false,
  731. ],
  732. 'userPointSale' => ($pointSale->userPointSale ? $pointSale->userPointSale[0] : '')
  733. ]);
  734. if ($pointSale['code'] && strlen($pointSale['code'])) {
  735. $pointSale['code'] = '***';
  736. }
  737. if (!strlen($pointSale['credit_functioning'])) {
  738. $pointSale['credit_functioning'] = $creditFunctioningProducer;
  739. }
  740. if ($distribution) {
  741. $pointSale['count_orders'] = (int)Order::searchCount([
  742. 'id_distribution' => $distribution->id,
  743. 'id_point_sale' => $pointSale['id']
  744. ]);
  745. }
  746. $pointSale['position'] = $position;
  747. $position++;
  748. }
  749. $favoritePointSale = false;
  750. if ($user) {
  751. $favoritePointSale = $userManager->getUserFavoritePointSale($user);
  752. }
  753. if ($favoritePointSale) {
  754. for ($i = 0; $i < count($pointsSaleArray); $i++) {
  755. if ($pointsSaleArray[$i]['id'] == $favoritePointSale->id) {
  756. $theFavoritePointSale = $pointsSaleArray[$i];
  757. unset($pointsSaleArray[$i]);
  758. }
  759. }
  760. if (isset($theFavoritePointSale)) {
  761. $pointsSaleArray = array_reverse($pointsSaleArray, false);
  762. $pointsSaleArray[] = $theFavoritePointSale;
  763. $pointsSaleArray = array_reverse($pointsSaleArray, false);
  764. }
  765. }
  766. return $pointsSaleArray;
  767. }
  768. public function ajaxInfosProductCategories(Producer $producer)
  769. {
  770. $categoriesArray = $this->getProductCategoryManager()->findProductCategoriesAsArray();
  771. $countProductsWithoutCategory = $this->getProductManager()->countProductsWithoutCategory($producer);
  772. if ($countProductsWithoutCategory) {
  773. array_unshift($categoriesArray, ['id' => null, 'name' => 'Catégorie par défaut']);
  774. }
  775. return $categoriesArray;
  776. }
  777. public function ajaxInfosProducts(
  778. Producer $producer,
  779. Distribution $distribution,
  780. PointSale $pointSale = null,
  781. User $user = null,
  782. Order $order = null
  783. )
  784. {
  785. $productManager = $this->getProductManager();
  786. $orderManager = $this->getOrderManager();
  787. $ordersArray = $this->getOrderManager()->findOrdersByDistribution($distribution);
  788. $productsArray = Product::find()
  789. ->where([
  790. 'id_producer' => $producer->id,
  791. 'product.active' => 1,
  792. ]);
  793. $productsArray = $productsArray->joinWith([
  794. 'productDistribution' => function ($query) use (
  795. $distribution
  796. ) {
  797. $query->andOnCondition(
  798. 'product_distribution.id_distribution = ' . $distribution->id
  799. );
  800. },
  801. 'productPrice'
  802. ])
  803. ->orderBy('product_distribution.active DESC, order ASC')
  804. ->all();
  805. $productsArrayFilter = [];
  806. // filtre sur les points de vente
  807. if($pointSale) {
  808. foreach ($productsArray as $product) {
  809. if ($productManager->isAvailableOnPointSale($product, $pointSale)) {
  810. $productsArrayFilter[] = $product;
  811. }
  812. }
  813. }
  814. $indexProduct = 0;
  815. foreach ($productsArrayFilter as $key => &$product) {
  816. $productObject = $product;
  817. $product = array_merge(
  818. $product->getAttributes(),
  819. [
  820. 'unit_coefficient' => Product::$unitsArray[$product->unit]['coefficient'],
  821. 'prices' => $productManager->getPriceArray($product, $user, $pointSale),
  822. 'productDistribution' => $product['productDistribution'],
  823. 'productPointSale' => $product['productPointSale'],
  824. ]
  825. );
  826. $coefficient_unit = Product::$unitsArray[$product['unit']]['coefficient'];
  827. if (is_null($product['photo'])) {
  828. $product['photo'] = '';
  829. }
  830. $product['quantity_max'] = (isset($product['productDistribution']) && isset($product['productDistribution'][0])) ? $product['productDistribution'][0]['quantity_max'] : null;
  831. $quantityOrder = $orderManager->getProductQuantity($productObject, $ordersArray);
  832. $product['quantity_ordered'] = $quantityOrder;
  833. $product['quantity_remaining'] = $product['quantity_max'] - $quantityOrder;
  834. $product['wording_unit'] = $productManager->strUnit($product['unit'], 'wording_unit', true);
  835. $product['wording_unit_ref'] = $productManager->strUnit($product['unit'], 'wording_short', true);
  836. if ($order) {
  837. $quantityOrderUser = $orderManager->getProductQuantity($productObject, [$order], true);
  838. $product['quantity_ordered'] = $quantityOrder;
  839. $product['quantity_remaining'] = $product['quantity_max'] - $quantityOrder + $quantityOrderUser;
  840. $product['quantity_form'] = $quantityOrderUser * $coefficient_unit;
  841. foreach ($order->productOrder as $productOrder) {
  842. if ($productOrder->id_product == $product['id']) {
  843. $product['wording_unit'] = $productManager->strUnit($productOrder->unit, 'wording_unit', true);
  844. $product['step'] = $productOrder->step;
  845. }
  846. }
  847. } else {
  848. $product['quantity_form'] = 0;
  849. $product['wording_unit'] = $productManager->strUnit($product['unit'], 'wording_unit', true);
  850. }
  851. $product['coefficient_unit'] = $coefficient_unit;
  852. if ($product['quantity_remaining'] < 0) {
  853. $product['quantity_remaining'] = 0;
  854. }
  855. $product['index'] = $indexProduct++;
  856. }
  857. return $productsArrayFilter;
  858. }
  859. private function getOrderUser(string $date, PointSale $pointSale = null)
  860. {
  861. $orderManager = $this->getOrderManager();
  862. $orderUser = null;
  863. if (GlobalParam::getCurrentUserId()) {
  864. $conditionOrderUser = [
  865. 'distribution.date' => $date,
  866. 'id_user' => GlobalParam::getCurrentUserId(),
  867. ];
  868. if ($pointSale) {
  869. $conditionOrderUser['id_point_sale'] = $pointSale;
  870. }
  871. $orderUser = Order::searchOne($conditionOrderUser);
  872. if ($orderUser && $orderUser->online_payment_url) {
  873. $orderUser = null;
  874. }
  875. }
  876. return $orderUser;
  877. }
  878. }