diff --git a/htdocs/accountancy/class/bookkeeping.class.php b/htdocs/accountancy/class/bookkeeping.class.php index 9e58ffed942..193ca34e2f3 100644 --- a/htdocs/accountancy/class/bookkeeping.class.php +++ b/htdocs/accountancy/class/bookkeeping.class.php @@ -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; } diff --git a/htdocs/blockedlog/class/blockedlog.class.php b/htdocs/blockedlog/class/blockedlog.class.php index 4981c05afd7..14dbd9941b7 100644 --- a/htdocs/blockedlog/class/blockedlog.class.php +++ b/htdocs/blockedlog/class/blockedlog.class.php @@ -105,7 +105,9 @@ class BlockedLog */ public $date_creation; - + /** + * @var integer|string $date_modification; + */ public $date_modification; public $date_object = 0; diff --git a/htdocs/comm/propal/class/propal.class.php b/htdocs/comm/propal/class/propal.class.php index 48bc48db849..3c0765830d6 100644 --- a/htdocs/comm/propal/class/propal.class.php +++ b/htdocs/comm/propal/class/propal.class.php @@ -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; diff --git a/htdocs/compta/cashcontrol/class/cashcontrol.class.php b/htdocs/compta/cashcontrol/class/cashcontrol.class.php index 00d77987d08..ad792db0826 100644 --- a/htdocs/compta/cashcontrol/class/cashcontrol.class.php +++ b/htdocs/compta/cashcontrol/class/cashcontrol.class.php @@ -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; diff --git a/htdocs/compta/sociales/class/chargesociales.class.php b/htdocs/compta/sociales/class/chargesociales.class.php index 85643d084ff..2bc82fc8b78 100644 --- a/htdocs/compta/sociales/class/chargesociales.class.php +++ b/htdocs/compta/sociales/class/chargesociales.class.php @@ -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; /** diff --git a/htdocs/contrat/class/contrat.class.php b/htdocs/contrat/class/contrat.class.php index b85262586b9..8c6ca195755 100644 --- a/htdocs/contrat/class/contrat.class.php +++ b/htdocs/contrat/class/contrat.class.php @@ -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; diff --git a/htdocs/core/class/commonobject.class.php b/htdocs/core/class/commonobject.class.php index d1fe12f5fcc..127e12f919e 100644 --- a/htdocs/core/class/commonobject.class.php +++ b/htdocs/core/class/commonobject.class.php @@ -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; diff --git a/htdocs/emailcollector/class/emailcollector.class.php b/htdocs/emailcollector/class/emailcollector.class.php index ada3fc1e4a8..84cad7fc56f 100644 --- a/htdocs/emailcollector/class/emailcollector.class.php +++ b/htdocs/emailcollector/class/emailcollector.class.php @@ -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 diff --git a/htdocs/expedition/class/expedition.class.php b/htdocs/expedition/class/expedition.class.php index 8ec0cd64ec6..b55d4df0563 100644 --- a/htdocs/expedition/class/expedition.class.php +++ b/htdocs/expedition/class/expedition.class.php @@ -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; diff --git a/htdocs/livraison/class/livraison.class.php b/htdocs/livraison/class/livraison.class.php index c962d1d352e..0011ea3b7a7 100644 --- a/htdocs/livraison/class/livraison.class.php +++ b/htdocs/livraison/class/livraison.class.php @@ -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; diff --git a/htdocs/loan/class/loan.class.php b/htdocs/loan/class/loan.class.php index 66fdfbc25a2..165756e621f 100644 --- a/htdocs/loan/class/loan.class.php +++ b/htdocs/loan/class/loan.class.php @@ -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; diff --git a/htdocs/mrp/class/mo.class.php b/htdocs/mrp/class/mo.class.php index f688160c801..8e53cffd020 100644 --- a/htdocs/mrp/class/mo.class.php +++ b/htdocs/mrp/class/mo.class.php @@ -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 diff --git a/htdocs/product/class/product.class.php b/htdocs/product/class/product.class.php index 22c943dfa6e..5f290900de8 100644 --- a/htdocs/product/class/product.class.php +++ b/htdocs/product/class/product.class.php @@ -330,7 +330,9 @@ class Product extends CommonObject */ public $date_creation; - + /** + * @var integer|string date_modification + */ public $date_modification; //! Id du fournisseur diff --git a/htdocs/product/inventory/class/inventory.class.php b/htdocs/product/inventory/class/inventory.class.php index be6ca6aa930..7f893faad19 100644 --- a/htdocs/product/inventory/class/inventory.class.php +++ b/htdocs/product/inventory/class/inventory.class.php @@ -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; /** diff --git a/htdocs/reception/class/reception.class.php b/htdocs/reception/class/reception.class.php index 7fab05f0e6b..c2eb7fde29e 100644 --- a/htdocs/reception/class/reception.class.php +++ b/htdocs/reception/class/reception.class.php @@ -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; diff --git a/htdocs/societe/class/societeaccount.class.php b/htdocs/societe/class/societeaccount.class.php index f93dfd0ea68..abfe4cad716 100644 --- a/htdocs/societe/class/societeaccount.class.php +++ b/htdocs/societe/class/societeaccount.class.php @@ -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; diff --git a/htdocs/supplier_proposal/class/supplier_proposal.class.php b/htdocs/supplier_proposal/class/supplier_proposal.class.php index 390533a3339..769f879061c 100644 --- a/htdocs/supplier_proposal/class/supplier_proposal.class.php +++ b/htdocs/supplier_proposal/class/supplier_proposal.class.php @@ -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; diff --git a/htdocs/website/class/website.class.php b/htdocs/website/class/website.class.php index b8c412c40fb..9337c438d1e 100644 --- a/htdocs/website/class/website.class.php +++ b/htdocs/website/class/website.class.php @@ -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; /** diff --git a/htdocs/website/class/websitepage.class.php b/htdocs/website/class/websitepage.class.php index bd2b18479ca..b6371c14df7 100644 --- a/htdocs/website/class/websitepage.class.php +++ b/htdocs/website/class/websitepage.class.php @@ -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;