Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

305 linhas
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\GlobalParam;
  39. use Yii;
  40. use common\components\ActiveRecordCommon;
  41. /**
  42. * This is the model class for table "product".
  43. *
  44. * @property integer $id
  45. * @property string $name
  46. * @property string $description
  47. * @property integer $active
  48. * @property string $photo
  49. * @property double $price
  50. * @property double $pweight
  51. * @property string $recipe
  52. * @property string $unit
  53. * @property double $step
  54. */
  55. class Product extends ActiveRecordCommon
  56. {
  57. var $total = 0;
  58. var $apply_distributions = true;
  59. public static $unitsArray = [
  60. 'piece' => [
  61. 'unit' => 'piece',
  62. 'wording_unit' => 'la pièce',
  63. 'wording' => 'pièce(s)',
  64. 'wording_short' => 'p.',
  65. 'coefficient' => 1
  66. ],
  67. 'g' => [
  68. 'unit' => 'g',
  69. 'wording_unit' => 'le g',
  70. 'wording' => 'g',
  71. 'wording_short' => 'g',
  72. 'coefficient' => 1000
  73. ],
  74. 'kg' => [
  75. 'unit' => 'kg',
  76. 'wording_unit' => 'le kg',
  77. 'wording' => 'kg',
  78. 'wording_short' => 'kg',
  79. 'coefficient' => 1
  80. ],
  81. 'mL' => [
  82. 'unit' => 'mL',
  83. 'wording_unit' => 'le mL',
  84. 'wording' => 'mL',
  85. 'wording_short' => 'mL',
  86. 'coefficient' => 1000
  87. ],
  88. 'L' => [
  89. 'unit' => 'L',
  90. 'wording_unit' => 'le litre',
  91. 'wording' => 'L',
  92. 'wording_short' => 'L',
  93. 'coefficient' => 1
  94. ],
  95. ];
  96. /**
  97. * @inheritdoc
  98. */
  99. public static function tableName()
  100. {
  101. return 'product';
  102. }
  103. /**
  104. * @inheritdoc
  105. */
  106. public function rules()
  107. {
  108. return [
  109. [['name', 'id_producer', 'id_tax_rate'], 'required'],
  110. [['active', 'order', 'quantity_max', 'id_producer', 'id_tax_rate'], 'integer'],
  111. [['monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday', 'sunday', 'unavailable', 'apply_distributions'], 'boolean'],
  112. [['price', 'weight', 'step'], 'number'],
  113. [['photo'], 'file'],
  114. [['name', 'description', 'photo', 'unit'], 'string', 'max' => 255],
  115. [['recipe'], 'string', 'max' => 1000],
  116. ['step', 'required', 'message' => 'Champs obligatoire', 'when' => function ($model) {
  117. if ($model->unit != 'piece') {
  118. return true;
  119. }
  120. return false;
  121. }],
  122. ];
  123. }
  124. /**
  125. * @inheritdoc
  126. */
  127. public function attributeLabels()
  128. {
  129. return [
  130. 'id' => 'ID',
  131. 'name' => 'Nom',
  132. 'description' => 'Description',
  133. 'active' => 'Actif',
  134. 'photo' => 'Photo',
  135. 'price' => 'Prix (€) TTC',
  136. 'weight' => 'Poids',
  137. 'recipe' => 'Recette',
  138. 'monday' => 'Lundi',
  139. 'tuesday' => 'Mardi',
  140. 'wednesday' => 'Mercredi',
  141. 'thursday' => 'Jeudi',
  142. 'friday' => 'Vendredi',
  143. 'saturday' => 'Samedi',
  144. 'sunday' => 'Dimanche',
  145. 'order' => 'Ordre',
  146. 'quantity_max' => 'Quantité max par défaut',
  147. 'unavailable' => 'Épuisé',
  148. 'apply_distributions' => 'Appliquer ces modifications dans les distributions futures',
  149. 'unit' => 'Unité',
  150. 'step' => 'Pas',
  151. 'id_tax_rate' => 'TVA'
  152. ];
  153. }
  154. public function getProductDistribution()
  155. {
  156. return $this->hasMany(ProductDistribution::className(), ['id_product' => 'id']);
  157. }
  158. public function getProductSubscription()
  159. {
  160. return $this->hasMany(ProductSubscription::className(), ['id_product' => 'id']);
  161. }
  162. public function getTaxRate()
  163. {
  164. return $this->hasOne(TaxRate::className(), ['id' => 'id_tax_rate']);
  165. }
  166. /**
  167. * Retourne les options de base nécessaires à la fonction de recherche.
  168. *
  169. * @return array
  170. */
  171. public static function defaultOptionsSearch()
  172. {
  173. return [
  174. 'with' => ['taxRate'],
  175. 'join_with' => [],
  176. 'orderby' => 'order ASC',
  177. 'attribute_id_producer' => 'product.id_producer'
  178. ];
  179. }
  180. /**
  181. * Retourne la description du produit.
  182. *
  183. * @return string
  184. */
  185. public function getDescription()
  186. {
  187. $description = $this->description;
  188. if (isset($this->weight) && is_numeric($this->weight) && $this->weight > 0) {
  189. if ($this->weight >= 1000) {
  190. $description .= ' (' . ($this->weight / 1000) . 'kg)';
  191. } else {
  192. $description .= ' (' . $this->weight . 'g)';
  193. }
  194. }
  195. return $description;
  196. }
  197. /**
  198. * Retourne le libellé (admin) du produit.
  199. * @return type
  200. */
  201. public function getStrWordingAdmin()
  202. {
  203. return $this->name;
  204. }
  205. /**
  206. * Enregistre le produit.
  207. *
  208. * @param boolean $runValidation
  209. * @param array $attributeNames
  210. * @return boolean
  211. */
  212. public function save($runValidation = true, $attributeNames = NULL)
  213. {
  214. $this->id_producer = GlobalParam::getCurrentProducerId();
  215. return parent::save($runValidation, $attributeNames);
  216. }
  217. /**
  218. * Retourne les produits d'une production donnée.
  219. *
  220. * @param integer $idDistribution
  221. * @return array
  222. */
  223. public static function searchByDistribution($idDistribution)
  224. {
  225. return Product::find()
  226. ->leftJoin('product_distribution', 'product.id = product_distribution.id_product')
  227. ->where([
  228. 'id_producer' => GlobalParam::getCurrentProducerId(),
  229. 'product_distribution.id_distribution' => $idDistribution
  230. ])
  231. ->orderBy('product_distribution.active DESC, product.order ASC')
  232. ->all();
  233. }
  234. /**
  235. * Retourne le nombre de produits du producteur courant.
  236. *
  237. * @return integer
  238. */
  239. public static function count()
  240. {
  241. return self::searchCount();
  242. }
  243. /**
  244. * Retourne le produit "Don".
  245. *
  246. * @return Product
  247. */
  248. public static function getProductGift()
  249. {
  250. $productGift = Product::find()
  251. ->where([
  252. 'product.id_producer' => 0
  253. ])
  254. ->andFilterWhere(['like', 'product.name', 'Don'])
  255. ->one();
  256. return $productGift;
  257. }
  258. /**
  259. * Retourne le libellé d'une unité.
  260. *
  261. * @param $format wording_unit, wording, short
  262. * @param $unitInDb Unité stockée en base de données (ex: si g > kg, si mL > L)
  263. * @return $string Libellé de l'unité
  264. */
  265. public static function strUnit($unit, $format = 'wording_short', $unitInDb = false)
  266. {
  267. $strUnit = '';
  268. if ($unitInDb) {
  269. if ($unit == 'g') {
  270. $unit = 'kg';
  271. }
  272. if ($unit == 'mL') {
  273. $unit = 'L';
  274. }
  275. }
  276. if (isset(self::$unitsArray[$unit]) && isset(self::$unitsArray[$unit][$format])) {
  277. $strUnit = self::$unitsArray[$unit][$format];
  278. }
  279. return $strUnit;
  280. }
  281. }