No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

58 líneas
1.1KB

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