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.

465 rindas
16KB

  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. var $montant = 0;
  48. var $montant_pain = 0;
  49. var $montant_vrac = 0;
  50. var $montant_paye = 0;
  51. var $poids_pain = 0;
  52. var $poids_vrac = 0;
  53. const TYPE_AUTO = 'auto';
  54. const TYPE_USER = 'user';
  55. const TYPE_ADMIN = 'admin';
  56. const STATUT_PAYEE = 'payee';
  57. const STATUT_IMPAYEE = 'impayee';
  58. const STATUT_SURPLUS = 'surplus';
  59. const ETAT_MODIFIABLE = 'ouverte';
  60. const ETAT_PREPARATION = 'preparation';
  61. const ETAT_LIVREE = 'livree';
  62. /**
  63. * @inheritdoc
  64. */
  65. public static function tableName() {
  66. return 'commande';
  67. }
  68. public function init() {
  69. if (isset($this->commandeProduits)) {
  70. foreach ($this->commandeProduits as $p) {
  71. if ($p->mode_vente == 'unite') {
  72. $this->montant_pain += $p->prix * $p->quantite;
  73. if(isset($p->produit))
  74. $this->poids_pain += ($p->quantite * $p->produit->poids) / 1000 ;
  75. } elseif ($p->mode_vente == 'poids') {
  76. $this->montant_pain += $p->prix * $p->quantite / 1000;
  77. }
  78. }
  79. $this->montant = $this->montant_vrac + $this->montant_pain;
  80. }
  81. if (isset($this->creditHistorique) && !$this->montant_paye) {
  82. foreach ($this->creditHistorique as $ch) {
  83. if ($ch->type == CreditHistorique::TYPE_PAIEMENT)
  84. $this->montant_paye += $ch->montant;
  85. elseif ($ch->type == CreditHistorique::TYPE_REMBOURSEMENT)
  86. $this->montant_paye -= $ch->montant;
  87. }
  88. }
  89. }
  90. public static function getQuantiteProduit($id_produit, $commandes) {
  91. $quantite = 0;
  92. if (isset($commandes) && is_array($commandes) && count($commandes)) {
  93. foreach ($commandes as $c) {
  94. if(is_null($c->date_delete)) {
  95. foreach ($c->commandeProduits as $cp) {
  96. if ($cp->id_produit == $id_produit)
  97. $quantite += $cp->quantite;
  98. }
  99. }
  100. }
  101. }
  102. return $quantite;
  103. }
  104. /*
  105. * relations
  106. */
  107. public function getUser() {
  108. return $this->hasOne(User::className(), ['id' => 'id_user']);
  109. }
  110. public function getCommandeProduits() {
  111. return $this->hasMany(CommandeProduit::className(), ['id_commande' => 'id'])->with('produit');
  112. }
  113. public function getProduction() {
  114. return $this->hasOne(Production::className(), ['id' => 'id_production'])->with('etablissement');
  115. }
  116. public function getPointVente() {
  117. return $this->hasOne(PointVente::className(), ['id' => 'id_point_vente'])->with('pointVenteUser');
  118. }
  119. public function getCreditHistorique() {
  120. return $this->hasMany(CreditHistorique::className(), ['id_commande' => 'id']);
  121. }
  122. /**
  123. * @inheritdoc
  124. */
  125. public function rules() {
  126. return [
  127. [['id_user', 'date', 'id_point_vente', 'id_production'], 'required', 'message' => ''],
  128. [['id_user', 'id_point_vente', 'id_production'], 'integer'],
  129. [['paiement_automatique'], 'boolean'],
  130. [['date', 'date_update', 'commentaire', 'commentaire_point_vente'], 'safe']
  131. ];
  132. }
  133. /**
  134. * @inheritdoc
  135. */
  136. public function attributeLabels() {
  137. return [
  138. 'id' => 'ID',
  139. 'id_user' => 'Id User',
  140. 'date' => 'Date',
  141. 'date_update' => 'Date Update',
  142. 'id_point_vente' => 'Point de vente',
  143. 'id_production' => 'Date de production',
  144. ];
  145. }
  146. public function strListeVrac() {
  147. $str = '';
  148. foreach ($this->commandeProduits as $cp) {
  149. if ($cp->produit->vrac) {
  150. $str .= $cp->quantite . '&nbsp;' . Html::encode($cp->produit->diminutif) . ', ';
  151. }
  152. }
  153. return substr($str, 0, strlen($str) - 2);
  154. }
  155. public function getMontantPaye() {
  156. if ($this->montant_paye) {
  157. return $this->montant_paye;
  158. } else {
  159. $historique = CreditHistorique::find()
  160. ->where(['id_commande' => $this->id])
  161. ->all();
  162. $montant = 0;
  163. foreach ($historique as $ch) {
  164. if ($ch->type == CreditHistorique::TYPE_PAIEMENT)
  165. $montant += $ch->montant;
  166. elseif ($ch->type == CreditHistorique::TYPE_REMBOURSEMENT)
  167. $montant -= $ch->montant;
  168. }
  169. return $montant;
  170. }
  171. }
  172. public function getMontant($format = false) {
  173. if ($format)
  174. return number_format($this->getMontant(), 2) . ' €';
  175. else
  176. return $this->montant;
  177. }
  178. public function getMontantFormat() {
  179. return number_format($this->getMontant(), 2) . ' €';
  180. }
  181. public function getMontantRestant($format = false) {
  182. $montant_restant = $this->getMontant() - $this->getMontantPaye();
  183. if ($format)
  184. return number_format($montant_restant, 2) . ' €';
  185. else
  186. return $montant_restant;
  187. }
  188. public function getMontantSurplus($format = false) {
  189. $montant_surplus = $this->getMontantPaye() - $this->getMontant();
  190. if ($format)
  191. return number_format($montant_surplus, 2) . ' €';
  192. else
  193. return $montant_surplus;
  194. }
  195. public function getDataJson() {
  196. $commande = Commande::find()->with('commandeProduits')->where(['id' => $this->id])->one();
  197. $commande->init();
  198. $json_commande = [
  199. 'produits' => [],
  200. 'montant' => $commande->montant,
  201. 'str_montant' => $commande->getMontantFormat(),
  202. 'montant_paye' => $commande->getMontantPaye(),
  203. 'commentaire' => $commande->commentaire,
  204. ];
  205. foreach ($commande->commandeProduits as $commande_produit) {
  206. $json_commande['produits'][$commande_produit->id_produit] = $commande_produit->quantite;
  207. }
  208. return json_encode($json_commande);
  209. }
  210. public function creditHistorique($type, $montant, $id_etablissement, $id_user, $id_user_action) {
  211. $credit_historique = new CreditHistorique;
  212. $credit_historique->id_user = $this->id_user;
  213. $credit_historique->id_commande = $this->id;
  214. $credit_historique->montant = $montant;
  215. $credit_historique->type = $type;
  216. $credit_historique->id_etablissement = $id_etablissement;
  217. $credit_historique->id_user_action = $id_user_action;
  218. $credit_historique->populateRelation('commande', $this) ;
  219. $credit_historique->populateRelation('user', User::find()->where(['id' => $this->id_user])->one()) ;
  220. $credit_historique->save();
  221. }
  222. public function getStatutPaiement() {
  223. // payé
  224. if ($this->getMontant() - $this->getMontantPaye() < 0.01 &&
  225. $this->getMontant() - $this->getMontantPaye() >= 0) {
  226. return self::STATUT_PAYEE;
  227. }
  228. // à rembourser
  229. elseif ($this->getMontant() - $this->getMontantPaye() <= -0.01) {
  230. return self::STATUT_SURPLUS;
  231. }
  232. // reste à payer
  233. elseif ($this->getMontant() - $this->getMontantPaye() >= 0.01) {
  234. return self::STATUT_IMPAYEE;
  235. }
  236. }
  237. public function getResumePanier() {
  238. if (!isset($this->commandeProduits))
  239. $this->commandeProduits = CommandeProduit::find()->where(['id_commande' => $this->id])->all();
  240. $html = '';
  241. $count = count($this->commandeProduits);
  242. $i = 0;
  243. foreach ($this->commandeProduits as $p) {
  244. if (isset($p->produit)) {
  245. $html .= $p->quantite . ' x ' . Html::encode($p->produit->nom);
  246. if (++$i != $count)
  247. $html .= '<br />';
  248. }
  249. }
  250. return $html;
  251. }
  252. public function getResumePointVente() {
  253. $html = '';
  254. if (isset($this->pointVente)) {
  255. $html .= '<span class="nom-point-vente">' . Html::encode($this->pointVente->nom) . '</span>'
  256. . '<br /><span class="localite">' . Html::encode($this->pointVente->localite) . '</span>';
  257. if (strlen($this->commentaire_point_vente)) {
  258. $html .= '<div class="commentaire"><span>' . Html::encode($this->commentaire_point_vente) . '</span></div>';
  259. }
  260. } else {
  261. $html .= 'Point de vente supprimé';
  262. }
  263. return $html;
  264. }
  265. public function getStrMontant() {
  266. return number_format($this->montant, 2) . ' €';
  267. }
  268. public function getResumeMontant() {
  269. $html = '';
  270. $html .= $this->getStrMontant() . '<br />';
  271. if ($this->montant_paye) {
  272. if ($this->getStatutPaiement() == Commande::STATUT_PAYEE) {
  273. $html .= '<span class="label label-success">Payée</span>';
  274. } elseif ($this->getStatutPaiement() == Commande::STATUT_IMPAYEE) {
  275. $html .= '<span class="label label-danger">Non payée</span><br />
  276. Reste <strong>' . $this->getMontantRestant(true) . '</strong> à payer';
  277. } elseif ($this->getStatutPaiement() == Commande::STATUT_SURPLUS) {
  278. $html .= '<span class="label label-success">Payée</span>';
  279. }
  280. } else {
  281. $html .= '<span class="label label-default">À régler sur place</span>';
  282. }
  283. return $html;
  284. }
  285. public function getStrUser() {
  286. if (isset($this->user)) {
  287. return Html::encode($this->user->prenom . ' ' . $this->user->nom);
  288. } elseif (strlen($this->username)) {
  289. return Html::encode($this->username);
  290. } else {
  291. return 'Client introuvable';
  292. }
  293. }
  294. public static function findBy($params = []) {
  295. if (!isset($params['id_etablissement']))
  296. $params['id_etablissement'] = Yii::$app->user->identity->id_etablissement;
  297. $commandes = Commande::find()
  298. ->with('commandeProduits', 'creditHistorique', 'pointVente')
  299. ->joinWith(['production', 'user','user.userEtablissement'])
  300. ->where(['production.id_etablissement' => $params['id_etablissement']]);
  301. if (isset($params['condition']))
  302. $commandes = $commandes->andWhere($params['condition']);
  303. if (isset($params['date']))
  304. $commandes = $commandes->andWhere(['production.date' => $params['date']]);
  305. if (isset($params['type']))
  306. $commandes = $commandes->andWhere(['commande.type' => $params['type']]);
  307. if (isset($params['orderby']))
  308. $commandes = $commandes->orderBy($params['orderby']);
  309. else
  310. $commandes = $commandes->orderBy('date ASC');
  311. if (isset($params['limit']))
  312. $commandes = $commandes->limit($params['limit']);
  313. $commandes = $commandes->all();
  314. return $commandes;
  315. }
  316. public function getEtat() {
  317. $delai_commande = Etablissement::getConfig('delai_commande', $this->production->id_etablissement);
  318. $heure_limite = Etablissement::getConfig('heure_limite_commande', $this->production->id_etablissement);
  319. $date_commande = strtotime($this->production->date);
  320. $date_today = strtotime(date('Y-m-d'));
  321. $heure_today = date('G');
  322. $nb_jours = (int) (($date_commande - $date_today) / (24 * 60 * 60));
  323. if ($nb_jours <= 0) {
  324. return self::ETAT_LIVREE;
  325. } elseif ($nb_jours >= $delai_commande &&
  326. ($nb_jours != $delai_commande ||
  327. ($nb_jours == $delai_commande && $heure_today < $heure_limite))) {
  328. return self::ETAT_MODIFIABLE;
  329. }
  330. return self::ETAT_PREPARATION;
  331. }
  332. public function getStrType($with_label = false) {
  333. $class_label = '';
  334. $str = '';
  335. if ($this->type == self::TYPE_USER) {
  336. $class_label = 'success';
  337. $str = 'Client';
  338. } elseif ($this->type == self::TYPE_AUTO) {
  339. $class_label = 'default';
  340. $str = 'Auto';
  341. } elseif ($this->type == self::TYPE_ADMIN) {
  342. $class_label = 'warning';
  343. $str = 'Vous';
  344. }
  345. if ($with_label)
  346. return '<span class="label label-' . $class_label . '">' . $str . '</span>';
  347. else
  348. return $str;
  349. }
  350. public function getStrHistorique() {
  351. $arr = [
  352. 'class' => 'create',
  353. 'glyphicon' => 'plus',
  354. 'str' => 'Ajoutée',
  355. 'date' => $this->date
  356. ] ;
  357. if(!is_null($this->date_update)) {
  358. $arr = [
  359. 'class' => 'update',
  360. 'glyphicon' => 'pencil',
  361. 'str' => 'Modifiée',
  362. 'date' => $this->date_update
  363. ] ;
  364. }
  365. if(!is_null($this->date_delete)) {
  366. $arr = [
  367. 'class' => 'delete',
  368. 'glyphicon' => 'remove',
  369. 'str' => 'Annulée',
  370. 'date' => $this->date_delete
  371. ] ;
  372. }
  373. $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>' ;
  374. return $html ;
  375. }
  376. public function getClassHistorique() {
  377. if(!is_null($this->date_delete)) {
  378. return 'commande-delete' ;
  379. }
  380. if(!is_null($this->date_update)) {
  381. return 'commande-update' ;
  382. }
  383. return 'commande-create' ;
  384. }
  385. }