No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

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