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.

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