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.

612 rindas
18KB

  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 common\models;
  32. use Yii;
  33. use yii\helpers\Html;
  34. use common\models\Producer;
  35. use common\components\ActiveRecordCommon ;
  36. /**
  37. * This is the model class for table "order".
  38. *
  39. * @property integer $id
  40. * @property integer $id_user
  41. * @property string $date
  42. * @property string $date_update
  43. * @property integer $id_point_sale
  44. * @property integer $id_production
  45. * @property boolean $auto_payment
  46. */
  47. class Order extends ActiveRecordCommon
  48. {
  49. var $amount = 0 ;
  50. var $paid_amount = 0 ;
  51. var $weight = 0 ;
  52. const ORIGIN_AUTO = 'auto';
  53. const ORIGIN_USER = 'user';
  54. const ORIGIN_ADMIN = 'admin';
  55. const PAYMENT_PAID = 'paid';
  56. const PAYMENT_UNPAID = 'unpaid';
  57. const PAYMENT_SURPLUS = 'surplus';
  58. const AMOUNT_TOTAL = 'total' ;
  59. const AMOUNT_PAID = 'paid' ;
  60. const AMOUNT_REMAINING = 'remaining' ;
  61. const AMOUNT_SURPLUS = 'surplus' ;
  62. const STATE_OPEN = 'open';
  63. const STATE_PREPARATION = 'preparation';
  64. const STATE_DELIVERED = 'livree';
  65. /**
  66. * @inheritdoc
  67. */
  68. public static function tableName()
  69. {
  70. return 'order';
  71. }
  72. /**
  73. * @inheritdoc
  74. */
  75. public function rules()
  76. {
  77. return [
  78. [['id_user', 'date', 'id_point_sale', 'id_production'], 'required', 'message' => ''],
  79. [['id_user', 'id_point_sale', 'id_production'], 'integer'],
  80. [['auto_payment'], 'boolean'],
  81. [['date', 'date_update', 'comment', 'comment_point_sale'], 'safe']
  82. ];
  83. }
  84. /**
  85. * @inheritdoc
  86. */
  87. public function attributeLabels()
  88. {
  89. return [
  90. 'id' => 'ID',
  91. 'id_user' => 'Id User',
  92. 'date' => 'Date',
  93. 'date_update' => 'Date de modification',
  94. 'id_point_sale' => 'Point de vente',
  95. 'id_production' => 'Date de production',
  96. ];
  97. }
  98. /*
  99. * Relations
  100. */
  101. public function getUser()
  102. {
  103. return $this->hasOne(User::className(), ['id' => 'id_user']);
  104. }
  105. public function getProductOrder()
  106. {
  107. return $this->hasMany(ProductOrder::className(),['id_order' => 'id'])
  108. ->with('product');
  109. }
  110. public function getProduction()
  111. {
  112. return $this->hasOne(Production::className(), ['id' => 'id_production'])
  113. ->with('producer');
  114. }
  115. public function getPointSale()
  116. {
  117. return $this->hasOne(PointSale::className(), ['id' => 'id_point_sale'])
  118. ->with('pointSaleUser');
  119. }
  120. public function getCreditHistory()
  121. {
  122. return $this->hasMany(CreditHistory::className(), ['id_order' => 'id']);
  123. }
  124. /**
  125. * Retourne les options de base nécessaires à la fonction de recherche.
  126. *
  127. * @return array
  128. */
  129. public static function defaultOptionsSearch() {
  130. return [
  131. 'with' => ['productOrder', 'creditHistory', 'pointSale'],
  132. 'join_with' => ['production', 'user', 'user.userProducer'],
  133. 'orderby' => 'order.date ASC',
  134. 'attribute_id_producer' => 'production.id_producer'
  135. ] ;
  136. }
  137. /**
  138. * Initialise le montant total, le montant déjà payé et le poids de la
  139. * commande.
  140. */
  141. public function init()
  142. {
  143. $this->initAmount() ;
  144. $this->initPaidAmount() ;
  145. return $this ;
  146. }
  147. /**
  148. * Initialise le montant de la commande.
  149. *
  150. */
  151. public function initAmount() {
  152. if (isset($this->productOrder)) {
  153. foreach ($this->productOrder as $p) {
  154. if ($p->sale_mode == Product::SALE_MODE_UNIT) {
  155. $this->amount += $p->price * $p->quantity ;
  156. if(isset($p->product)) {
  157. $this->weight += ($p->quantity * $p->product->weight) / 1000 ;
  158. }
  159. }
  160. elseif ($p->sale_mode == Product::SALE_MODE_WEIGHT) {
  161. $this->amount += $p->price * $p->quantity / 1000;
  162. }
  163. }
  164. }
  165. }
  166. /**
  167. * Initialise le montant payé de la commande et le retourne.
  168. *
  169. * @return float
  170. */
  171. public function initPaidAmount()
  172. {
  173. $history = CreditHistory::find()
  174. ->where(['id_order' => $this->id])
  175. ->all();
  176. $this->paid_amount = 0 ;
  177. if(count($history)) {
  178. foreach ($history as $ch) {
  179. if ($ch->type == CreditHistory::TYPE_PAYMENT) {
  180. $this->paid_amount += $ch->amount;
  181. }
  182. elseif ($ch->type == CreditHistory::TYPE_REFUND) {
  183. $this->paid_amount -= $ch->amount;
  184. }
  185. }
  186. }
  187. }
  188. /**
  189. * Retourne le montant de la commande (total, payé, restant, ou en surplus).
  190. *
  191. * @param boolean $format
  192. * @return float
  193. */
  194. public function getAmount($type = self::AMOUNT_TOTAL, $format = false)
  195. {
  196. switch($type) {
  197. case self::AMOUNT_TOTAL :
  198. $amount = $this->amount ;
  199. break ;
  200. case self::AMOUNT_PAID :
  201. $this->initPaidAmount() ;
  202. $amount = $this->paid_amount ;
  203. break ;
  204. case self::AMOUNT_REMAINING :
  205. $amount = $this->getAmount(self::AMOUNT_TOTAL)
  206. - $this->getAmount(self::AMOUNT_PAID) ;
  207. break ;
  208. case self::AMOUNT_EXCESS :
  209. $amount = $this->getAmount(self::AMOUNT_PAID)
  210. - $this->getAmount(self::AMOUNT_TOTAL) ;
  211. break ;
  212. }
  213. if ($format) {
  214. return number_format($amount, 2) . ' €';
  215. }
  216. else {
  217. return $amount;
  218. }
  219. }
  220. /**
  221. * Retourne les informations relatives à la commande au format JSON.
  222. *
  223. * @return string
  224. */
  225. public function getDataJson()
  226. {
  227. $order = Order::searchOne(['order.id' => $this->id]) ;
  228. $jsonOrder = [] ;
  229. if($order) {
  230. $jsonOrder = [
  231. 'products' => [],
  232. 'amount' => $order->amount,
  233. 'str_amount' => $order->getAmount(self::TYPE_AMOUNT_TOTAL, true),
  234. 'paid_amount' => $order->getPaidAmount(self::TYPE_AMOUNT_PAID),
  235. 'comment' => $order->comment,
  236. ];
  237. foreach ($order->productOrder as $productOrder) {
  238. $jsonOrder['products'][$productOrder->id_product] = $productOrder->quantity;
  239. }
  240. }
  241. return json_encode($jsonOrder);
  242. }
  243. /**
  244. * Enregistre un modèle de type CreditHistorique.
  245. *
  246. * @param string $type
  247. * @param float $montant
  248. * @param integer $id_producer
  249. * @param integer $id_user
  250. * @param integer $id_user_action
  251. */
  252. public function saveCreditHistory($type, $amount, $idProducer, $idUser, $idUserAction)
  253. {
  254. $creditHistory = new CreditHistory;
  255. $creditHistory->id_user = $this->id_user;
  256. $creditHistory->id_order = $this->id;
  257. $creditHistory->amount = $amount;
  258. $creditHistory->type = $type;
  259. $creditHistory->id_producer = $idProducer;
  260. $creditHistory->id_user_action = $idUserAction;
  261. $creditHistory->populateRelation('order', $this) ;
  262. $creditHistory->populateRelation('user', User::find()->where(['id' => $this->id_user])->one()) ;
  263. $creditHistory->save();
  264. }
  265. /**
  266. * Retourne le statut de paiement de la commande (payée, surplus, ou impayée).
  267. *
  268. * @return string
  269. */
  270. public function getPaymentStatus()
  271. {
  272. // payé
  273. if ($this->getAmount() - $this->getAmount(self::TYPE_AMOUNT_PAID) < 0.01 &&
  274. $this->getAmount() - $this->getAmount(self::TYPE_AMOUNT_PAID) >= 0)
  275. {
  276. return self::PAYMENT_PAID ;
  277. }
  278. // à rembourser
  279. elseif ($this->getAmount() - $this->getAmount(self::TYPE_AMOUNT_PAID) <= -0.01) {
  280. return self::PAYMENT_SURPLUS ;
  281. }
  282. // reste à payer
  283. elseif ($this->getAmount() - $this->getAmount(self::TYPE_AMOUNT_PAID) >= 0.01) {
  284. return self::PAYMENT_UNPAID ;
  285. }
  286. }
  287. /**
  288. * Retourne le résumé du panier au format HTML.
  289. *
  290. * @return string
  291. */
  292. public function getCartSummary()
  293. {
  294. if (!isset($this->productOrder)) {
  295. $this->productOrder = productOrder::find()->where(['id_order' => $this->id])->all();
  296. }
  297. $html = '';
  298. $count = count($this->productOrder);
  299. $i = 0;
  300. foreach ($this->productOrder as $p) {
  301. if (isset($p->product)) {
  302. $html .= $p->quantity . ' x ' . Html::encode($p->product->name);
  303. if (++$i != $count) {
  304. $html .= '<br />';
  305. }
  306. }
  307. }
  308. return $html;
  309. }
  310. /**
  311. * Retourne le résumé du point de vente lié à la commande au format HTML.
  312. *
  313. * @return string
  314. */
  315. public function getSalePointSummary()
  316. {
  317. $html = '';
  318. if (isset($this->salePoint)) {
  319. $html .= '<span class="nom-point-vente">' .
  320. Html::encode($this->salePoint->name) .
  321. '</span>' .
  322. '<br /><span class="localite">'
  323. . Html::encode($this->salePoint->locality)
  324. . '</span>';
  325. if (strlen($this->sale_point_comment)) {
  326. $html .= '<div class="commentaire"><span>'
  327. . Html::encode($this->comment_point_sale)
  328. . '</span></div>';
  329. }
  330. } else {
  331. $html .= 'Point de vente supprimé';
  332. }
  333. return $html;
  334. }
  335. /**
  336. * Retourne le résumé du paiement (montant, statut).
  337. *
  338. * @return string
  339. */
  340. public function getAmountSummary()
  341. {
  342. $html = '';
  343. $html .= $this->getAmount(self::TYPE_AMOUNT_TOTAL, true) . '<br />';
  344. if ($this->paid_amount) {
  345. if ($this->getPaymentStatus() == Order::PAYMENT_PAID) {
  346. $html .= '<span class="label label-success">Payée</span>';
  347. } elseif ($this->getPaymentStatus() == Order::PAYMENT_UNPAID) {
  348. $html .= '<span class="label label-danger">Non payée</span><br />
  349. Reste <strong>' . $this->getRemainingAmount(true) . '</strong> à payer';
  350. } elseif ($this->getPaymentStatus() == Order::PAYMENT_SURPLUS) {
  351. $html .= '<span class="label label-success">Payée</span>';
  352. }
  353. }
  354. else {
  355. $html .= '<span class="label label-default">À régler sur place</span>';
  356. }
  357. return $html;
  358. }
  359. /**
  360. * Retourne une chaine de caractère décrivant l'utilisateur lié à la commande.
  361. *
  362. * @return string
  363. */
  364. public function getStrUser()
  365. {
  366. if (isset($this->user)) {
  367. return Html::encode($this->user->prenom . ' ' . $this->user->nom);
  368. } elseif (strlen($this->username)) {
  369. return Html::encode($this->username);
  370. } else {
  371. return 'Client introuvable';
  372. }
  373. }
  374. /**
  375. * Retourne l'état de la commande (livrée, modifiable ou en préparation)
  376. *
  377. * @return string
  378. */
  379. public function getState()
  380. {
  381. $orderDelay = Producer::getConfig(
  382. 'order_delay',
  383. $this->production->id_producer
  384. );
  385. $orderDeadline = Producer::getConfig(
  386. 'order_deadline',
  387. $this->production->id_producer
  388. );
  389. $orderDate = strtotime($this->production->date);
  390. $today = strtotime(date('Y-m-d'));
  391. $todayHour = date('G');
  392. $nbDays = (int) (($dateOrder - $today) / (24 * 60 * 60));
  393. if ($nb_days <= 0) {
  394. return self::STATE_DELIVERED;
  395. }
  396. elseif ($nbDays >= $orderDelay &&
  397. ($nbDays != $orderDelay ||
  398. ($nbDays == $orderDelay && $todayHour < $orderDeadline)))
  399. {
  400. return self::STATE_OPEN;
  401. }
  402. return self::STATE_PREPARATION ;
  403. }
  404. /**
  405. * Retourne l'origine de la commande (client, automatique ou admin) sous forme
  406. * texte ou HTML.
  407. *
  408. * @param boolean $with_label
  409. * @return string
  410. */
  411. public function getStrOrigin($withLabel = false)
  412. {
  413. $classLabel = '';
  414. $str = '';
  415. if ($this->type == self::ORIGIN_USER) {
  416. $classLabel = 'success';
  417. $str = 'Client';
  418. }
  419. elseif ($this->type == self::ORIGIN_AUTO) {
  420. $classLabel = 'default';
  421. $str = 'Auto';
  422. }
  423. elseif ($this->type == self::ORIGIN_ADMIN) {
  424. $classLabel = 'warning';
  425. $str = 'Vous';
  426. }
  427. if ($withLabel) {
  428. return '<span class="label label-' . $classLabel . '">'
  429. . $str . '</span>';
  430. }
  431. else {
  432. return $str;
  433. }
  434. }
  435. /**
  436. * Retourne l'historique de la commande (ajoutée, modifiée, supprimée) au
  437. * format HTML.
  438. *
  439. * @return string
  440. */
  441. public function getStrHistory()
  442. {
  443. $arr = [
  444. 'class' => 'create',
  445. 'glyphicon' => 'plus',
  446. 'str' => 'Ajoutée',
  447. 'date' => $this->date
  448. ] ;
  449. if(!is_null($this->date_update)) {
  450. $arr = [
  451. 'class' => 'update',
  452. 'glyphicon' => 'pencil',
  453. 'str' => 'Modifiée',
  454. 'date' => $this->date_update
  455. ] ;
  456. }
  457. if(!is_null($this->date_delete)) {
  458. $arr = [
  459. 'class' => 'delete',
  460. 'glyphicon' => 'remove',
  461. 'str' => 'Annulée',
  462. 'date' => $this->date_delete
  463. ] ;
  464. }
  465. $html = '<div class="small"><span class="'.$arr['class'].'">'
  466. . '<span class="glyphicon glyphicon-'.$arr['glyphicon'].'"></span> '
  467. . $arr['str'].'</span> le <strong>'
  468. . date('d/m/Y à G\hi', strtotime($arr['date'])).'</strong></div>' ;
  469. return $html ;
  470. }
  471. /**
  472. * Retourne une classe identifiant l'historique de la commande (ajoutée,
  473. * modifiée, supprimée).
  474. *
  475. * @return string
  476. */
  477. public function getClassHistory()
  478. {
  479. if(!is_null($this->date_delete)) {
  480. return 'commande-delete' ;
  481. }
  482. if(!is_null($this->date_update)) {
  483. return 'commande-update' ;
  484. }
  485. return 'commande-create' ;
  486. }
  487. /**
  488. * Retourne la quantité d'un produit donné de plusieurs commandes.
  489. *
  490. * @param integer $idProduct
  491. * @param array $orders
  492. *
  493. * @return integer
  494. */
  495. public static function getProductQuantity($idProduct, $orders)
  496. {
  497. $quantity = 0;
  498. if (isset($orders) && is_array($orders) && count($orders)) {
  499. foreach ($orders as $c) {
  500. if(is_null($c->date_delete)) {
  501. foreach ($c->productOrder as $po) {
  502. if ($po->id_product == $id_product) {
  503. $quantity += $po->quantity ;
  504. }
  505. }
  506. }
  507. }
  508. }
  509. return $quantity ;
  510. }
  511. /**
  512. * Recherche et initialise des commandes.
  513. *
  514. * @param array $params
  515. * @param array $conditions
  516. * @param string $orderby
  517. * @param integer $limit
  518. * @return array
  519. */
  520. public static function search($params = [], $options = [])
  521. {
  522. $orders = parent::search($params, $options) ;
  523. /*
  524. * Initialisation des commandes
  525. */
  526. if(is_array($orders)) {
  527. if(count($orders)) {
  528. foreach($orders as $order) {
  529. $order->init() ;
  530. }
  531. return $orders ;
  532. }
  533. }
  534. else {
  535. $order = $orders ;
  536. return $order->init() ;
  537. }
  538. return false ;
  539. }
  540. }