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.

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