Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

326 lines
11KB

  1. <?php
  2. /**
  3. * Copyright distrib (2018)
  4. *
  5. * contact@opendistrib.net
  6. *
  7. * Ce logiciel est un programme informatique servant à aider les producteurs
  8. * à distribuer leur production en circuits courts.
  9. *
  10. * Ce logiciel est régi par la licence CeCILL soumise au droit français et
  11. * respectant les principes de diffusion des logiciels libres. Vous pouvez
  12. * utiliser, modifier et/ou redistribuer ce programme sous les conditions
  13. * de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  14. * sur le site "http://www.cecill.info".
  15. *
  16. * En contrepartie de l'accessibilité au code source et des droits de copie,
  17. * de modification et de redistribution accordés par cette licence, il n'est
  18. * offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  19. * seule une responsabilité restreinte pèse sur l'auteur du programme, le
  20. * titulaire des droits patrimoniaux et les concédants successifs.
  21. *
  22. * A cet égard l'attention de l'utilisateur est attirée sur les risques
  23. * associés au chargement, à l'utilisation, à la modification et/ou au
  24. * développement et à la reproduction du logiciel par l'utilisateur étant
  25. * donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  26. * manipuler et qui le réserve donc à des développeurs et des professionnels
  27. * avertis possédant des connaissances informatiques approfondies. Les
  28. * utilisateurs sont donc invités à charger et tester l'adéquation du
  29. * logiciel à leurs besoins dans des conditions permettant d'assurer la
  30. * sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  31. * à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  32. *
  33. * Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  34. * pris connaissance de la licence CeCILL, et que vous en avez accepté les
  35. * termes.
  36. */
  37. namespace common\models;
  38. use common\helpers\Debug;
  39. use common\helpers\GlobalParam;
  40. use common\helpers\Price;
  41. use Yii;
  42. use common\components\ActiveRecordCommon;
  43. /**
  44. * This is the model class for table "product".
  45. *
  46. * @property integer $id
  47. * @property string $name
  48. * @property string $description
  49. * @property integer $active
  50. * @property string $photo
  51. * @property double $price
  52. * @property double $pweight
  53. * @property string $recipe
  54. * @property string $unit
  55. * @property double $step
  56. */
  57. class Product extends ActiveRecordCommon
  58. {
  59. var $total = 0;
  60. var $apply_distributions = true;
  61. public static $unitsArray = [
  62. 'piece' => [
  63. 'unit' => 'piece',
  64. 'wording_unit' => 'la pièce',
  65. 'wording' => 'pièce(s)',
  66. 'wording_short' => 'p.',
  67. 'coefficient' => 1
  68. ],
  69. 'g' => [
  70. 'unit' => 'g',
  71. 'wording_unit' => 'le g',
  72. 'wording' => 'g',
  73. 'wording_short' => 'g',
  74. 'coefficient' => 1000
  75. ],
  76. 'kg' => [
  77. 'unit' => 'kg',
  78. 'wording_unit' => 'le kg',
  79. 'wording' => 'kg',
  80. 'wording_short' => 'kg',
  81. 'coefficient' => 1
  82. ],
  83. 'mL' => [
  84. 'unit' => 'mL',
  85. 'wording_unit' => 'le mL',
  86. 'wording' => 'mL',
  87. 'wording_short' => 'mL',
  88. 'coefficient' => 1000
  89. ],
  90. 'L' => [
  91. 'unit' => 'L',
  92. 'wording_unit' => 'le litre',
  93. 'wording' => 'L',
  94. 'wording_short' => 'L',
  95. 'coefficient' => 1
  96. ],
  97. ];
  98. /**
  99. * @inheritdoc
  100. */
  101. public static function tableName()
  102. {
  103. return 'product';
  104. }
  105. /**
  106. * @inheritdoc
  107. */
  108. public function rules()
  109. {
  110. return [
  111. [['name', 'id_producer', 'id_tax_rate'], 'required'],
  112. [['active', 'order', 'quantity_max', 'id_producer', 'id_tax_rate'], 'integer'],
  113. [['monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday', 'sunday', 'unavailable', 'apply_distributions'], 'boolean'],
  114. [['price', 'weight', 'step'], 'number'],
  115. [['photo'], 'file'],
  116. [['name', 'description', 'photo', 'unit'], 'string', 'max' => 255],
  117. [['recipe'], 'string', 'max' => 1000],
  118. ['step', 'required', 'message' => 'Champs obligatoire', 'when' => function ($model) {
  119. if ($model->unit != 'piece') {
  120. return true;
  121. }
  122. return false;
  123. }],
  124. ];
  125. }
  126. /**
  127. * @inheritdoc
  128. */
  129. public function attributeLabels()
  130. {
  131. return [
  132. 'id' => 'ID',
  133. 'name' => 'Nom',
  134. 'description' => 'Description',
  135. 'active' => 'Actif',
  136. 'photo' => 'Photo',
  137. 'price' => 'Prix (€) TTC',
  138. 'weight' => 'Poids',
  139. 'recipe' => 'Recette',
  140. 'monday' => 'Lundi',
  141. 'tuesday' => 'Mardi',
  142. 'wednesday' => 'Mercredi',
  143. 'thursday' => 'Jeudi',
  144. 'friday' => 'Vendredi',
  145. 'saturday' => 'Samedi',
  146. 'sunday' => 'Dimanche',
  147. 'order' => 'Ordre',
  148. 'quantity_max' => 'Quantité max par défaut',
  149. 'unavailable' => 'Épuisé',
  150. 'apply_distributions' => 'Appliquer ces modifications dans les distributions futures',
  151. 'unit' => 'Unité',
  152. 'step' => 'Pas',
  153. 'id_tax_rate' => 'TVA'
  154. ];
  155. }
  156. public function afterFind() {
  157. if ($this->taxRate == null) {
  158. $this->populateRelation('taxRate', GlobalParam::getCurrentProducer()->taxRate);
  159. }
  160. parent::afterFind();
  161. }
  162. public function getProductDistribution()
  163. {
  164. return $this->hasMany(ProductDistribution::className(), ['id_product' => 'id']);
  165. }
  166. public function getProductSubscription()
  167. {
  168. return $this->hasMany(ProductSubscription::className(), ['id_product' => 'id']);
  169. }
  170. public function getTaxRate()
  171. {
  172. return $this->hasOne(TaxRate::className(), ['id' => 'id_tax_rate']);
  173. }
  174. /**
  175. * Retourne les options de base nécessaires à la fonction de recherche.
  176. *
  177. * @return array
  178. */
  179. public static function defaultOptionsSearch()
  180. {
  181. return [
  182. 'with' => ['taxRate'],
  183. 'join_with' => [],
  184. 'orderby' => 'order ASC',
  185. 'attribute_id_producer' => 'product.id_producer'
  186. ];
  187. }
  188. /**
  189. * Retourne la description du produit.
  190. *
  191. * @return string
  192. */
  193. public function getDescription()
  194. {
  195. $description = $this->description;
  196. if (isset($this->weight) && is_numeric($this->weight) && $this->weight > 0) {
  197. if ($this->weight >= 1000) {
  198. $description .= ' (' . ($this->weight / 1000) . 'kg)';
  199. } else {
  200. $description .= ' (' . $this->weight . 'g)';
  201. }
  202. }
  203. return $description;
  204. }
  205. /**
  206. * Retourne le libellé (admin) du produit.
  207. * @return type
  208. */
  209. public function getStrWordingAdmin()
  210. {
  211. return $this->name;
  212. }
  213. /**
  214. * Enregistre le produit.
  215. *
  216. * @param boolean $runValidation
  217. * @param array $attributeNames
  218. * @return boolean
  219. */
  220. public function save($runValidation = true, $attributeNames = NULL)
  221. {
  222. $this->id_producer = GlobalParam::getCurrentProducerId();
  223. return parent::save($runValidation, $attributeNames);
  224. }
  225. /**
  226. * Retourne les produits d'une production donnée.
  227. *
  228. * @param integer $idDistribution
  229. * @return array
  230. */
  231. public static function searchByDistribution($idDistribution)
  232. {
  233. return Product::find()
  234. ->leftJoin('product_distribution', 'product.id = product_distribution.id_product')
  235. ->where([
  236. 'id_producer' => GlobalParam::getCurrentProducerId(),
  237. 'product_distribution.id_distribution' => $idDistribution
  238. ])
  239. ->orderBy('product_distribution.active DESC, product.order ASC')
  240. ->all();
  241. }
  242. /**
  243. * Retourne le nombre de produits du producteur courant.
  244. *
  245. * @return integer
  246. */
  247. public static function count()
  248. {
  249. return self::searchCount();
  250. }
  251. /**
  252. * Retourne le produit "Don".
  253. *
  254. * @return Product
  255. */
  256. public static function getProductGift()
  257. {
  258. $productGift = Product::find()
  259. ->where([
  260. 'product.id_producer' => 0
  261. ])
  262. ->andFilterWhere(['like', 'product.name', 'Don'])
  263. ->one();
  264. return $productGift;
  265. }
  266. /**
  267. * Retourne le libellé d'une unité.
  268. *
  269. * @param $format wording_unit, wording, short
  270. * @param $unitInDb Unité stockée en base de données (ex: si g > kg, si mL > L)
  271. * @return $string Libellé de l'unité
  272. */
  273. public static function strUnit($unit, $format = 'wording_short', $unitInDb = false)
  274. {
  275. $strUnit = '';
  276. if ($unitInDb) {
  277. if ($unit == 'g') {
  278. $unit = 'kg';
  279. }
  280. if ($unit == 'mL') {
  281. $unit = 'L';
  282. }
  283. }
  284. if (isset(self::$unitsArray[$unit]) && isset(self::$unitsArray[$unit][$format])) {
  285. $strUnit = self::$unitsArray[$unit][$format];
  286. }
  287. return $strUnit;
  288. }
  289. /**
  290. * Retourne le prix du produit avec taxe
  291. */
  292. public function getPriceWithTax()
  293. {
  294. return Price::getPriceWithTax($this->price, $this->taxRate->value);
  295. }
  296. }