From e9e2e66ffc0d1220df1cf595b732e58b6fbecc2e Mon Sep 17 00:00:00 2001 From: Regis Houssin <regis@dolibarr.fr> Date: Tue, 3 Nov 2009 14:46:57 +0000 Subject: [PATCH] Fix: add Gabon --- htdocs/compta/bank/account.class.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/htdocs/compta/bank/account.class.php b/htdocs/compta/bank/account.class.php index 1a12d8450f4..f86444d1a85 100644 --- a/htdocs/compta/bank/account.class.php +++ b/htdocs/compta/bank/account.class.php @@ -848,8 +848,9 @@ class Account extends CommonObject { $country_code=$this->getCountryCode(); - if ($country_code == 'FR') return true; - if ($country_code == 'ES') return true; + if ($country_code == 'FR') return true; // France + if ($country_code == 'ES') return true; // Spain + if ($country_code == 'GA') return true; // Gabon return false; } -- GitLab