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.

56 rindas
1.1KB

  1. <?php
  2. namespace common\models;
  3. use Yii;
  4. use common\models\Produit ;
  5. /**
  6. * This is the model class for table "commande_auto_produit".
  7. *
  8. * @property integer $id
  9. * @property integer $id_commande_auto
  10. * @property integer $id_produit
  11. * @property double $quantite
  12. */
  13. class CommandeAutoProduit extends \yii\db\ActiveRecord
  14. {
  15. /**
  16. * @inheritdoc
  17. */
  18. public static function tableName()
  19. {
  20. return 'commande_auto_produit';
  21. }
  22. /**
  23. * @inheritdoc
  24. */
  25. public function rules()
  26. {
  27. return [
  28. [['id_commande_auto', 'id_produit'], 'required'],
  29. [['id_commande_auto', 'id_produit'], 'integer'],
  30. [['quantite'], 'number'],
  31. ];
  32. }
  33. /**
  34. * @inheritdoc
  35. */
  36. public function attributeLabels()
  37. {
  38. return [
  39. 'id' => 'ID',
  40. 'id_commande_auto' => 'Id Commande Auto',
  41. 'id_produit' => 'Id Produit',
  42. 'quantite' => 'Quantite',
  43. ];
  44. }
  45. public function getProduit()
  46. {
  47. return $this->hasOne(Produit::className(), ['id'=>'id_produit']) ;
  48. }
  49. }