Merge pull request #12286 from grandoc/new_branch_01_11_2019
add some comment
This commit is contained in:
commit
d232b7a387
@ -1975,7 +1975,12 @@ class BookKeepingLine
|
||||
public $code_journal;
|
||||
public $journal_label;
|
||||
public $piece_num;
|
||||
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
public $date_modification;
|
||||
public $date_export;
|
||||
}
|
||||
|
||||
@ -128,7 +128,13 @@ class Asset extends CommonObject
|
||||
|
||||
public $note_public;
|
||||
public $note_private;
|
||||
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
public $tms;
|
||||
|
||||
/**
|
||||
|
||||
@ -100,7 +100,12 @@ class BlockedLog
|
||||
*/
|
||||
public $fk_user = 0;
|
||||
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
public $date_modification;
|
||||
|
||||
public $date_object = 0;
|
||||
|
||||
@ -112,7 +112,13 @@ class BOM extends CommonObject
|
||||
public $description;
|
||||
public $note_public;
|
||||
public $note_private;
|
||||
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
public $tms;
|
||||
public $fk_user_creat;
|
||||
public $fk_user_modif;
|
||||
|
||||
@ -67,7 +67,12 @@ class Mailing extends CommonObject
|
||||
public $user_creat;
|
||||
public $user_valid;
|
||||
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creat;
|
||||
|
||||
|
||||
public $date_valid;
|
||||
|
||||
public $extraparams=array();
|
||||
|
||||
@ -87,7 +87,13 @@ class CashControl extends CommonObject
|
||||
public $cheque;
|
||||
public $card;
|
||||
public $date_valid;
|
||||
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
public $date_modification;
|
||||
|
||||
const STATUS_DRAFT = 0;
|
||||
|
||||
@ -61,7 +61,13 @@ class ChargeSociales extends CommonObject
|
||||
public $amount;
|
||||
public $paye;
|
||||
public $periode;
|
||||
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
public $date_modification;
|
||||
public $date_validation;
|
||||
|
||||
|
||||
@ -421,7 +421,12 @@ abstract class CommonObject
|
||||
public $civility_id;
|
||||
|
||||
// Dates
|
||||
public $date_creation; // Date creation
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
public $date_validation; // Date validation
|
||||
public $date_modification; // Date last change (tms field)
|
||||
|
||||
|
||||
@ -105,7 +105,13 @@ class EmailSenderProfile extends CommonObject
|
||||
public $label;
|
||||
|
||||
public $email;
|
||||
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
public $tms;
|
||||
//public $fk_user_creat;
|
||||
//public $fk_user_modif;
|
||||
|
||||
@ -151,7 +151,12 @@ class EmailCollector extends CommonObject
|
||||
*/
|
||||
public $status;
|
||||
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
public $tms;
|
||||
|
||||
/**
|
||||
|
||||
@ -98,7 +98,13 @@ class EmailCollectorAction extends CommonObject
|
||||
public $fk_emailcollector;
|
||||
public $type;
|
||||
public $actionparam;
|
||||
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
public $tms;
|
||||
public $fk_user_creat;
|
||||
public $fk_user_modif;
|
||||
|
||||
@ -97,7 +97,13 @@ class EmailCollectorFilter extends CommonObject
|
||||
public $fk_emailcollector;
|
||||
public $type;
|
||||
public $rulevalue;
|
||||
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
public $tms;
|
||||
public $fk_user_creat;
|
||||
public $fk_user_modif;
|
||||
|
||||
@ -143,7 +143,12 @@ class Expedition extends CommonObject
|
||||
*/
|
||||
public $date_shipping;
|
||||
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
public $date_valid;
|
||||
|
||||
public $meths;
|
||||
|
||||
@ -66,13 +66,14 @@ class Livraison extends CommonObject
|
||||
public $date_delivery; // Date really received
|
||||
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
public $date_valid;
|
||||
public $model_pdf;
|
||||
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
|
||||
@ -66,7 +66,13 @@ class Loan extends CommonObject
|
||||
public $account_capital;
|
||||
public $account_insurance;
|
||||
public $account_interest;
|
||||
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
public $date_modification;
|
||||
public $date_validation;
|
||||
|
||||
|
||||
@ -121,7 +121,13 @@ class Mo extends CommonObject
|
||||
public $fk_soc;
|
||||
public $note_public;
|
||||
public $note_private;
|
||||
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
public $tms;
|
||||
public $fk_user_creat;
|
||||
public $fk_user_modif;
|
||||
|
||||
@ -325,7 +325,12 @@ class Product extends CommonObject
|
||||
public $imgWidth;
|
||||
public $imgHeight;
|
||||
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
public $date_modification;
|
||||
|
||||
//! Id du fournisseur
|
||||
|
||||
Loading…
Reference in New Issue
Block a user