|
|
@@ -48,12 +48,14 @@ use Yii; |
|
|
|
* @property integer $id_produit |
|
|
|
* @property double $quantite |
|
|
|
*/ |
|
|
|
class CommandeProduit extends \yii\db\ActiveRecord { |
|
|
|
class CommandeProduit extends \yii\db\ActiveRecord |
|
|
|
{ |
|
|
|
|
|
|
|
/** |
|
|
|
* @inheritdoc |
|
|
|
*/ |
|
|
|
public static function tableName() { |
|
|
|
public static function tableName() |
|
|
|
{ |
|
|
|
return 'commande_produit'; |
|
|
|
} |
|
|
|
|
|
|
@@ -61,14 +63,16 @@ class CommandeProduit extends \yii\db\ActiveRecord { |
|
|
|
* Relations |
|
|
|
*/ |
|
|
|
|
|
|
|
public function getProduit() { |
|
|
|
public function getProduit() |
|
|
|
{ |
|
|
|
return $this->hasOne(Produit::className(), ['id' => 'id_produit']); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @inheritdoc |
|
|
|
*/ |
|
|
|
public function rules() { |
|
|
|
public function rules() |
|
|
|
{ |
|
|
|
return [ |
|
|
|
[['id_commande', 'id_produit', 'quantite'], 'required'], |
|
|
|
[['id_commande', 'id_produit'], 'integer'], |
|
|
@@ -79,7 +83,8 @@ class CommandeProduit extends \yii\db\ActiveRecord { |
|
|
|
/** |
|
|
|
* @inheritdoc |
|
|
|
*/ |
|
|
|
public function attributeLabels() { |
|
|
|
public function attributeLabels() |
|
|
|
{ |
|
|
|
return [ |
|
|
|
'id' => 'ID', |
|
|
|
'id_commande' => 'Id Commande', |
|
|
@@ -88,4 +93,4 @@ class CommandeProduit extends \yii\db\ActiveRecord { |
|
|
|
]; |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |