Skip to content

Commit

Permalink
Standardize and update code
Browse files Browse the repository at this point in the history
  • Loading branch information
grandoc committed Sep 20, 2018
1 parent 8225e03 commit e64fbd9
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 4 deletions.
Expand Up @@ -47,7 +47,17 @@ class mod_facture_fournisseur_tulip extends ModeleNumRefSuppliersInvoices
*/
public $error = '';

public $nom = 'Tulip';
/**
* @var string Nom du modele
* @deprecated
* @see name
*/
public $nom='Tulip';

/**
* @var string model name
*/
public $name='Tulip';


/**
Expand Down
Expand Up @@ -42,7 +42,17 @@ class mod_commande_fournisseur_muguet extends ModeleNumRefSuppliersOrders
*/
public $error = '';

public $nom = 'Muguet';
/**
* @var string Nom du modele
* @deprecated
* @see name
*/
public $nom='Muguet';

/**
* @var string model name
*/
public $name='Muguet';

public $prefix='CF';

Expand Down
Expand Up @@ -43,7 +43,17 @@ class mod_commande_fournisseur_orchidee extends ModeleNumRefSuppliersOrders
*/
public $error = '';

public $nom = 'Orchidee';
/**
* @var string Nom du modele
* @deprecated
* @see name
*/
public $nom='Orchidee';

/**
* @var string model name
*/
public $name='Orchidee';


/**
Expand Down
Expand Up @@ -41,7 +41,17 @@ class mod_supplier_payment_brodator extends ModeleNumRefSupplierPayments
*/
public $error = '';

public $nom = 'Brodator';
/**
* @var string Nom du modele
* @deprecated
* @see name
*/
public $nom='Brodator';

/**
* @var string model name
*/
public $name='Brodator';


/**
Expand Down
Expand Up @@ -42,8 +42,18 @@ class mod_supplier_payment_bronan extends ModeleNumRefSupplierPayments
*/
public $error='';

/**
* @var string Nom du modele
* @deprecated
* @see name
*/
public $nom='Bronan';

/**
* @var string model name
*/
public $name='Bronan';


/**
* Return description of numbering module
Expand Down

0 comments on commit e64fbd9

Please sign in to comment.