Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

603 lines
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\Etablissement;
  35. /**
  36. * This is the model class for table "commande".
  37. *
  38. * @property integer $id
  39. * @property integer $id_user
  40. * @property string $date
  41. * @property string $date_update
  42. * @property integer $id_point_vente
  43. * @property integer $id_production
  44. * @property boolean $paiement_automatique
  45. */
  46. class Commande extends \yii\db\ActiveRecord
  47. {
  48. var $montant = 0 ;
  49. var $montant_paye = 0 ;
  50. var $poids = 0 ;
  51. const TYPE_AUTO = 'auto';
  52. const TYPE_USER = 'user';
  53. const TYPE_ADMIN = 'admin';
  54. const STATUT_PAYEE = 'payee';
  55. const STATUT_IMPAYEE = 'impayee';
  56. const STATUT_SURPLUS = 'surplus';
  57. const ETAT_MODIFIABLE = 'ouverte';
  58. const ETAT_PREPARATION = 'preparation';
  59. const ETAT_LIVREE = 'livree';
  60. /**
  61. * @inheritdoc
  62. */
  63. public static function tableName()
  64. {
  65. return 'commande';
  66. }
  67. /*
  68. * relations
  69. */
  70. public function getUser()
  71. {
  72. return $this->hasOne(User::className(), ['id' => 'id_user']);
  73. }
  74. public function getCommandeProduits()
  75. {
  76. return $this->hasMany(CommandeProduit::className(),['id_commande' => 'id'])
  77. ->with('produit');
  78. }
  79. public function getProduction()
  80. {
  81. return $this->hasOne(Production::className(), ['id' => 'id_production'])
  82. ->with('etablissement');
  83. }
  84. public function getPointVente()
  85. {
  86. return $this->hasOne(PointVente::className(), ['id' => 'id_point_vente'])
  87. ->with('pointVenteUser');
  88. }
  89. public function getCreditHistorique()
  90. {
  91. return $this->hasMany(CreditHistorique::className(), ['id_commande' => 'id']);
  92. }
  93. /**
  94. * @inheritdoc
  95. */
  96. public function rules()
  97. {
  98. return [
  99. [['id_user', 'date', 'id_point_vente', 'id_production'], 'required', 'message' => ''],
  100. [['id_user', 'id_point_vente', 'id_production'], 'integer'],
  101. [['paiement_automatique'], 'boolean'],
  102. [['date', 'date_update', 'commentaire', 'commentaire_point_vente'], 'safe']
  103. ];
  104. }
  105. /**
  106. * @inheritdoc
  107. */
  108. public function attributeLabels()
  109. {
  110. return [
  111. 'id' => 'ID',
  112. 'id_user' => 'Id User',
  113. 'date' => 'Date',
  114. 'date_update' => 'Date Update',
  115. 'id_point_vente' => 'Point de vente',
  116. 'id_production' => 'Date de production',
  117. ];
  118. }
  119. /**
  120. * Initialise le montant total, le montant déjà payé et le poids de la
  121. * commande
  122. */
  123. public function init()
  124. {
  125. // Montant
  126. if (isset($this->commandeProduits)) {
  127. foreach ($this->commandeProduits as $p) {
  128. if ($p->mode_vente == 'unite') {
  129. $this->montant += $p->prix * $p->quantite;
  130. if(isset($p->produit)) {
  131. $this->poids += ($p->quantite * $p->produit->poids) / 1000 ;
  132. }
  133. }
  134. elseif ($p->mode_vente == 'poids') {
  135. $this->montant += $p->prix * $p->quantite / 1000;
  136. }
  137. }
  138. }
  139. // Montant payé
  140. if (isset($this->creditHistorique) && !$this->montant_paye) {
  141. foreach ($this->creditHistorique as $ch) {
  142. if ($ch->type == CreditHistorique::TYPE_PAIEMENT) {
  143. $this->montant_paye += $ch->montant;
  144. }
  145. elseif ($ch->type == CreditHistorique::TYPE_REMBOURSEMENT) {
  146. $this->montant_paye -= $ch->montant;
  147. }
  148. }
  149. }
  150. }
  151. /**
  152. * Retourne la quantité d'un produit donné de plusieurs commandes.
  153. *
  154. * @param integer $id_produit
  155. * @param array $commandes
  156. *
  157. * @return integer
  158. */
  159. public static function getQuantiteProduit($id_produit, $commandes)
  160. {
  161. $quantite = 0;
  162. if (isset($commandes) && is_array($commandes) && count($commandes)) {
  163. foreach ($commandes as $c) {
  164. if(is_null($c->date_delete)) {
  165. foreach ($c->commandeProduits as $cp) {
  166. if ($cp->id_produit == $id_produit) {
  167. $quantite += $cp->quantite;
  168. }
  169. }
  170. }
  171. }
  172. }
  173. return $quantite;
  174. }
  175. /**
  176. * Retourne le montant payé de la commande.
  177. *
  178. * @return float
  179. */
  180. public function getMontantPaye()
  181. {
  182. if ($this->montant_paye) {
  183. return $this->montant_paye;
  184. }
  185. else {
  186. $historique = CreditHistorique::find()
  187. ->where(['id_commande' => $this->id])
  188. ->all();
  189. $montant = 0;
  190. foreach ($historique as $ch) {
  191. if ($ch->type == CreditHistorique::TYPE_PAIEMENT) {
  192. $montant += $ch->montant;
  193. }
  194. elseif ($ch->type == CreditHistorique::TYPE_REMBOURSEMENT) {
  195. $montant -= $ch->montant;
  196. }
  197. }
  198. return $montant;
  199. }
  200. }
  201. /**
  202. * Retourne le montant de la commande.
  203. *
  204. * @param boolean $format
  205. * @return float
  206. */
  207. public function getMontant($format = false)
  208. {
  209. if ($format) {
  210. return number_format($this->getMontant(), 2) . ' €';
  211. }
  212. else {
  213. return $this->montant;
  214. }
  215. }
  216. /**
  217. * Retourne le montant restant à payer.
  218. *
  219. * @param boolean $format
  220. * @return float
  221. */
  222. public function getMontantRestant($format = false)
  223. {
  224. $montant_restant = $this->getMontant() - $this->getMontantPaye();
  225. if ($format) {
  226. return number_format($montant_restant, 2) . ' €';
  227. }
  228. else {
  229. return $montant_restant;
  230. }
  231. }
  232. /**
  233. * Retourne le montant payé en surplus.
  234. *
  235. * @param boolean $format
  236. * @return float
  237. */
  238. public function getMontantSurplus($format = false)
  239. {
  240. $montant_surplus = $this->getMontantPaye() - $this->getMontant();
  241. if ($format) {
  242. return number_format($montant_surplus, 2) . ' €';
  243. }
  244. else {
  245. return $montant_surplus;
  246. }
  247. }
  248. /**
  249. * Retourne les informations relatives à la commande au format JSON.
  250. *
  251. * @return string
  252. */
  253. public function getDataJson()
  254. {
  255. $commande = Commande::find()->with('commandeProduits')->where(['id' => $this->id])->one();
  256. $commande->init();
  257. $json_commande = [
  258. 'produits' => [],
  259. 'montant' => $commande->montant,
  260. 'str_montant' => $commande->getMontant(true),
  261. 'montant_paye' => $commande->getMontantPaye(),
  262. 'commentaire' => $commande->commentaire,
  263. ];
  264. foreach ($commande->commandeProduits as $commande_produit) {
  265. $json_commande['produits'][$commande_produit->id_produit] = $commande_produit->quantite;
  266. }
  267. return json_encode($json_commande);
  268. }
  269. /**
  270. * Enregistre un modèle de type CreditHistorique.
  271. *
  272. * @param string $type
  273. * @param float $montant
  274. * @param integer $id_etablissement
  275. * @param integer $id_user
  276. * @param integer $id_user_action
  277. */
  278. public function creditHistorique($type, $montant, $id_etablissement, $id_user, $id_user_action)
  279. {
  280. $credit_historique = new CreditHistorique;
  281. $credit_historique->id_user = $this->id_user;
  282. $credit_historique->id_commande = $this->id;
  283. $credit_historique->montant = $montant;
  284. $credit_historique->type = $type;
  285. $credit_historique->id_etablissement = $id_etablissement;
  286. $credit_historique->id_user_action = $id_user_action;
  287. $credit_historique->populateRelation('commande', $this) ;
  288. $credit_historique->populateRelation('user', User::find()->where(['id' => $this->id_user])->one()) ;
  289. $credit_historique->save();
  290. }
  291. /**
  292. * Retourne le statut de paiement de la commande (payée, surplus, ou impayée).
  293. *
  294. * @return string
  295. */
  296. public function getStatutPaiement()
  297. {
  298. // payé
  299. if ($this->getMontant() - $this->getMontantPaye() < 0.01 &&
  300. $this->getMontant() - $this->getMontantPaye() >= 0)
  301. {
  302. return self::STATUT_PAYEE;
  303. }
  304. // à rembourser
  305. elseif ($this->getMontant() - $this->getMontantPaye() <= -0.01) {
  306. return self::STATUT_SURPLUS;
  307. }
  308. // reste à payer
  309. elseif ($this->getMontant() - $this->getMontantPaye() >= 0.01) {
  310. return self::STATUT_IMPAYEE;
  311. }
  312. }
  313. /**
  314. * Retourne le résumé du panier au format HTML.
  315. *
  316. * @return string
  317. */
  318. public function getResumePanier()
  319. {
  320. if (!isset($this->commandeProduits)) {
  321. $this->commandeProduits = CommandeProduit::find()->where(['id_commande' => $this->id])->all();
  322. }
  323. $html = '';
  324. $count = count($this->commandeProduits);
  325. $i = 0;
  326. foreach ($this->commandeProduits as $p) {
  327. if (isset($p->produit)) {
  328. $html .= $p->quantite . ' x ' . Html::encode($p->produit->nom);
  329. if (++$i != $count) {
  330. $html .= '<br />';
  331. }
  332. }
  333. }
  334. return $html;
  335. }
  336. /**
  337. * Retourne le résumé du point de vente lié à la commande au format HTML.
  338. *
  339. * @return string
  340. */
  341. public function getResumePointVente()
  342. {
  343. $html = '';
  344. if (isset($this->pointVente)) {
  345. $html .= '<span class="nom-point-vente">' . Html::encode($this->pointVente->nom) . '</span>'
  346. . '<br /><span class="localite">' . Html::encode($this->pointVente->localite) . '</span>';
  347. if (strlen($this->commentaire_point_vente)) {
  348. $html .= '<div class="commentaire"><span>' . Html::encode($this->commentaire_point_vente) . '</span></div>';
  349. }
  350. } else {
  351. $html .= 'Point de vente supprimé';
  352. }
  353. return $html;
  354. }
  355. /**
  356. * Retourne le résumé du paiement (montant, statut).
  357. *
  358. * @return string
  359. */
  360. public function getResumeMontant()
  361. {
  362. $html = '';
  363. $html .= $this->getMontant(true) . '<br />';
  364. if ($this->montant_paye) {
  365. if ($this->getStatutPaiement() == Commande::STATUT_PAYEE) {
  366. $html .= '<span class="label label-success">Payée</span>';
  367. } elseif ($this->getStatutPaiement() == Commande::STATUT_IMPAYEE) {
  368. $html .= '<span class="label label-danger">Non payée</span><br />
  369. Reste <strong>' . $this->getMontantRestant(true) . '</strong> à payer';
  370. } elseif ($this->getStatutPaiement() == Commande::STATUT_SURPLUS) {
  371. $html .= '<span class="label label-success">Payée</span>';
  372. }
  373. }
  374. else {
  375. $html .= '<span class="label label-default">À régler sur place</span>';
  376. }
  377. return $html;
  378. }
  379. /**
  380. * Retourne une chaine de caractère décrivant l'utilisateur lié à la commande.
  381. *
  382. * @return string
  383. */
  384. public function getStrUser()
  385. {
  386. if (isset($this->user)) {
  387. return Html::encode($this->user->prenom . ' ' . $this->user->nom);
  388. } elseif (strlen($this->username)) {
  389. return Html::encode($this->username);
  390. } else {
  391. return 'Client introuvable';
  392. }
  393. }
  394. /**
  395. * Recherche dans les commandes suivant les paramètres suivants :
  396. * - id_etablissement
  397. * - condition
  398. * - date
  399. * - type
  400. * - orderby
  401. * - limit
  402. *
  403. * @param array $params
  404. * @return array
  405. */
  406. public static function findBy($params = [])
  407. {
  408. if (!isset($params['id_etablissement']))
  409. $params['id_etablissement'] = Yii::$app->user->identity->id_etablissement;
  410. $commandes = Commande::find()
  411. ->with('commandeProduits', 'creditHistorique', 'pointVente')
  412. ->joinWith(['production', 'user','user.userEtablissement'])
  413. ->where(['production.id_etablissement' => $params['id_etablissement']]);
  414. if (isset($params['condition']))
  415. $commandes = $commandes->andWhere($params['condition']);
  416. if (isset($params['date']))
  417. $commandes = $commandes->andWhere(['production.date' => $params['date']]);
  418. if (isset($params['type']))
  419. $commandes = $commandes->andWhere(['commande.type' => $params['type']]);
  420. if (isset($params['orderby']))
  421. $commandes = $commandes->orderBy($params['orderby']);
  422. else
  423. $commandes = $commandes->orderBy('date ASC');
  424. if (isset($params['limit']))
  425. $commandes = $commandes->limit($params['limit']);
  426. $commandes = $commandes->all();
  427. return $commandes;
  428. }
  429. /**
  430. * Retourne l'état de la commande (livrée, modifiable ou en préparation)
  431. *
  432. * @return string
  433. */
  434. public function getEtat()
  435. {
  436. $delai_commande = Etablissement::getConfig('delai_commande', $this->production->id_etablissement);
  437. $heure_limite = Etablissement::getConfig('heure_limite_commande', $this->production->id_etablissement);
  438. $date_commande = strtotime($this->production->date);
  439. $date_today = strtotime(date('Y-m-d'));
  440. $heure_today = date('G');
  441. $nb_jours = (int) (($date_commande - $date_today) / (24 * 60 * 60));
  442. if ($nb_jours <= 0) {
  443. return self::ETAT_LIVREE;
  444. }
  445. elseif ($nb_jours >= $delai_commande &&
  446. ($nb_jours != $delai_commande ||
  447. ($nb_jours == $delai_commande && $heure_today < $heure_limite)))
  448. {
  449. return self::ETAT_MODIFIABLE;
  450. }
  451. return self::ETAT_PREPARATION;
  452. }
  453. /**
  454. * Retourne le type de la commande (client, automatique ou admin) sous forme
  455. * texte ou HTML.
  456. *
  457. * @param boolean $with_label
  458. * @return string
  459. */
  460. public function getStrType($with_label = false) {
  461. $class_label = '';
  462. $str = '';
  463. if ($this->type == self::TYPE_USER) {
  464. $class_label = 'success';
  465. $str = 'Client';
  466. } elseif ($this->type == self::TYPE_AUTO) {
  467. $class_label = 'default';
  468. $str = 'Auto';
  469. } elseif ($this->type == self::TYPE_ADMIN) {
  470. $class_label = 'warning';
  471. $str = 'Vous';
  472. }
  473. if ($with_label)
  474. return '<span class="label label-' . $class_label . '">' . $str . '</span>';
  475. else
  476. return $str;
  477. }
  478. /**
  479. * Retourne l'historique de la commande (ajoutée, modifiée, supprimée) au format
  480. * HTML.
  481. *
  482. * @return string
  483. */
  484. public function getStrHistorique()
  485. {
  486. $arr = [
  487. 'class' => 'create',
  488. 'glyphicon' => 'plus',
  489. 'str' => 'Ajoutée',
  490. 'date' => $this->date
  491. ] ;
  492. if(!is_null($this->date_update)) {
  493. $arr = [
  494. 'class' => 'update',
  495. 'glyphicon' => 'pencil',
  496. 'str' => 'Modifiée',
  497. 'date' => $this->date_update
  498. ] ;
  499. }
  500. if(!is_null($this->date_delete)) {
  501. $arr = [
  502. 'class' => 'delete',
  503. 'glyphicon' => 'remove',
  504. 'str' => 'Annulée',
  505. 'date' => $this->date_delete
  506. ] ;
  507. }
  508. $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>' ;
  509. return $html ;
  510. }
  511. /**
  512. * Retourne une classe identifiant l'historique de la commande (ajoutée,
  513. * modifiée, supprimée).
  514. *
  515. * @return string
  516. */
  517. public function getClassHistorique()
  518. {
  519. if(!is_null($this->date_delete)) {
  520. return 'commande-delete' ;
  521. }
  522. if(!is_null($this->date_update)) {
  523. return 'commande-update' ;
  524. }
  525. return 'commande-create' ;
  526. }
  527. }