From c4a064d10410b4b20624bbcdcd3ac19141d891bd Mon Sep 17 00:00:00 2001 From: Grand Philippe Date: Sun, 28 Apr 2013 19:35:10 +0200 Subject: [PATCH] fix: Undefined property: mod_codeclient_monkey::$prefixIsRequired --- htdocs/core/modules/societe/mod_codeclient_monkey.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/htdocs/core/modules/societe/mod_codeclient_monkey.php b/htdocs/core/modules/societe/mod_codeclient_monkey.php index 2fa4c667b9d..1e55a6256f3 100644 --- a/htdocs/core/modules/societe/mod_codeclient_monkey.php +++ b/htdocs/core/modules/societe/mod_codeclient_monkey.php @@ -43,6 +43,7 @@ class mod_codeclient_monkey extends ModeleThirdPartyCode var $prefixcustomer='CU'; var $prefixsupplier='SU'; + var $prefixIsRequired; // Le champ prefix du tiers doit etre renseigne quand on utilise {pre} /** @@ -57,6 +58,7 @@ class mod_codeclient_monkey extends ModeleThirdPartyCode $this->code_modifiable_invalide = 1; $this->code_modifiable_null = 1; $this->code_auto = 1; + $this->prefixIsRequired = 0; }