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.

339 line
12KB

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