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.

736 lines
27KB

  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 common\models;
  38. use Yii;
  39. use yii\helpers\Html;
  40. use common\models\Producer;
  41. use common\components\ActiveRecordCommon;
  42. /**
  43. * This is the model class for table "order".
  44. *
  45. * @property integer $id
  46. * @property integer $id_user
  47. * @property string $date
  48. * @property string $date_update
  49. * @property integer $id_point_sale
  50. * @property integer $id_distribution
  51. * @property boolean $auto_payment
  52. * @property integer $id_subscription
  53. */
  54. class Order extends ActiveRecordCommon
  55. {
  56. var $amount = 0;
  57. var $paid_amount = 0;
  58. var $weight = 0;
  59. const ORIGIN_AUTO = 'auto';
  60. const ORIGIN_USER = 'user';
  61. const ORIGIN_ADMIN = 'admin';
  62. const PAYMENT_PAID = 'paid';
  63. const PAYMENT_UNPAID = 'unpaid';
  64. const PAYMENT_SURPLUS = 'surplus';
  65. const AMOUNT_TOTAL = 'total';
  66. const AMOUNT_PAID = 'paid';
  67. const AMOUNT_REMAINING = 'remaining';
  68. const AMOUNT_SURPLUS = 'surplus';
  69. const STATE_OPEN = 'open';
  70. const STATE_PREPARATION = 'preparation';
  71. const STATE_DELIVERED = 'delivered';
  72. /**
  73. * @inheritdoc
  74. */
  75. public static function tableName()
  76. {
  77. return 'order';
  78. }
  79. /**
  80. * @inheritdoc
  81. */
  82. public function rules()
  83. {
  84. return [
  85. [['id_user', 'date'], 'required', 'message' => ''],
  86. [['id_user', 'id_point_sale', 'id_distribution', 'id_subscription', 'id_invoice', 'id_quotation', 'id_delivery_note'], 'integer'],
  87. [['auto_payment', 'tiller_synchronization'], 'boolean'],
  88. [['date', 'date_update', 'comment', 'comment_point_sale', 'mean_payment'], 'safe']
  89. ];
  90. }
  91. /**
  92. * @inheritdoc
  93. */
  94. public function attributeLabels()
  95. {
  96. return [
  97. 'id' => 'ID',
  98. 'id_user' => 'Id User',
  99. 'date' => 'Date',
  100. 'date_update' => 'Date de modification',
  101. 'id_point_sale' => 'Point de vente',
  102. 'id_distribution' => 'Date de distribution',
  103. 'id_subscription' => 'Abonnement',
  104. 'id_invoice' => 'Facture',
  105. 'id_quotation' => 'Devis',
  106. 'id_delivery_note' => 'Bon de livraison'
  107. ];
  108. }
  109. /*
  110. * Relations
  111. */
  112. public function getUser()
  113. {
  114. return $this->hasOne(User::className(), ['id' => 'id_user']);
  115. }
  116. public function getProductOrder()
  117. {
  118. return $this->hasMany(ProductOrder::className(), ['id_order' => 'id'])
  119. ->with('product');
  120. }
  121. public function getDistribution()
  122. {
  123. return $this->hasOne(Distribution::className(), ['id' => 'id_distribution'])
  124. ->with('producer');
  125. }
  126. public function getPointSale()
  127. {
  128. return $this->hasOne(PointSale::className(), ['id' => 'id_point_sale'])
  129. ->with('userPointSale');
  130. }
  131. public function getCreditHistory()
  132. {
  133. return $this->hasMany(CreditHistory::className(), ['id_order' => 'id']);
  134. }
  135. public function getSubscription()
  136. {
  137. return $this->hasOne(Subscription::className(), ['id' => 'id_subscription'])
  138. ->with('productSubscription');
  139. }
  140. public function getOrderOrderStatus()
  141. {
  142. return $this->hasMany(OrderOrderStatus::className(), ['id_order' => 'id'])->with('orderStatus');
  143. }
  144. public function getInvoice()
  145. {
  146. return $this->hasOne(Invoice::className(), ['id' => 'id_invoice']);
  147. }
  148. public function getQuotation()
  149. {
  150. return $this->hasOne(Quotation::className(), ['id' => 'id_quotation']);
  151. }
  152. public function getDeliveryNote()
  153. {
  154. return $this->hasOne(DeliveryNote::className(), ['id' => 'id_delivery_note']);
  155. }
  156. /**
  157. * Retourne les options de base nécessaires à la fonction de recherche.
  158. *
  159. * @return array
  160. */
  161. public static function defaultOptionsSearch()
  162. {
  163. return [
  164. 'with' => ['productOrder', 'productOrder.product', 'creditHistory', 'creditHistory.userAction', 'pointSale'],
  165. 'join_with' => ['distribution', 'user', 'user.userProducer'],
  166. 'orderby' => 'order.date ASC',
  167. 'attribute_id_producer' => 'distribution.id_producer'
  168. ];
  169. }
  170. /**
  171. * Initialise le montant total, le montant déjà payé et le poids de la
  172. * commande.
  173. */
  174. public function init()
  175. {
  176. $this->initAmount();
  177. $this->initPaidAmount();
  178. return $this;
  179. }
  180. /**
  181. * Initialise le montant de la commande.
  182. *
  183. */
  184. public function initAmount()
  185. {
  186. if (isset($this->productOrder)) {
  187. foreach ($this->productOrder as $productOrder) {
  188. $this->amount += $productOrder->price * $productOrder->quantity;
  189. if ($productOrder->unit == 'piece') {
  190. if (isset($productOrder->product)) {
  191. $this->weight += ($productOrder->quantity * $productOrder->product->weight) / 1000;
  192. }
  193. } else {
  194. $this->weight += $productOrder->quantity;
  195. }
  196. }
  197. }
  198. }
  199. /**
  200. * Initialise le montant payé de la commande et le retourne.
  201. *
  202. * @return float
  203. */
  204. public function initPaidAmount()
  205. {
  206. if (isset($this->creditHistory)) {
  207. $history = $this->creditHistory;
  208. } else {
  209. $history = CreditHistory::find()
  210. ->where(['id_order' => $this->id])
  211. ->all();
  212. }
  213. $this->paid_amount = 0;
  214. if (count($history)) {
  215. foreach ($history as $ch) {
  216. if ($ch->type == CreditHistory::TYPE_PAYMENT) {
  217. $this->paid_amount += $ch->amount;
  218. } elseif ($ch->type == CreditHistory::TYPE_REFUND) {
  219. $this->paid_amount -= $ch->amount;
  220. }
  221. }
  222. }
  223. }
  224. public function delete()
  225. {
  226. // remboursement si l'utilisateur a payé pour cette commande
  227. $amountPaid = $this->getAmount(Order::AMOUNT_PAID);
  228. if ($amountPaid > 0.01) {
  229. $this->saveCreditHistory(
  230. CreditHistory::TYPE_REFUND,
  231. $amountPaid,
  232. GlobalParam::getCurrentProducerId(),
  233. $this->id_user,
  234. User::getCurrentId()
  235. );
  236. }
  237. // delete
  238. if (Producer::getConfig('option_behavior_cancel_order') == Producer::BEHAVIOR_DELETE_ORDER_DELETE ||
  239. (Producer::getConfig('option_behavior_cancel_order') == Producer::BEHAVIOR_DELETE_ORDER_STATUS && strlen($this->date_delete))) {
  240. ProductOrder::deleteAll(['id_order' => $this->id]);
  241. return parent::delete();
  242. } // status 'delete'
  243. elseif (Producer::getConfig('option_behavior_cancel_order') == Producer::BEHAVIOR_DELETE_ORDER_STATUS) {
  244. $this->date_delete = date('Y-m-d H:i:s');
  245. return $this->save();
  246. }
  247. }
  248. /**
  249. * Retourne le montant de la commande (total, payé, restant, ou en surplus).
  250. *
  251. * @param boolean $format
  252. * @return float
  253. */
  254. public function getAmount($type = self::AMOUNT_TOTAL, $format = false)
  255. {
  256. switch ($type) {
  257. case self::AMOUNT_TOTAL :
  258. $amount = $this->amount;
  259. break;
  260. case self::AMOUNT_PAID :
  261. $this->initPaidAmount();
  262. $amount = $this->paid_amount;
  263. break;
  264. case self::AMOUNT_REMAINING :
  265. $amount = $this->getAmount(self::AMOUNT_TOTAL)
  266. - $this->getAmount(self::AMOUNT_PAID);
  267. break;
  268. case self::AMOUNT_SURPLUS :
  269. $amount = $this->getAmount(self::AMOUNT_PAID)
  270. - $this->getAmount(self::AMOUNT_TOTAL);
  271. break;
  272. }
  273. if ($format) {
  274. return number_format($amount, 2) . ' €';
  275. } else {
  276. return $amount;
  277. }
  278. }
  279. /**
  280. * Retourne les informations relatives à la commande au format JSON.
  281. *
  282. * @return string
  283. */
  284. public function getDataJson()
  285. {
  286. $order = Order::searchOne(['order.id' => $this->id]);
  287. $jsonOrder = [];
  288. if ($order) {
  289. $jsonOrder = [
  290. 'products' => [],
  291. 'amount' => $order->amount,
  292. 'str_amount' => $order->getAmount(self::AMOUNT_TOTAL, true),
  293. 'paid_amount' => $order->getAmount(self::AMOUNT_PAID),
  294. 'comment' => $order->comment,
  295. ];
  296. foreach ($order->productOrder as $productOrder) {
  297. $jsonOrder['products'][$productOrder->id_product] = $productOrder->quantity;
  298. }
  299. }
  300. return json_encode($jsonOrder);
  301. }
  302. /**
  303. * Enregistre un modèle de type CreditHistory.
  304. *
  305. * @param string $type
  306. * @param float $montant
  307. * @param integer $idProducer
  308. * @param integer $idUser
  309. * @param integer $idUserAction
  310. */
  311. public function saveCreditHistory($type, $amount, $idProducer, $idUser, $idUserAction)
  312. {
  313. $creditHistory = new CreditHistory;
  314. $creditHistory->id_user = $this->id_user;
  315. $creditHistory->id_order = $this->id;
  316. $creditHistory->amount = $amount;
  317. $creditHistory->type = $type;
  318. $creditHistory->id_producer = $idProducer;
  319. $creditHistory->id_user_action = $idUserAction;
  320. $creditHistory->populateRelation('order', $this);
  321. $creditHistory->populateRelation('user', User::find()->where(['id' => $this->id_user])->one());
  322. $creditHistory->save();
  323. }
  324. /**
  325. * Ajuste le crédit pour que la commande soit payée.
  326. *
  327. * @return boolean
  328. */
  329. public function processCredit()
  330. {
  331. if ($this->id_user) {
  332. $paymentStatus = $this->getPaymentStatus();
  333. if ($paymentStatus == self::PAYMENT_PAID) {
  334. return true;
  335. } elseif ($paymentStatus == self::PAYMENT_SURPLUS) {
  336. $type = CreditHistory::TYPE_REFUND;
  337. $amount = $this->getAmount(self::AMOUNT_SURPLUS);
  338. } elseif ($paymentStatus == self::PAYMENT_UNPAID) {
  339. $type = CreditHistory::TYPE_PAYMENT;
  340. $amount = $this->getAmount(self::AMOUNT_REMAINING);
  341. }
  342. $this->saveCreditHistory(
  343. $type,
  344. $amount,
  345. GlobalParam::getCurrentProducerId(),
  346. $this->id_user,
  347. User::getCurrentId()
  348. );
  349. }
  350. }
  351. /**
  352. * Retourne le statut de paiement de la commande (payée, surplus, ou impayée).
  353. *
  354. * @return string
  355. */
  356. public function getPaymentStatus()
  357. {
  358. // payé
  359. if ($this->getAmount() - $this->getAmount(self::AMOUNT_PAID) < 0.01 &&
  360. $this->getAmount() - $this->getAmount(self::AMOUNT_PAID) > -0.01) {
  361. return self::PAYMENT_PAID;
  362. } // à rembourser
  363. elseif ($this->getAmount() - $this->getAmount(self::AMOUNT_PAID) <= -0.01) {
  364. return self::PAYMENT_SURPLUS;
  365. } // reste à payer
  366. elseif ($this->getAmount() - $this->getAmount(self::AMOUNT_PAID) >= 0.01) {
  367. return self::PAYMENT_UNPAID;
  368. }
  369. }
  370. /**
  371. * Retourne le résumé du panier au format HTML.
  372. *
  373. * @return string
  374. */
  375. public function getCartSummary()
  376. {
  377. if (!isset($this->productOrder)) {
  378. $this->productOrder = productOrder::find()->where(['id_order' => $this->id])->all();
  379. }
  380. $html = '';
  381. $count = count($this->productOrder);
  382. $i = 0;
  383. foreach ($this->productOrder as $p) {
  384. if (isset($p->product)) {
  385. $html .= Html::encode($p->product->name) . ' (' . $p->quantity . '&nbsp;' . Product::strUnit($p->unit, 'wording_short', true) . ')';
  386. if (++$i != $count) {
  387. $html .= '<br />';
  388. }
  389. }
  390. }
  391. return $html;
  392. }
  393. /**
  394. * Retourne le résumé du point de vente lié à la commande au format HTML.
  395. *
  396. * @return string
  397. */
  398. public function getPointSaleSummary()
  399. {
  400. $html = '';
  401. if (isset($this->pointSale)) {
  402. $html .= '<span class="name-point-sale">' .
  403. Html::encode($this->pointSale->name) .
  404. '</span>' .
  405. '<br /><span class="locality">'
  406. . Html::encode($this->pointSale->locality)
  407. . '</span>';
  408. if (strlen($this->comment_point_sale)) {
  409. $html .= '<div class="comment"><span>'
  410. . Html::encode($this->comment_point_sale)
  411. . '</span></div>';
  412. }
  413. } else {
  414. $html .= 'Point de vente supprimé';
  415. }
  416. return $html;
  417. }
  418. /**
  419. * Retourne le résumé du paiement (montant, statut).
  420. *
  421. * @return string
  422. */
  423. public function getAmountSummary()
  424. {
  425. $html = '';
  426. $html .= $this->getAmount(self::AMOUNT_TOTAL, true) . '<br />';
  427. if ($this->paid_amount) {
  428. if ($this->getPaymentStatus() == Order::PAYMENT_PAID) {
  429. $html .= '<span class="label label-success">Payée</span>';
  430. } elseif ($this->getPaymentStatus() == Order::PAYMENT_UNPAID) {
  431. $html .= '<span class="label label-danger">Non payée</span><br />
  432. Reste <strong>' . $this->getAmount(Order::AMOUNT_REMAINING, true) . '</strong> à payer';
  433. } elseif ($this->getPaymentStatus() == Order::PAYMENT_SURPLUS) {
  434. $html .= '<span class="label label-success">Payée</span>';
  435. }
  436. } else {
  437. $html .= '<span class="label label-default">Non réglé</span>';
  438. }
  439. return $html;
  440. }
  441. /**
  442. * Retourne une chaine de caractère décrivant l'utilisateur lié à la commande.
  443. *
  444. * @return string
  445. */
  446. public function getStrUser()
  447. {
  448. if (isset($this->user)) {
  449. return Html::encode($this->user->lastname . ' ' . $this->user->name);
  450. } elseif (strlen($this->username)) {
  451. return Html::encode($this->username);
  452. } else {
  453. return 'Client introuvable';
  454. }
  455. }
  456. /**
  457. * Retourne l'état de la commande (livrée, modifiable ou en préparation)
  458. *
  459. * @return string
  460. */
  461. public function getState()
  462. {
  463. $orderDelay = Producer::getConfig(
  464. 'order_delay',
  465. $this->distribution->id_producer
  466. );
  467. $orderDeadline = Producer::getConfig(
  468. 'order_deadline',
  469. $this->distribution->id_producer
  470. );
  471. $orderDate = strtotime($this->distribution->date);
  472. $today = strtotime(date('Y-m-d'));
  473. $todayHour = date('G');
  474. $nbDays = (int)(($orderDate - $today) / (24 * 60 * 60));
  475. if ($nbDays <= 0) {
  476. return self::STATE_DELIVERED;
  477. } elseif ($nbDays >= $orderDelay &&
  478. ($nbDays != $orderDelay ||
  479. ($nbDays == $orderDelay && $todayHour < $orderDeadline))) {
  480. return self::STATE_OPEN;
  481. }
  482. return self::STATE_PREPARATION;
  483. }
  484. /**
  485. * Retourne l'origine de la commande (client, automatique ou admin) sous forme
  486. * texte ou HTML.
  487. *
  488. * @param boolean $with_label
  489. * @return string
  490. */
  491. public function getStrOrigin($withLabel = false)
  492. {
  493. $classLabel = '';
  494. $str = '';
  495. if ($this->origin == self::ORIGIN_USER) {
  496. $classLabel = 'success';
  497. $str = 'Client';
  498. } elseif ($this->origin == self::ORIGIN_AUTO) {
  499. $classLabel = 'default';
  500. $str = 'Auto';
  501. } elseif ($this->origin == self::ORIGIN_ADMIN) {
  502. $classLabel = 'warning';
  503. $str = 'Vous';
  504. }
  505. if ($withLabel) {
  506. return '<span class="label label-' . $classLabel . '">'
  507. . $str . '</span>';
  508. } else {
  509. return $str;
  510. }
  511. }
  512. /**
  513. * Retourne l'historique de la commande (ajoutée, modifiée, supprimée) au
  514. * format HTML.
  515. *
  516. * @return string
  517. */
  518. public function getStrHistory()
  519. {
  520. $arr = [
  521. 'class' => 'create',
  522. 'glyphicon' => 'plus',
  523. 'str' => 'Ajoutée',
  524. 'date' => $this->date
  525. ];
  526. if (!is_null($this->date_update)) {
  527. $arr = [
  528. 'class' => 'update',
  529. 'glyphicon' => 'pencil',
  530. 'str' => 'Modifiée',
  531. 'date' => $this->date_update
  532. ];
  533. }
  534. if (!is_null($this->date_delete)) {
  535. $arr = [
  536. 'class' => 'delete',
  537. 'glyphicon' => 'remove',
  538. 'str' => 'Annulée',
  539. 'date' => $this->date_delete
  540. ];
  541. }
  542. $html = '<div class="small"><span class="' . $arr['class'] . '">'
  543. . '<span class="glyphicon glyphicon-' . $arr['glyphicon'] . '"></span> '
  544. . $arr['str'] . '</span> le <strong>'
  545. . date('d/m/Y à G\hi', strtotime($arr['date'])) . '</strong></div>';
  546. return $html;
  547. }
  548. /**
  549. * Retourne une classe identifiant l'historique de la commande (ajoutée,
  550. * modifiée, supprimée).
  551. *
  552. * @return string
  553. */
  554. public function getClassHistory()
  555. {
  556. if (!is_null($this->date_delete)) {
  557. return 'commande-delete';
  558. }
  559. if (!is_null($this->date_update)) {
  560. return 'commande-update';
  561. }
  562. return 'commande-create';
  563. }
  564. /**
  565. * Retourne la quantité d'un produit donné de plusieurs commandes.
  566. *
  567. * @param integer $idProduct
  568. * @param array $orders
  569. * @param boolean $ignoreCancel
  570. *
  571. * @return integer
  572. */
  573. public static function getProductQuantity($idProduct, $orders, $ignoreCancel = false, $unit = null)
  574. {
  575. $quantity = 0;
  576. if (isset($orders) && is_array($orders) && count($orders)) {
  577. foreach ($orders as $c) {
  578. if (is_null($c->date_delete) || $ignoreCancel) {
  579. foreach ($c->productOrder as $po) {
  580. if ($po->id_product == $idProduct &&
  581. ((is_null($unit) && $po->product->unit == $po->unit) || (!is_null($unit) && strlen($unit) && $po->unit == $unit))) {
  582. $quantity += $po->quantity;
  583. }
  584. }
  585. }
  586. }
  587. }
  588. return $quantity;
  589. }
  590. /**
  591. * Recherche et initialise des commandes.
  592. *
  593. * @param array $params
  594. * @param array $conditions
  595. * @param string $orderby
  596. * @param integer $limit
  597. * @return array
  598. */
  599. public static function searchBy($params = [], $options = [])
  600. {
  601. $orders = parent::searchBy($params, $options);
  602. /*
  603. * Initialisation des commandes
  604. */
  605. if (is_array($orders)) {
  606. if (count($orders)) {
  607. foreach ($orders as $order) {
  608. if (is_a($order, 'common\models\Order')) {
  609. $order->init();
  610. }
  611. }
  612. return $orders;
  613. }
  614. } else {
  615. $order = $orders;
  616. if (is_a($order, 'common\models\Order')) {
  617. return $order->init();
  618. } // count
  619. else {
  620. return $order;
  621. }
  622. }
  623. return false;
  624. }
  625. /**
  626. * Retourne le nombre de produits commandés
  627. *
  628. * @return integer
  629. */
  630. public function countProducts()
  631. {
  632. $count = 0;
  633. if ($this->productOrder && is_array($this->productOrder)) {
  634. foreach ($this->productOrder as $productOrder) {
  635. if ($productOrder->unit == 'piece') {
  636. $count++;
  637. } else {
  638. $count += $productOrder->quantity;
  639. }
  640. }
  641. }
  642. return $count;
  643. }
  644. /**
  645. * Retourne un bloc html présentant une date.
  646. *
  647. * @return string
  648. */
  649. public function getBlockDate()
  650. {
  651. return '<div class="block-date">
  652. <div class="day">' . strftime('%A', strtotime($this->distribution->date)) . '</div>
  653. <div class="num">' . date('d', strtotime($this->distribution->date)) . '</div>
  654. <div class="month">' . strftime('%B', strtotime($this->distribution->date)) . '</div>
  655. </div>';
  656. }
  657. }