From 7580a4c1ffa1f844514f0155aa2a7c9da5e13bcf Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sat, 21 May 2022 22:35:49 +0200 Subject: [PATCH 1/7] fix : The property id_prelevement does not exist on Paiement --- htdocs/compta/paiement/class/paiement.class.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/htdocs/compta/paiement/class/paiement.class.php b/htdocs/compta/paiement/class/paiement.class.php index ae4064462e2..2ac4f85ed10 100644 --- a/htdocs/compta/paiement/class/paiement.class.php +++ b/htdocs/compta/paiement/class/paiement.class.php @@ -109,6 +109,11 @@ class Paiement extends CommonObject */ public $ext_payment_id; + /** + * @var string Id of prelevement + */ + public $id_prelevement; + /** * @var string Name of external payment mode */ From 526c6fcc0e0449cae955db08d2a7b75d811338e7 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sat, 21 May 2022 22:41:27 +0200 Subject: [PATCH 2/7] fix : The property num_prelevement does not exist on Paiement --- htdocs/compta/paiement/class/paiement.class.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/htdocs/compta/paiement/class/paiement.class.php b/htdocs/compta/paiement/class/paiement.class.php index 2ac4f85ed10..655ee13471b 100644 --- a/htdocs/compta/paiement/class/paiement.class.php +++ b/htdocs/compta/paiement/class/paiement.class.php @@ -114,6 +114,11 @@ class Paiement extends CommonObject */ public $id_prelevement; + /** + * @var string num_prelevement + */ + public $num_prelevement; + /** * @var string Name of external payment mode */ From 3b98685557e54d5d09f339b0135f21c175750cd4 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sat, 21 May 2022 22:52:27 +0200 Subject: [PATCH 3/7] fix : The property siren does not seem to exist on Societe --- htdocs/societe/class/societe.class.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/htdocs/societe/class/societe.class.php b/htdocs/societe/class/societe.class.php index 686c301af79..0078c86245f 100644 --- a/htdocs/societe/class/societe.class.php +++ b/htdocs/societe/class/societe.class.php @@ -408,6 +408,14 @@ class Societe extends CommonObject */ public $idprof1; + /** + * @var string Professional ID 1 + * @deprecated + * @see $idprof1 + */ + public $siren; + + /** * Professional ID 2 (Ex: Siret in France) * @var string From 7ab573b62cbfcd1f7add1cc8db204dfd4d4f9473 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sat, 21 May 2022 23:02:15 +0200 Subject: [PATCH 4/7] fix : The property siret does not seem to exist on Societe --- htdocs/societe/class/societe.class.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/htdocs/societe/class/societe.class.php b/htdocs/societe/class/societe.class.php index 0078c86245f..3bb08835554 100644 --- a/htdocs/societe/class/societe.class.php +++ b/htdocs/societe/class/societe.class.php @@ -422,6 +422,13 @@ class Societe extends CommonObject */ public $idprof2; + /** + * @var string Professional ID 2 + * @deprecated + * @see $idprof2 + */ + public $siret; + /** * Professional ID 3 (Ex: Ape in France) * @var string From ee6bf546ee83357f22340f13e9b32f45e6020e04 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sat, 21 May 2022 23:04:25 +0200 Subject: [PATCH 5/7] fix : The property ape does not seem to exist on Societe --- htdocs/societe/class/societe.class.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/htdocs/societe/class/societe.class.php b/htdocs/societe/class/societe.class.php index 3bb08835554..e546986ba98 100644 --- a/htdocs/societe/class/societe.class.php +++ b/htdocs/societe/class/societe.class.php @@ -435,6 +435,13 @@ class Societe extends CommonObject */ public $idprof3; + /** + * @var string Professional ID 3 + * @deprecated + * @see $idprof3 + */ + public $ape; + /** * Professional ID 4 (Ex: RCS in France) * @var string From 10c5ccb5bf52d1a7810d3ff3e19683a3abf6cf77 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sat, 21 May 2022 23:19:52 +0200 Subject: [PATCH 6/7] fix : The property id_prelevement does not seem to exist on PaiementFourn --- htdocs/fourn/class/paiementfourn.class.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/htdocs/fourn/class/paiementfourn.class.php b/htdocs/fourn/class/paiementfourn.class.php index bf3d7052a86..43c5b2e0f75 100644 --- a/htdocs/fourn/class/paiementfourn.class.php +++ b/htdocs/fourn/class/paiementfourn.class.php @@ -67,6 +67,10 @@ class PaiementFourn extends Paiement */ public $type_code; + /** + * @var string Id of prelevement + */ + public $id_prelevement; /** From dcb61e05f4bb63f52b61fc7210cb817525bd140f Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sat, 21 May 2022 23:25:59 +0200 Subject: [PATCH 7/7] fix : The property num_prelevement does not seem to exist on PaiementFourn --- htdocs/fourn/class/paiementfourn.class.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/htdocs/fourn/class/paiementfourn.class.php b/htdocs/fourn/class/paiementfourn.class.php index 43c5b2e0f75..8fc181e18e0 100644 --- a/htdocs/fourn/class/paiementfourn.class.php +++ b/htdocs/fourn/class/paiementfourn.class.php @@ -72,6 +72,11 @@ class PaiementFourn extends Paiement */ public $id_prelevement; + /** + * @var string num_prelevement + */ + public $num_prelevement; + /** * Constructor