Bladeren bron

Refactoring/traduction modèle CommandeautoProduit > ProductSubscription

refactoring
Guillaume Bourgeois 6 jaren geleden
bovenliggende
commit
f674ffaec7
1 gewijzigde bestanden met toevoegingen van 6 en 6 verwijderingen
  1. +6
    -6
      common/models/ProductSubscription.php

+ 6
- 6
common/models/ProductSubscription.php Bestand weergeven

@@ -66,9 +66,9 @@ class ProductSubscription extends \yii\db\ActiveRecord
public function rules()
{
return [
[['id_commande_auto', 'id_produit'], 'required'],
[['id_commande_auto', 'id_produit'], 'integer'],
[['quantite'], 'number'],
[['id_subscription', 'id_product'], 'required'],
[['id_subscription', 'id_product'], 'integer'],
[['quantity'], 'number'],
];
}

@@ -79,9 +79,9 @@ class ProductSubscription extends \yii\db\ActiveRecord
{
return [
'id' => 'ID',
'id_commande_auto' => 'Id Commande Auto',
'id_produit' => 'Id Produit',
'quantite' => 'Quantite',
'id_subscription' => 'Abonnement',
'id_product' => 'Produit',
'quantity' => 'Quantité',
];
}


Laden…
Annuleren
Opslaan