Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

756 lines
26KB

  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. use common\models\User ;
  34. use common\models\Producer ;
  35. use common\models\Order ;
  36. use DateTime;
  37. class OrderController extends ProducerBaseController
  38. {
  39. var $enableCsrfValidation = false;
  40. public function behaviors()
  41. {
  42. return [
  43. 'access' => [
  44. 'class' => AccessControl::className(),
  45. 'rules' => [
  46. [
  47. 'allow' => true,
  48. 'roles' => ['@'],
  49. ]
  50. ],
  51. ],
  52. ];
  53. }
  54. public function actionOrder($id = 0)
  55. {
  56. $params = [] ;
  57. if($id) {
  58. $order = Order::searchOne([
  59. 'id' => $id
  60. ]) ;
  61. if($order) {
  62. if($order->getState() == Order::STATE_OPEN) {
  63. $params['order'] = $order ;
  64. }
  65. }
  66. }
  67. return $this->render('order', $params) ;
  68. }
  69. /**
  70. * Retourne au format JSON toutes les informations relatives à une
  71. * production donnée.
  72. *
  73. * @param integer $idDistribution
  74. * @return mixed
  75. */
  76. public function actionInfosDistribution($idDistribution)
  77. {
  78. $distribution = Distribution::searchOne([
  79. 'id' => $idDistribution
  80. ]);
  81. if ($distribution) {
  82. $arr = [];
  83. $productsArray = ProductDistribution::searchByDistribution($distribution->id) ;
  84. $data['products'] = $productsArray;
  85. $pointSaleArray = PointSale::find()
  86. ->joinWith(['pointSaleDistribution' => function($q) use ($distribution) {
  87. $q->where(['id_distribution' => $distribution->id]);
  88. }])
  89. ->where([
  90. 'id_producer' => $distribution->id_producer,
  91. ])
  92. ->all();
  93. $data['points_sale'] = [];
  94. foreach ($pointSaleArray as $pointSale) {
  95. if (isset($pointSale->pointSaleDistribution) &&
  96. isset($pointSale->pointSaleDistribution[0])) {
  97. $data['points_sale'][$pointSale->id] = $pointSale->pointSaleDistribution[0]->delivery;
  98. } else {
  99. $data['points_sale'][$pointSale->id] = false;
  100. }
  101. }
  102. return json_encode($data);
  103. }
  104. return json_encode([]);
  105. }
  106. /**
  107. * Initialise le formulaire de création/modification de commande.
  108. *
  109. * @param Order $order
  110. * @return array
  111. */
  112. public function initForm($order = null) {
  113. // Producteurs
  114. $producersArray = Yii::$app->user->identity->getBookmarkedProducers();
  115. $idProducer = $this->getProducer()->id;
  116. // Producteur
  117. $producer = Producer::findOne($idProducer);
  118. // Points de vente
  119. $pointsSaleArray = PointSale::find()
  120. ->with('userPointSale')
  121. ->where(['id_producer' => $idProducer])
  122. ->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)')
  123. ->params([':id_user' => User::getCurrentId()])
  124. ->all();
  125. // jours de production
  126. $deadline = 20;
  127. $date = date('Y-m-d');
  128. if (isset($producer)) {
  129. if($producer->order_deadline) {
  130. $deadline = $producer->order_deadline;
  131. }
  132. if (date('H') >= $deadline) {
  133. $date = date('Y-m-d', strtotime(date('Y-m-d')) + ($producer->order_delay) * (24 * 60 * 60));
  134. } else {
  135. $date = date('Y-m-d', strtotime(date('Y-m-d')) + ($producer->order_delay - 1) * (24 * 60 * 60));
  136. }
  137. }
  138. $distributionDays = Distribution::find()
  139. ->where(['active' => 1])
  140. ->andWhere('date > :date')
  141. ->andWhere(['id_producer' => $idProducer])
  142. ->addParams([':date' => $date])
  143. ->all();
  144. $distributionDaysArray = array('' => '--');
  145. foreach ($distributionDays as $distribution) {
  146. $distributionDaysArray[$distribution->id] = date('d/m/Y', strtotime($distribution->date));
  147. }
  148. // produits
  149. $products = Product::find()
  150. ->leftJoin('product_distribution', 'product.id = product_distribution.id_product')
  151. ->where(['product.active' => 1, 'id_producer' => $idProducer])
  152. ->orderBy('product.order ASC')->all();
  153. $productsArray = [] ;
  154. foreach ($products as $p)
  155. $productsArray[] = $p;
  156. // produits selec
  157. $posts = Yii::$app->request->post();
  158. $selectedProducts = [];
  159. if (isset($posts['Product'])) {
  160. foreach ($posts['Product'] as $key => $quantity) {
  161. $key = (int) str_replace('product_', '', $key);
  162. $product = Product::find()->where(['id' => $key])->one();
  163. if ($product && $quantity)
  164. $selectedProducts[$product->id] = (int) $quantity;
  165. }
  166. }
  167. elseif (!is_null($order)) {
  168. $productOrderArray = ProductOrder::searchAll([
  169. 'id_order' => $order->id
  170. ]) ;
  171. foreach ($productOrderArray as $productOrder) {
  172. $selectedProducts[$productOrder->id_product] = (int) $productOrder->quantity;
  173. }
  174. }
  175. $availableProducts = [] ;
  176. $distribution = null;
  177. if (!is_null($order) && $order->id_distribution) {
  178. $availableProducts = ProductDistribution::searchByDistribution($order->id_distribution);
  179. $distribution = Distribution::find()->where(['id' => $order->id_distribution])->one();
  180. }
  181. $orders = Order::searchAll([
  182. 'id_user' => User::getCurrentId()
  183. ]) ;
  184. if ($idProducer) {
  185. $userProducer = UserProducer::searchOne([
  186. 'id_producer' => $idProducer,
  187. 'id_user' => User::getCurrentId()
  188. ]) ;
  189. $credit = $userProducer->credit;
  190. } else {
  191. $credit = 0;
  192. }
  193. return [
  194. 'pointsSaleArray' => $pointsSaleArray,
  195. 'distributionDaysArray' => $distributionDaysArray,
  196. 'productsArray' => $productsArray,
  197. 'selectedProducts' => $selectedProducts,
  198. 'availableProducts' => $availableProducts,
  199. 'distribution' => $distribution,
  200. 'ordersArray' => $orders,
  201. 'producersArray' => $producersArray,
  202. 'idProducer' => $idProducer,
  203. 'producer' => $producer,
  204. 'credit' => $credit
  205. ];
  206. }
  207. /**
  208. * Affiche l'historique des commandes de l'utilisateur
  209. *
  210. * @return ProducerView
  211. */
  212. public function actionHistory()
  213. {
  214. $dataProviderOrders = new ActiveDataProvider([
  215. 'query' => Order::find()
  216. ->with('productOrder', 'pointSale', 'creditHistory')
  217. ->joinWith('distribution', 'distribution.producer')
  218. ->where([
  219. 'id_user' => Yii::$app->user->id,
  220. 'distribution.id_producer' => $this->getProducer()->id
  221. ])
  222. ->orderBy('distribution.date DESC'),
  223. 'pagination' => [
  224. 'pageSize' => 10,
  225. ],
  226. ]);
  227. return $this->render('history', [
  228. 'dataProviderOrders' => $dataProviderOrders,
  229. 'orderOk' => Yii::$app->getRequest()->get('orderOk', false),
  230. 'cancelOk' => Yii::$app->getRequest()->get('cancelOk', false),
  231. ]);
  232. }
  233. /**
  234. * Supprime un producteur.
  235. *
  236. * @param integer $id
  237. */
  238. public function actionRemoveProducer($id = 0)
  239. {
  240. $userProducer = UserProducer::find()
  241. ->where(['id_producer' => $id, 'id_user' => User::getCurrentId()])
  242. ->one();
  243. $userProducer->active = 0;
  244. $userProducer->save();
  245. $this->redirect(['order/index']);
  246. }
  247. /**
  248. * Crée une commande.
  249. *
  250. * @return mixed
  251. */
  252. public function actionAjaxProcess()
  253. {
  254. \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
  255. $order = new Order ;
  256. $idProducer = $this->getProducer()->id ;
  257. $posts = Yii::$app->request->post();
  258. if ($idProducer) {
  259. $this->_verifyProducerActive($idProducer);
  260. }
  261. if ($order->load($posts)) {
  262. $order = Order::find()
  263. ->where('id_distribution = :id_distribution')
  264. ->andWhere('id_user = :id_user')
  265. ->params([
  266. ':id_distribution' => $posts['Order']['id_distribution'],
  267. ':id_user' => User::getCurrentId()
  268. ])
  269. ->one();
  270. if (!$order) {
  271. $order = new Order;
  272. $order->load(Yii::$app->request->post());
  273. $order->id_user = User::getCurrentId();
  274. $order->date = date('Y-m-d H:i:s');
  275. $order->origin = Order::ORIGIN_USER;
  276. }
  277. $errors = $this->processForm($order);
  278. if(count($errors)) {
  279. return ['status' => 'error', 'errors' => $errors] ;
  280. }
  281. }
  282. return ['status' => 'success'] ;
  283. }
  284. /**
  285. * Modifie une commande.
  286. *
  287. * @param integer $id
  288. * @return mixed
  289. * @throws UserException
  290. */
  291. public function actionUpdate($id)
  292. {
  293. $order = Order::searchOne([
  294. 'id' => $id
  295. ]) ;
  296. if ($order->getState() != Order::STATE_OPEN) {
  297. throw new UserException('Cette commande n\'est pas modifiable.');
  298. }
  299. $this->_verifyProducerActive($order->distribution->id_producer);
  300. if ($order && $order->load(Yii::$app->request->post())) {
  301. $order->date_update = date('Y-m-d H:i:s');
  302. $this->processForm($order);
  303. }
  304. return $this->render('update', array_merge($this->initForm($order), [
  305. 'model' => $order,
  306. 'orderNotfound' => !$order,
  307. ]));
  308. }
  309. /**
  310. * Vérifie si un producteur est actif.
  311. *
  312. * @param integer $idProducer
  313. * @throws NotFoundHttpException
  314. */
  315. public function _verifyProducerActive($idProducer)
  316. {
  317. $producer = Producer::findOne($idProducer);
  318. if ($producer && !$producer->active) {
  319. throw new NotFoundHttpException('Ce producteur est actuellement hors ligne.');
  320. }
  321. }
  322. /**
  323. * Traite le formulaire de création/modification de commande.
  324. *
  325. * @param Commande $order
  326. */
  327. public function processForm($order)
  328. {
  329. $posts = Yii::$app->request->post();
  330. $productsArray = [];
  331. $totalQuantity = 0;
  332. foreach ($posts['products'] as $key => $quantity) {
  333. $product = Product::find()->where(['id' => (int) $key])->one();
  334. $totalQuantity += $quantity;
  335. if ($product && $quantity) {
  336. $productsArray[] = $product;
  337. }
  338. }
  339. $producer = $this->getProducer() ;
  340. // date
  341. $errorDate = false;
  342. if (isset($order->id_distribution)) {
  343. // date de commande
  344. $distribution = Distribution::find()->where(['id' => $order->id_distribution])->one();
  345. $date = $this->getProducer()->getEarliestDateOrder() ;
  346. if($order->getState() != Order::STATE_OPEN) {
  347. $errorDate = true;
  348. }
  349. }
  350. // point de vente
  351. $errorPointSale = false;
  352. if (isset($distribution) && $distribution) {
  353. $pointSaleDistribution = PointSaleDistribution::searchOne([
  354. 'id_distribution' => $distribution->id,
  355. 'id_point_sale' => $posts['Order']['id_point_sale']
  356. ]) ;
  357. if (!$pointSaleDistribution || !$pointSaleDistribution->delivery) {
  358. $errorPointSale = true;
  359. }
  360. $pointSale = PointSale::findOne($posts['Order']['id_point_sale']);
  361. if ($pointSale) {
  362. if (strlen($pointSale->code) && !$pointSale->validateCode($posts['code_point_sale'])) {
  363. $errorPointSale = true;
  364. }
  365. } else {
  366. $errorPointSale = true;
  367. }
  368. }
  369. $errors = [] ;
  370. if ($order->validate() && count($productsArray) && !$errorDate && !$errorPointSale) {
  371. // gestion point de vente
  372. $pointSale = PointSale::searchOne([
  373. 'id' => $order->id_point_sale
  374. ]) ;
  375. $order->comment_point_sale = ($pointSale && strlen($pointSale->getComment())) ?
  376. $pv->getComment() : '' ;
  377. // la commande est automatiquement réactivée lors d'une modification
  378. $order->date_delete = null ;
  379. // sauvegarde de la commande
  380. $order->save();
  381. // ajout de l'utilisateur à l'établissement
  382. Producer::addUser(User::getCurrentId(), $distribution->id_producer) ;
  383. // suppression de tous les enregistrements ProductOrder
  384. if (!is_null($order)) {
  385. ProductOrder::deleteAll(['id_order' => $order->id]);
  386. }
  387. // produits dispos
  388. $availableProducts = ProductDistribution::searchByDistribution($distribution->id) ;
  389. // sauvegarde des produits
  390. foreach ($productsArray as $product) {
  391. if (isset($availableProducts[$product->id])) {
  392. $productOrder = new ProductOrder();
  393. $productOrder->id_order = $order->id;
  394. $productOrder->id_product = $product->id;
  395. $productOrder->price = $product->price;
  396. $quantity = (int) $posts['products'][$product->id] ;
  397. if ($availableProducts[$product->id]['quantity_max'] && $quantity > $availableProducts[$product->id]['quantity_remaining']) {
  398. $quantity = $availableProducts[$product->id]['quantity_remaining'];
  399. }
  400. $productOrder->quantity = $quantity;
  401. $productOrder->sale_mode = Product::SALE_MODE_UNIT ;
  402. $productOrder->save();
  403. }
  404. }
  405. // credit
  406. $credit = Producer::getConfig('credit');
  407. $order = Order::searchOne([
  408. 'id' => $order->id
  409. ]) ;
  410. if ($credit && ($pointSale->credit || $order->getAmount(Order::AMOUNT_PAID))) {
  411. $amountPaid = $order->getAmount(Order::AMOUNT_PAID);
  412. // à payer
  413. if ($order->getPaymentStatus() == Order::PAYMENT_UNPAID) {
  414. $amountRemaining = $order->getAmount(Order::AMOUNT_REMAINING) ;
  415. $credit = Yii::$app->user->identity->getCredit($distribution->id_producer);
  416. if ($amountRemaining > $credit) {
  417. $amountRemaining = $credit;
  418. }
  419. if ($amountRemaining > 0) {
  420. $order->saveCreditHistory(
  421. CreditHistory::TYPE_PAYMENT,
  422. $amountRemaining,
  423. $distribution->id_producer,
  424. User::getCurrentId(),
  425. User::getCurrentId()
  426. );
  427. }
  428. }
  429. // surplus à rembourser
  430. elseif ($order->getPaymentStatus() == Order::PAYMENT_SURPLUS) {
  431. $amountSurplus = $order->getAmount(Order::AMOUNT_SURPLUS) ;
  432. $order->saveCreditHistory(
  433. CreditHistory::TYPE_REFUND,
  434. $amountSurplus,
  435. $distribution->id_producer,
  436. User::getCurrentId(),
  437. User::getCurrentId()
  438. );
  439. }
  440. }
  441. // redirection
  442. //$this->redirect(Yii::$app->urlManager->createUrl(['order/history', 'orderOk' => true]));
  443. }
  444. else {
  445. if (!count($productsArray)) {
  446. $errors[] = "Vous n'avez choisi aucun produit" ;
  447. }
  448. if ($errorDate) {
  449. $errors[] = "Vous ne pouvez pas commander pour cette date." ;
  450. }
  451. if ($errorPointSale) {
  452. $errors[] = "Point de vente invalide." ;
  453. }
  454. }
  455. return $errors ;
  456. }
  457. /**
  458. * Annule une commande.
  459. *
  460. * @param integer $id
  461. * @throws \yii\web\NotFoundHttpException
  462. * @throws UserException
  463. */
  464. public function actionCancel($id)
  465. {
  466. $order = Order::searchOne([
  467. 'id' => $id
  468. ]) ;
  469. if(!$order) {
  470. throw new \yii\web\NotFoundHttpException('Commande introuvable');
  471. }
  472. if ($order->getState() != Order::STATE_OPEN) {
  473. throw new UserException('Vous ne pouvez plus annuler cette commande.');
  474. }
  475. if ($order && User::getCurrentId() == $order->id_user) {
  476. // remboursement
  477. if ($order->getAmount(Order::AMOUNT_PAID)) {
  478. $order->saveCreditHistory(
  479. CreditHistory::TYPE_REFUND,
  480. $order->getAmount(Order::AMOUNT_PAID),
  481. $order->distribution->id_producer,
  482. User::getCurrentId(),
  483. User::getCurrentId()
  484. );
  485. }
  486. // delete
  487. $order->date_delete = date('Y-m-d H:i:s');
  488. $order->save() ;
  489. Yii::$app->session->setFlash('success','Votre commande a bien été annulée.') ;
  490. }
  491. $this->redirect(Yii::$app->urlManager->createUrl(['order/history']));
  492. }
  493. /**
  494. * Vérifie le code saisi pour un point de vente.
  495. *
  496. * @param integer $idPointSale
  497. * @param string $code
  498. * @return boolean
  499. */
  500. public function actionAjaxValidateCodePointSale($idPointSale, $code)
  501. {
  502. \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
  503. $pointSale = PointSale::findOne($idPointSale);
  504. if ($pointSale) {
  505. if ($pointSale->validateCode($code)) {
  506. return 1;
  507. }
  508. }
  509. return 0;
  510. }
  511. public function actionAjaxInfos($date = '')
  512. {
  513. \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
  514. $json = [] ;
  515. $format = 'Y-m-d' ;
  516. $dateObject = DateTime::createFromFormat($format, $date);
  517. // Producteur
  518. $producer = Producer::searchOne([
  519. 'id' => $this->getProducer()->id
  520. ]) ;
  521. $json['producer'] = [
  522. 'order_infos' => $producer->order_infos,
  523. 'credit' => $producer->credit
  524. ] ;
  525. // Distributions
  526. $dateMini = $producer->getEarliestDateOrder() ;
  527. $distributionsArray = Distribution::searchAll([
  528. 'active' => 1
  529. ], [
  530. 'conditions' => ['date > :date'],
  531. 'params' => [':date' => $dateMini],
  532. ]) ;
  533. $json['distributions'] = $distributionsArray ;
  534. // Commandes de l'utilisateur
  535. $ordersUserArray = Order::searchAll([
  536. 'id_user' => User::getCurrentId()
  537. ], [
  538. 'conditions' => [
  539. 'distribution.date > :date'
  540. ],
  541. 'params' => [
  542. ':date' => $dateMini
  543. ]
  544. ]);
  545. foreach($ordersUserArray as &$order) {
  546. $order = array_merge($order->getAttributes(), [
  547. 'amount_total' => $order->getAmount(Order::AMOUNT_TOTAL),
  548. 'date_distribution' => $order->distribution->date,
  549. 'pointSale' => $order->pointSale->getAttributes()
  550. ]) ;
  551. }
  552. $json['orders'] = $ordersUserArray;
  553. // User
  554. $userProducer = UserProducer::searchOne([
  555. 'id_producer' => $producer->id,
  556. 'id_user' => User::getCurrentId()
  557. ]) ;
  558. $json['credit'] = $userProducer->credit ;
  559. if($dateObject && $dateObject->format($format) === $date) {
  560. // Commande de l'utilisateur
  561. $orderUser = Order::searchOne([
  562. 'distribution.date' => $date,
  563. 'id_user' => User::getCurrentId(),
  564. ]);
  565. if($orderUser) {
  566. $json['order'] = array_merge($orderUser->getAttributes(), [
  567. 'amount_total' => $orderUser->getAmount(Order::AMOUNT_TOTAL),
  568. 'amount_paid' => $orderUser->getAmount(Order::AMOUNT_PAID),
  569. ]) ;
  570. }
  571. // distribution
  572. $distribution = Distribution::initDistribution($date) ;
  573. $json['distribution'] = $distribution ;
  574. $pointsSaleArray = PointSale::find()
  575. ->joinWith(['pointSaleDistribution' => function($query) use ($distribution) {
  576. $query->where(['id_distribution' => $distribution->id]);
  577. }
  578. ])
  579. ->with(['userPointSale' => function($query) {
  580. $query->onCondition(['id_user' => User::getCurrentId()]) ;
  581. }])
  582. ->where([
  583. 'id_producer' => $distribution->id_producer,
  584. ])
  585. ->all();
  586. foreach($pointsSaleArray as &$pointSale) {
  587. $pointSale = array_merge($pointSale->getAttributes(),[
  588. 'pointSaleDistribution' => [
  589. 'id_distribution' => $pointSale->pointSaleDistribution[0]->id_distribution,
  590. 'id_point_sale' => $pointSale->pointSaleDistribution[0]->id_point_sale,
  591. 'delivery' => $pointSale->pointSaleDistribution[0]->delivery
  592. ],
  593. 'userPointSale' => ($pointSale->userPointSale ? $pointSale->userPointSale[0] : '')
  594. ]) ;
  595. }
  596. $json['points_sale'] = $pointsSaleArray;
  597. // Commandes totales
  598. $ordersArray = Order::searchAll([
  599. 'distribution.date' => $date,
  600. ]);
  601. // Produits
  602. $productsArray = Product::find()
  603. ->where([
  604. 'id_producer' => $this->getProducer()->id,
  605. ])
  606. ->joinWith(['productDistribution' => function($query) use($distribution) {
  607. $query->andOnCondition('product_distribution.id_distribution = '.$distribution->id) ;
  608. }])
  609. ->orderBy('product_distribution.active DESC, order ASC')
  610. ->asArray()
  611. ->all();
  612. $indexProduct = 0 ;
  613. foreach($productsArray as &$product) {
  614. $quantityOrder = Order::getProductQuantity($product['id'], $ordersArray) ;
  615. $product['quantity_ordered'] = $quantityOrder ;
  616. $product['quantity_remaining'] = $product['quantity_max'] - $quantityOrder ;
  617. if($orderUser) {
  618. $quantityOrderUser = Order::getProductQuantity($product['id'], [$orderUser]) ;
  619. $product['quantity_ordered'] = $quantityOrder ;
  620. $product['quantity_remaining'] = $product['quantity_max'] - $quantityOrder + $quantityOrderUser ;
  621. $product['quantity_form'] = $quantityOrderUser ;
  622. }
  623. else {
  624. $product['quantity_form'] = 0 ;
  625. }
  626. if($product['quantity_remaining'] < 0) $product['quantity_remaining'] = 0 ;
  627. $product['index'] = $indexProduct ++ ;
  628. }
  629. $json['products'] = $productsArray;
  630. }
  631. return $json ;
  632. }
  633. }