From 61d9e48821c9d9f3a6802c5a3df8e3f964e82435 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Fri, 20 May 2022 15:48:25 +0200 Subject: [PATCH 1/4] fix : The property other does not seem to exist on AdherentType. --- htdocs/adherents/class/adherent_type.class.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/htdocs/adherents/class/adherent_type.class.php b/htdocs/adherents/class/adherent_type.class.php index cafc9338ae8..a438d6fb931 100644 --- a/htdocs/adherents/class/adherent_type.class.php +++ b/htdocs/adherents/class/adherent_type.class.php @@ -120,6 +120,9 @@ class AdherentType extends CommonObject /** @var array Array of members */ public $members = array(); + + /** @var string */ + public $other; public $multilangs = array(); From 58a2e9c38971d90691ed49d503d47fa7090b798a Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Fri, 20 May 2022 16:55:50 +0200 Subject: [PATCH 2/4] fix : The property supplier_invoice_id does not seem to exist on Asset --- htdocs/asset/class/asset.class.php | 1 + 1 file changed, 1 insertion(+) diff --git a/htdocs/asset/class/asset.class.php b/htdocs/asset/class/asset.class.php index 19c15839231..410af398bc7 100644 --- a/htdocs/asset/class/asset.class.php +++ b/htdocs/asset/class/asset.class.php @@ -144,6 +144,7 @@ class Asset extends CommonObject public $fk_disposal_type; public $disposal_depreciated; public $disposal_subject_to_vat; + public $supplier_invoice_id; public $note_public; public $note_private; public $date_creation; From 80e0e5b9874bf991d917e256a018f775c65aac32 Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Fri, 20 May 2022 15:03:36 +0000 Subject: [PATCH 3/4] Fixing style errors. --- htdocs/adherents/class/adherent_type.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/adherents/class/adherent_type.class.php b/htdocs/adherents/class/adherent_type.class.php index a438d6fb931..336d5e56878 100644 --- a/htdocs/adherents/class/adherent_type.class.php +++ b/htdocs/adherents/class/adherent_type.class.php @@ -120,7 +120,7 @@ class AdherentType extends CommonObject /** @var array Array of members */ public $members = array(); - + /** @var string */ public $other; From 1cefe479e72cb09439b17ebe086c0651e5af619a Mon Sep 17 00:00:00 2001 From: Philippe Grand Date: Fri, 20 May 2022 17:20:41 +0200 Subject: [PATCH 4/4] Update adherent_type.class.php --- htdocs/adherents/class/adherent_type.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/adherents/class/adherent_type.class.php b/htdocs/adherents/class/adherent_type.class.php index 336d5e56878..8d04607fadf 100644 --- a/htdocs/adherents/class/adherent_type.class.php +++ b/htdocs/adherents/class/adherent_type.class.php @@ -121,7 +121,7 @@ class AdherentType extends CommonObject /** @var array Array of members */ public $members = array(); - /** @var string */ + /** @var string string other */ public $other; public $multilangs = array();