Standardize code
This commit is contained in:
parent
6ea115f828
commit
af0bcb2631
@ -51,8 +51,17 @@ class Subscription extends CommonObject
|
|||||||
public $datem; // Date modification
|
public $datem; // Date modification
|
||||||
public $dateh; // Subscription start date (date subscription)
|
public $dateh; // Subscription start date (date subscription)
|
||||||
public $datef; // Subscription end date
|
public $datef; // Subscription end date
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int ID
|
||||||
|
*/
|
||||||
public $fk_adherent;
|
public $fk_adherent;
|
||||||
|
|
||||||
public $amount;
|
public $amount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int ID
|
||||||
|
*/
|
||||||
public $fk_bank;
|
public $fk_bank;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -132,8 +132,17 @@ class Asset extends CommonObject
|
|||||||
public $note_private;
|
public $note_private;
|
||||||
public $date_creation;
|
public $date_creation;
|
||||||
public $tms;
|
public $tms;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int ID
|
||||||
|
*/
|
||||||
public $fk_user_creat;
|
public $fk_user_creat;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int ID
|
||||||
|
*/
|
||||||
public $fk_user_modif;
|
public $fk_user_modif;
|
||||||
|
|
||||||
public $import_key;
|
public $import_key;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -161,6 +161,9 @@ class Categorie extends CommonObject
|
|||||||
*/
|
*/
|
||||||
public $table_element='categorie';
|
public $table_element='categorie';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int ID
|
||||||
|
*/
|
||||||
public $fk_parent;
|
public $fk_parent;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -168,7 +168,12 @@ class Propal extends CommonObject
|
|||||||
public $remise = 0;
|
public $remise = 0;
|
||||||
public $remise_percent = 0;
|
public $remise_percent = 0;
|
||||||
public $remise_absolue = 0;
|
public $remise_absolue = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int ID
|
||||||
|
*/
|
||||||
public $fk_address;
|
public $fk_address;
|
||||||
|
|
||||||
public $address_type;
|
public $address_type;
|
||||||
public $address;
|
public $address;
|
||||||
public $availability_id;
|
public $availability_id;
|
||||||
@ -191,7 +196,11 @@ class Propal extends CommonObject
|
|||||||
public $specimen;
|
public $specimen;
|
||||||
|
|
||||||
// Multicurrency
|
// Multicurrency
|
||||||
|
/**
|
||||||
|
* @var int ID
|
||||||
|
*/
|
||||||
public $fk_multicurrency;
|
public $fk_multicurrency;
|
||||||
|
|
||||||
public $multicurrency_code;
|
public $multicurrency_code;
|
||||||
public $multicurrency_tx;
|
public $multicurrency_tx;
|
||||||
public $multicurrency_total_ht;
|
public $multicurrency_total_ht;
|
||||||
|
|||||||
@ -111,6 +111,9 @@ class Commande extends CommonOrder
|
|||||||
public $brouillon;
|
public $brouillon;
|
||||||
public $cond_reglement_code;
|
public $cond_reglement_code;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int ID
|
||||||
|
*/
|
||||||
public $fk_account;
|
public $fk_account;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -160,7 +163,12 @@ class Commande extends CommonOrder
|
|||||||
public $date_commande;
|
public $date_commande;
|
||||||
|
|
||||||
public $date_livraison; // Date expected of shipment (date starting shipment, not the reception that occurs some days after)
|
public $date_livraison; // Date expected of shipment (date starting shipment, not the reception that occurs some days after)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int ID
|
||||||
|
*/
|
||||||
public $fk_remise_except;
|
public $fk_remise_except;
|
||||||
|
|
||||||
public $remise_percent;
|
public $remise_percent;
|
||||||
public $remise_absolue;
|
public $remise_absolue;
|
||||||
public $info_bits;
|
public $info_bits;
|
||||||
@ -180,7 +188,11 @@ class Commande extends CommonOrder
|
|||||||
public $lines = array();
|
public $lines = array();
|
||||||
|
|
||||||
// Multicurrency
|
// Multicurrency
|
||||||
|
/**
|
||||||
|
* @var int ID
|
||||||
|
*/
|
||||||
public $fk_multicurrency;
|
public $fk_multicurrency;
|
||||||
|
|
||||||
public $multicurrency_code;
|
public $multicurrency_code;
|
||||||
public $multicurrency_tx;
|
public $multicurrency_tx;
|
||||||
public $multicurrency_total_ht;
|
public $multicurrency_total_ht;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user