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.

61 lines
1.1KB

  1. <?php
  2. namespace common\models;
  3. use Yii;
  4. /**
  5. * This is the model class for table "tax_rate".
  6. *
  7. * @property integer $id
  8. * @property string $name
  9. * @property double $pourcent
  10. */
  11. class TaxRate extends \yii\db\ActiveRecord
  12. {
  13. /**
  14. * @inheritdoc
  15. */
  16. public static function tableName()
  17. {
  18. return 'tax_rate';
  19. }
  20. /**
  21. * @inheritdoc
  22. */
  23. public function rules()
  24. {
  25. return [
  26. [['pourcent'], 'number'],
  27. [['name'], 'string', 'max' => 255],
  28. ];
  29. }
  30. /**
  31. * @inheritdoc
  32. */
  33. public function attributeLabels()
  34. {
  35. return [
  36. 'id' => 'ID',
  37. 'name' => 'Nom',
  38. 'pourcent' => 'Pourcentage',
  39. ];
  40. }
  41. /**
  42. * Retourne les options de base nécessaires à la fonction de recherche.
  43. *
  44. * @return array
  45. */
  46. public static function defaultOptionsSearch() {
  47. return [
  48. 'with' => [],
  49. 'join_with' => [],
  50. 'orderby' => 'pourcent ASC',
  51. 'attribute_id_producer' => ''
  52. ] ;
  53. }
  54. }