From 762b70fab741dfa7b574bbfba9dade8f70882d8d Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sun, 10 Nov 2019 10:51:16 +0100 Subject: [PATCH 01/30] add some comment --- htdocs/accountancy/class/bookkeeping.class.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/htdocs/accountancy/class/bookkeeping.class.php b/htdocs/accountancy/class/bookkeeping.class.php index 9e58ffed942..03ef8e2754b 100644 --- a/htdocs/accountancy/class/bookkeeping.class.php +++ b/htdocs/accountancy/class/bookkeeping.class.php @@ -1980,7 +1980,14 @@ class BookKeepingLine * @var integer|string date_creation */ public $date_creation; - + + /** + * @var integer|string $date_modification; + */ public $date_modification; + + /** + * @var integer|string $date_export; + */ public $date_export; } From 11f29df93d09a90572ce9dc5eae06781a8778aea Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Sun, 10 Nov 2019 09:52:03 +0000 Subject: [PATCH 02/30] Fixing style errors. --- htdocs/accountancy/class/bookkeeping.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/accountancy/class/bookkeeping.class.php b/htdocs/accountancy/class/bookkeeping.class.php index 03ef8e2754b..193ca34e2f3 100644 --- a/htdocs/accountancy/class/bookkeeping.class.php +++ b/htdocs/accountancy/class/bookkeeping.class.php @@ -1980,12 +1980,12 @@ class BookKeepingLine * @var integer|string date_creation */ public $date_creation; - + /** * @var integer|string $date_modification; */ public $date_modification; - + /** * @var integer|string $date_export; */ From bb352a50041021d5bf2a42faf606fa47dce05c3e Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sun, 10 Nov 2019 10:55:37 +0100 Subject: [PATCH 03/30] add some comment --- htdocs/blockedlog/class/blockedlog.class.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; From 6e0c028d51d47d9dc5b415c8e8c176e0d46a9f9e Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sun, 10 Nov 2019 10:59:44 +0100 Subject: [PATCH 04/30] add some comment --- htdocs/comm/propal/class/propal.class.php | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/htdocs/comm/propal/class/propal.class.php b/htdocs/comm/propal/class/propal.class.php index 48bc48db849..3094aa77232 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; From bb74d2f8bd41df55bccc95df0859b2c45e46d788 Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Sun, 10 Nov 2019 10:00:07 +0000 Subject: [PATCH 05/30] Fixing style errors. --- htdocs/comm/propal/class/propal.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/comm/propal/class/propal.class.php b/htdocs/comm/propal/class/propal.class.php index 3094aa77232..3c0765830d6 100644 --- a/htdocs/comm/propal/class/propal.class.php +++ b/htdocs/comm/propal/class/propal.class.php @@ -147,13 +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; From f960191671433a122f942fe92cc272c182ffb479 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sun, 10 Nov 2019 11:02:44 +0100 Subject: [PATCH 06/30] add some comment --- htdocs/compta/cashcontrol/class/cashcontrol.class.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/htdocs/compta/cashcontrol/class/cashcontrol.class.php b/htdocs/compta/cashcontrol/class/cashcontrol.class.php index 00d77987d08..0b7fec88bc3 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; From 4dda9edeb6837dfc67e457d91af96a80c8ceb104 Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Sun, 10 Nov 2019 10:01:28 +0000 Subject: [PATCH 07/30] Fixing style errors. --- htdocs/compta/cashcontrol/class/cashcontrol.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/compta/cashcontrol/class/cashcontrol.class.php b/htdocs/compta/cashcontrol/class/cashcontrol.class.php index 0b7fec88bc3..ad792db0826 100644 --- a/htdocs/compta/cashcontrol/class/cashcontrol.class.php +++ b/htdocs/compta/cashcontrol/class/cashcontrol.class.php @@ -86,7 +86,7 @@ class CashControl extends CommonObject public $cash; public $cheque; public $card; - + /** * @var integer|string $date_valid */ From fae5d56d345022ab42f9f10468dfeb4947d543a6 Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Sun, 10 Nov 2019 10:04:11 +0000 Subject: [PATCH 08/30] Fixing style errors. --- htdocs/compta/sociales/class/chargesociales.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/htdocs/compta/sociales/class/chargesociales.class.php b/htdocs/compta/sociales/class/chargesociales.class.php index d007c7be573..2bc82fc8b78 100644 --- a/htdocs/compta/sociales/class/chargesociales.class.php +++ b/htdocs/compta/sociales/class/chargesociales.class.php @@ -53,13 +53,13 @@ class ChargeSociales extends CommonObject * {@inheritdoc} */ protected $table_ref_field = 'ref'; - + /** * @var integer|string $date_ech */ public $date_ech; - - + + public $label; public $type; public $type_label; @@ -76,7 +76,7 @@ class ChargeSociales extends CommonObject * @var integer|string $date_modification */ public $date_modification; - + /** * @var integer|string $date_validation */ From b0d68a6de10b1a2e2225d2421165780cada2cd98 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sun, 10 Nov 2019 11:05:30 +0100 Subject: [PATCH 09/30] add some comment --- .../sociales/class/chargesociales.class.php | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/htdocs/compta/sociales/class/chargesociales.class.php b/htdocs/compta/sociales/class/chargesociales.class.php index 85643d084ff..d007c7be573 100644 --- a/htdocs/compta/sociales/class/chargesociales.class.php +++ b/htdocs/compta/sociales/class/chargesociales.class.php @@ -53,8 +53,13 @@ class ChargeSociales extends CommonObject * {@inheritdoc} */ 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; /** From 2eade41de91d24546bc8bd94173aefa023e7b189 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sun, 10 Nov 2019 11:07:47 +0100 Subject: [PATCH 10/30] add some comment --- htdocs/contrat/class/contrat.class.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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; From 9bf4347371ad4db8e7c89c6a5638ed18bd4077e1 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sun, 10 Nov 2019 11:11:43 +0100 Subject: [PATCH 11/30] add some comment --- htdocs/core/class/commonobject.class.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/htdocs/core/class/commonobject.class.php b/htdocs/core/class/commonobject.class.php index d1fe12f5fcc..d81dc97bba9 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; From f8138c22a34d3c8f427a043b8bd8a0f2f9eada50 Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Sun, 10 Nov 2019 10:12:10 +0000 Subject: [PATCH 12/30] Fixing style errors. --- htdocs/core/class/commonobject.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/class/commonobject.class.php b/htdocs/core/class/commonobject.class.php index d81dc97bba9..127e12f919e 100644 --- a/htdocs/core/class/commonobject.class.php +++ b/htdocs/core/class/commonobject.class.php @@ -430,7 +430,7 @@ abstract class CommonObject * @var integer|string $date_validation; */ public $date_validation; // Date validation - + /** * @var integer|string $date_modification; */ From 3cae9d36518781d4cb04097a2803338ff85ad945 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sun, 10 Nov 2019 11:58:28 +0100 Subject: [PATCH 13/30] add some comment --- htdocs/emailcollector/class/emailcollector.class.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/htdocs/emailcollector/class/emailcollector.class.php b/htdocs/emailcollector/class/emailcollector.class.php index ada3fc1e4a8..0347f123c74 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 From 3e3e0e99f812924c915e32035050c93bdfa50d8d Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Sun, 10 Nov 2019 10:58:54 +0000 Subject: [PATCH 14/30] Fixing style errors. --- htdocs/emailcollector/class/emailcollector.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/emailcollector/class/emailcollector.class.php b/htdocs/emailcollector/class/emailcollector.class.php index 0347f123c74..84cad7fc56f 100644 --- a/htdocs/emailcollector/class/emailcollector.class.php +++ b/htdocs/emailcollector/class/emailcollector.class.php @@ -178,13 +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 From a0de5bf7cb8479e8aa1cc556809520ba3fe27272 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sun, 10 Nov 2019 12:01:34 +0100 Subject: [PATCH 15/30] add some comment --- htdocs/expedition/class/expedition.class.php | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/htdocs/expedition/class/expedition.class.php b/htdocs/expedition/class/expedition.class.php index 8ec0cd64ec6..94f1ca12aae 100644 --- a/htdocs/expedition/class/expedition.class.php +++ b/htdocs/expedition/class/expedition.class.php @@ -122,8 +122,11 @@ class Expedition extends CommonObject public $depth_units; // 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; From d8267fee4ac4666fcec404aab3d05786dfaef17d Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Sun, 10 Nov 2019 11:00:19 +0000 Subject: [PATCH 16/30] Fixing style errors. --- htdocs/expedition/class/expedition.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/expedition/class/expedition.class.php b/htdocs/expedition/class/expedition.class.php index 94f1ca12aae..b55d4df0563 100644 --- a/htdocs/expedition/class/expedition.class.php +++ b/htdocs/expedition/class/expedition.class.php @@ -122,7 +122,7 @@ class Expedition extends CommonObject public $depth_units; // A denormalized value public $trueSize; - + /** * @var integer|string Date delivery planed */ From e22ca90a3f6ccc75672102b38858ef66a0b9b206 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sun, 10 Nov 2019 12:05:45 +0100 Subject: [PATCH 17/30] add some comment --- htdocs/livraison/class/livraison.class.php | 18 +++++++++++++----- htdocs/loan/class/loan.class.php | 8 +++++++- 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/htdocs/livraison/class/livraison.class.php b/htdocs/livraison/class/livraison.class.php index c962d1d352e..ec556c82759 100644 --- a/htdocs/livraison/class/livraison.class.php +++ b/htdocs/livraison/class/livraison.class.php @@ -62,15 +62,23 @@ class Livraison extends CommonObject public $brouillon; 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..a453732a5d2 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; From d4b7950d87d9ee3ff7901e38d8c3ecf32bc6f55a Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Sun, 10 Nov 2019 11:06:12 +0000 Subject: [PATCH 18/30] Fixing style errors. --- htdocs/livraison/class/livraison.class.php | 10 +++++----- htdocs/loan/class/loan.class.php | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/htdocs/livraison/class/livraison.class.php b/htdocs/livraison/class/livraison.class.php index ec556c82759..0011ea3b7a7 100644 --- a/htdocs/livraison/class/livraison.class.php +++ b/htdocs/livraison/class/livraison.class.php @@ -62,23 +62,23 @@ class Livraison extends CommonObject public $brouillon; public $socid; public $ref_customer; - + /** * @var integer|string Date really received */ - public $date_delivery; + public $date_delivery; /** * @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 a453732a5d2..165756e621f 100644 --- a/htdocs/loan/class/loan.class.php +++ b/htdocs/loan/class/loan.class.php @@ -76,7 +76,7 @@ class Loan extends CommonObject * @var integer|string date_modification */ public $date_modification; - + /** * @var integer|string date_validation */ From 18d06a1c20ae883573a6fbba7f5cf5f7e69519d1 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sun, 10 Nov 2019 12:08:41 +0100 Subject: [PATCH 19/30] add some comment --- htdocs/mrp/class/mo.class.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/htdocs/mrp/class/mo.class.php b/htdocs/mrp/class/mo.class.php index f688160c801..f05e38fa877 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 From 491fe4bdff521277ed824bf2c64cfe1a68eb7606 Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Sun, 10 Nov 2019 11:09:09 +0000 Subject: [PATCH 20/30] Fixing style errors. --- htdocs/mrp/class/mo.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/htdocs/mrp/class/mo.class.php b/htdocs/mrp/class/mo.class.php index f05e38fa877..8e53cffd020 100644 --- a/htdocs/mrp/class/mo.class.php +++ b/htdocs/mrp/class/mo.class.php @@ -135,18 +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 From 69e1d0480aecaab62695ad3fd39419eff1aee691 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sun, 10 Nov 2019 12:10:13 +0100 Subject: [PATCH 21/30] add some comment --- htdocs/product/class/product.class.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 From 098ffd482737a862fba1bb87ce07962d29fc404e Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sun, 10 Nov 2019 12:12:14 +0100 Subject: [PATCH 22/30] add some comment --- htdocs/product/inventory/class/inventory.class.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/htdocs/product/inventory/class/inventory.class.php b/htdocs/product/inventory/class/inventory.class.php index be6ca6aa930..cefdfc37972 100644 --- a/htdocs/product/inventory/class/inventory.class.php +++ b/htdocs/product/inventory/class/inventory.class.php @@ -130,9 +130,18 @@ class Inventory extends CommonObject * @var int Status */ public $status; - + + /** + * @var integer|string date_creation + */ public $date_creation; + + /** + * @var integer|string date_validation + */ public $date_validation; + + public $tms; /** From 3df87a419c8ef0478cc1a7bc27f8e217a082a224 Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Sun, 10 Nov 2019 11:12:42 +0000 Subject: [PATCH 23/30] Fixing style errors. --- htdocs/product/inventory/class/inventory.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/htdocs/product/inventory/class/inventory.class.php b/htdocs/product/inventory/class/inventory.class.php index cefdfc37972..7f893faad19 100644 --- a/htdocs/product/inventory/class/inventory.class.php +++ b/htdocs/product/inventory/class/inventory.class.php @@ -130,18 +130,18 @@ class Inventory extends CommonObject * @var int Status */ public $status; - + /** * @var integer|string date_creation */ public $date_creation; - + /** * @var integer|string date_validation */ public $date_validation; - - + + public $tms; /** From f13f148d7fe1fe786eac62bacd455326470ff44d Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sun, 10 Nov 2019 12:14:39 +0100 Subject: [PATCH 24/30] add some comment --- htdocs/reception/class/reception.class.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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; From d907f36bb6f4308fea1c374d3f52a593c64f3731 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sun, 10 Nov 2019 12:16:51 +0100 Subject: [PATCH 25/30] add some comment --- htdocs/societe/class/societeaccount.class.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/htdocs/societe/class/societeaccount.class.php b/htdocs/societe/class/societeaccount.class.php index f93dfd0ea68..b9ef4d4838c 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; From b892ed05ba51af5e783423bce862206578296de8 Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Sun, 10 Nov 2019 11:17:19 +0000 Subject: [PATCH 26/30] Fixing style errors. --- htdocs/societe/class/societeaccount.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/societe/class/societeaccount.class.php b/htdocs/societe/class/societeaccount.class.php index b9ef4d4838c..abfe4cad716 100644 --- a/htdocs/societe/class/societeaccount.class.php +++ b/htdocs/societe/class/societeaccount.class.php @@ -121,13 +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; From 81a5d853d007fa3875ced1475adec969e87a24a7 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sun, 10 Nov 2019 12:20:11 +0100 Subject: [PATCH 27/30] add some comment --- .../class/supplier_proposal.class.php | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/htdocs/supplier_proposal/class/supplier_proposal.class.php b/htdocs/supplier_proposal/class/supplier_proposal.class.php index 390533a3339..6259685ac37 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; From 10eb35187760fce9fe286e827bef737bcae9da37 Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Sun, 10 Nov 2019 11:20:38 +0000 Subject: [PATCH 28/30] Fixing style errors. --- htdocs/supplier_proposal/class/supplier_proposal.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/supplier_proposal/class/supplier_proposal.class.php b/htdocs/supplier_proposal/class/supplier_proposal.class.php index 6259685ac37..769f879061c 100644 --- a/htdocs/supplier_proposal/class/supplier_proposal.class.php +++ b/htdocs/supplier_proposal/class/supplier_proposal.class.php @@ -99,12 +99,12 @@ 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) - + /** * @var integer|string Date of proposal */ public $date; - + /** * @var integer|string date_livraison */ From 9b0debfd088e688bd1523cd682b3397935b4793c Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sun, 10 Nov 2019 12:22:24 +0100 Subject: [PATCH 29/30] add some comment --- htdocs/website/class/website.class.php | 6 +++++- htdocs/website/class/websitepage.class.php | 9 ++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/htdocs/website/class/website.class.php b/htdocs/website/class/website.class.php index b8c412c40fb..a0b4d59d4e0 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..b41a2dfd19e 100644 --- a/htdocs/website/class/websitepage.class.php +++ b/htdocs/website/class/websitepage.class.php @@ -83,8 +83,15 @@ class WebsitePage extends CommonObject * @var int Status */ public $status; - + + /** + * @var integer|string date_creation + */ public $date_creation; + + /** + * @var integer|string date_modification + */ public $date_modification; From 278e3a7076b58fb7b7a838ae4a510a796ce240f8 Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Sun, 10 Nov 2019 11:23:37 +0000 Subject: [PATCH 30/30] Fixing style errors. --- htdocs/website/class/website.class.php | 2 +- htdocs/website/class/websitepage.class.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/website/class/website.class.php b/htdocs/website/class/website.class.php index a0b4d59d4e0..9337c438d1e 100644 --- a/htdocs/website/class/website.class.php +++ b/htdocs/website/class/website.class.php @@ -79,7 +79,7 @@ class Website extends CommonObject * @var integer|string date_creation */ public $date_creation; - + /** * @var integer|string date_modification */ diff --git a/htdocs/website/class/websitepage.class.php b/htdocs/website/class/websitepage.class.php index b41a2dfd19e..b6371c14df7 100644 --- a/htdocs/website/class/websitepage.class.php +++ b/htdocs/website/class/websitepage.class.php @@ -83,12 +83,12 @@ class WebsitePage extends CommonObject * @var int Status */ public $status; - + /** * @var integer|string date_creation */ public $date_creation; - + /** * @var integer|string date_modification */