Merge pull request #12401 from grandoc/new_branch_10_11_2019
add some comment
This commit is contained in:
commit
27fb9e0c7f
@ -1981,6 +1981,13 @@ class BookKeepingLine
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
/**
|
||||
* @var integer|string $date_modification;
|
||||
*/
|
||||
public $date_modification;
|
||||
|
||||
/**
|
||||
* @var integer|string $date_export;
|
||||
*/
|
||||
public $date_export;
|
||||
}
|
||||
|
||||
@ -105,7 +105,9 @@ class BlockedLog
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
/**
|
||||
* @var integer|string $date_modification;
|
||||
*/
|
||||
public $date_modification;
|
||||
|
||||
public $date_object = 0;
|
||||
|
||||
@ -121,10 +121,9 @@ class Propal extends CommonObject
|
||||
*/
|
||||
public $datec;
|
||||
|
||||
/**
|
||||
* Creation date
|
||||
* @var int
|
||||
*/
|
||||
/**
|
||||
* @var integer|string $date_creation;
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
/**
|
||||
@ -134,15 +133,13 @@ class Propal extends CommonObject
|
||||
public $datev;
|
||||
|
||||
/**
|
||||
* Validation date
|
||||
* @var int
|
||||
*/
|
||||
* @var integer|string $date_validation;
|
||||
*/
|
||||
public $date_validation;
|
||||
|
||||
/**
|
||||
* Date of the quote
|
||||
* @var
|
||||
*/
|
||||
* @var integer|string date of the quote;
|
||||
*/
|
||||
public $date;
|
||||
|
||||
/**
|
||||
@ -150,7 +147,13 @@ class Propal extends CommonObject
|
||||
* @see $date
|
||||
*/
|
||||
public $datep;
|
||||
|
||||
/**
|
||||
* @var integer|string $date_livraison;
|
||||
*/
|
||||
public $date_livraison;
|
||||
|
||||
|
||||
public $fin_validite;
|
||||
|
||||
public $user_author_id;
|
||||
|
||||
@ -86,6 +86,10 @@ class CashControl extends CommonObject
|
||||
public $cash;
|
||||
public $cheque;
|
||||
public $card;
|
||||
|
||||
/**
|
||||
* @var integer|string $date_valid
|
||||
*/
|
||||
public $date_valid;
|
||||
|
||||
/**
|
||||
@ -93,7 +97,9 @@ class CashControl extends CommonObject
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
/**
|
||||
* @var integer|string $date_modification
|
||||
*/
|
||||
public $date_modification;
|
||||
|
||||
const STATUS_DRAFT = 0;
|
||||
|
||||
@ -54,7 +54,12 @@ class ChargeSociales extends CommonObject
|
||||
*/
|
||||
protected $table_ref_field = 'ref';
|
||||
|
||||
/**
|
||||
* @var integer|string $date_ech
|
||||
*/
|
||||
public $date_ech;
|
||||
|
||||
|
||||
public $label;
|
||||
public $type;
|
||||
public $type_label;
|
||||
@ -67,8 +72,14 @@ class ChargeSociales extends CommonObject
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
/**
|
||||
* @var integer|string $date_modification
|
||||
*/
|
||||
public $date_modification;
|
||||
|
||||
/**
|
||||
* @var integer|string $date_validation
|
||||
*/
|
||||
public $date_validation;
|
||||
|
||||
/**
|
||||
|
||||
@ -141,27 +141,27 @@ class Contrat extends CommonObject
|
||||
public $user_cloture;
|
||||
|
||||
/**
|
||||
* @var int Date of creation
|
||||
* @var integer|string Date of creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
/**
|
||||
* @var int Date of last modification. Not filled until you call ->info()
|
||||
* @var integer|string Date of last modification. Not filled until you call ->info()
|
||||
*/
|
||||
public $date_modification;
|
||||
|
||||
/**
|
||||
* @var int Date of validation
|
||||
* @var integer|string Date of validation
|
||||
*/
|
||||
public $date_validation;
|
||||
|
||||
/**
|
||||
* @var int Date when contract was signed
|
||||
* @var integer|string Date when contract was signed
|
||||
*/
|
||||
public $date_contrat;
|
||||
|
||||
/**
|
||||
* @var int Date of contract closure
|
||||
* @var integer|string Date of contract closure
|
||||
* @deprecated we close contract lines, not a contract
|
||||
*/
|
||||
public $date_cloture;
|
||||
|
||||
@ -426,8 +426,14 @@ abstract class CommonObject
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
/**
|
||||
* @var integer|string $date_validation;
|
||||
*/
|
||||
public $date_validation; // Date validation
|
||||
|
||||
/**
|
||||
* @var integer|string $date_modification;
|
||||
*/
|
||||
public $date_modification; // Date last change (tms field)
|
||||
|
||||
public $next_prev_filter;
|
||||
|
||||
@ -178,7 +178,13 @@ class EmailCollector extends CommonObject
|
||||
public $source_directory;
|
||||
public $target_directory;
|
||||
public $maxemailpercollect;
|
||||
|
||||
/**
|
||||
* @var integer|string $datelastresult
|
||||
*/
|
||||
public $datelastresult;
|
||||
|
||||
|
||||
public $lastresult;
|
||||
// END MODULEBUILDER PROPERTIES
|
||||
|
||||
|
||||
@ -123,7 +123,10 @@ class Expedition extends CommonObject
|
||||
// A denormalized value
|
||||
public $trueSize;
|
||||
|
||||
public $date_delivery; // Date delivery planed
|
||||
/**
|
||||
* @var integer|string Date delivery planed
|
||||
*/
|
||||
public $date_delivery;
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
@ -139,7 +142,7 @@ class Expedition extends CommonObject
|
||||
|
||||
/**
|
||||
* Effective delivery date
|
||||
* @var int
|
||||
* @var integer|string
|
||||
*/
|
||||
public $date_shipping;
|
||||
|
||||
@ -148,7 +151,9 @@ class Expedition extends CommonObject
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
/**
|
||||
* @var integer|string date_valid
|
||||
*/
|
||||
public $date_valid;
|
||||
|
||||
public $meths;
|
||||
|
||||
@ -63,14 +63,22 @@ class Livraison extends CommonObject
|
||||
public $socid;
|
||||
public $ref_customer;
|
||||
|
||||
public $date_delivery; // Date really received
|
||||
/**
|
||||
* @var integer|string Date really received
|
||||
*/
|
||||
public $date_delivery;
|
||||
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
/**
|
||||
* @var integer|string date_valid
|
||||
*/
|
||||
public $date_valid;
|
||||
|
||||
|
||||
public $model_pdf;
|
||||
|
||||
|
||||
|
||||
@ -72,8 +72,14 @@ class Loan extends CommonObject
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
/**
|
||||
* @var integer|string date_modification
|
||||
*/
|
||||
public $date_modification;
|
||||
|
||||
/**
|
||||
* @var integer|string date_validation
|
||||
*/
|
||||
public $date_validation;
|
||||
|
||||
public $insurance_amount;
|
||||
|
||||
@ -135,8 +135,18 @@ class Mo extends CommonObject
|
||||
public $import_key;
|
||||
public $status;
|
||||
public $fk_product;
|
||||
|
||||
/**
|
||||
* @var integer|string date_start_planned
|
||||
*/
|
||||
public $date_start_planned;
|
||||
|
||||
/**
|
||||
* @var integer|string date_end_planned
|
||||
*/
|
||||
public $date_end_planned;
|
||||
|
||||
|
||||
public $fk_bom;
|
||||
public $fk_project;
|
||||
// END MODULEBUILDER PROPERTIES
|
||||
|
||||
@ -330,7 +330,9 @@ class Product extends CommonObject
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
/**
|
||||
* @var integer|string date_modification
|
||||
*/
|
||||
public $date_modification;
|
||||
|
||||
//! Id du fournisseur
|
||||
|
||||
@ -131,8 +131,17 @@ class Inventory extends CommonObject
|
||||
*/
|
||||
public $status;
|
||||
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
/**
|
||||
* @var integer|string date_validation
|
||||
*/
|
||||
public $date_validation;
|
||||
|
||||
|
||||
public $tms;
|
||||
|
||||
/**
|
||||
|
||||
@ -80,8 +80,7 @@ class Reception extends CommonObject
|
||||
|
||||
|
||||
/**
|
||||
* Effective delivery date
|
||||
* @var int
|
||||
* @var integer|string Effective delivery date
|
||||
*/
|
||||
public $date_reception;
|
||||
|
||||
@ -90,7 +89,9 @@ class Reception extends CommonObject
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
|
||||
/**
|
||||
* @var integer|string date_validation
|
||||
*/
|
||||
public $date_valid;
|
||||
|
||||
public $meths;
|
||||
|
||||
@ -121,7 +121,13 @@ class SocieteAccount extends CommonObject
|
||||
public $fk_soc;
|
||||
|
||||
public $site;
|
||||
|
||||
/**
|
||||
* @var integer|string date_last_login
|
||||
*/
|
||||
public $date_last_login;
|
||||
|
||||
|
||||
public $date_previous_login;
|
||||
public $note_private;
|
||||
|
||||
|
||||
@ -99,7 +99,15 @@ class SupplierProposal extends CommonObject
|
||||
public $ref_fourn; //Reference saisie lors de l'ajout d'une ligne à la demande
|
||||
public $ref_supplier; //Reference saisie lors de l'ajout d'une ligne à la demande
|
||||
public $statut; // 0 (draft), 1 (validated), 2 (signed), 3 (not signed), 4 (processed/billed)
|
||||
public $date; // Date of proposal
|
||||
|
||||
/**
|
||||
* @var integer|string Date of proposal
|
||||
*/
|
||||
public $date;
|
||||
|
||||
/**
|
||||
* @var integer|string date_livraison
|
||||
*/
|
||||
public $date_livraison;
|
||||
|
||||
/**
|
||||
@ -109,9 +117,8 @@ class SupplierProposal extends CommonObject
|
||||
public $datec;
|
||||
|
||||
/**
|
||||
* Creation date
|
||||
* @var int
|
||||
*/
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
/**
|
||||
@ -121,8 +128,7 @@ class SupplierProposal extends CommonObject
|
||||
public $datev;
|
||||
|
||||
/**
|
||||
* Validation date
|
||||
* @var int
|
||||
* @var integer|string date_validation
|
||||
*/
|
||||
public $date_validation;
|
||||
|
||||
|
||||
@ -76,9 +76,13 @@ class Website extends CommonObject
|
||||
public $status;
|
||||
|
||||
/**
|
||||
* @var mixed
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
/**
|
||||
* @var integer|string date_modification
|
||||
*/
|
||||
public $date_modification;
|
||||
|
||||
/**
|
||||
|
||||
@ -84,7 +84,14 @@ class WebsitePage extends CommonObject
|
||||
*/
|
||||
public $status;
|
||||
|
||||
/**
|
||||
* @var integer|string date_creation
|
||||
*/
|
||||
public $date_creation;
|
||||
|
||||
/**
|
||||
* @var integer|string date_modification
|
||||
*/
|
||||
public $date_modification;
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user