Fix: Version of company numbering module not shown.

This commit is contained in:
Laurent Destailleur 2008-07-26 16:42:34 +00:00
parent 592cd2e8fa
commit f48f2b2df8
2 changed files with 18 additions and 7 deletions

View File

@ -17,15 +17,13 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* or see http://www.gnu.org/
*
* $Id$
*/
/**
\file htdocs/includes/modules/societe/mod_codeclient_tigre.class.php
\ingroup societe
\brief Fichier de la classe des gestion tigre des codes clients
\version $Revision$
\version $Id$
*/
require_once(DOL_DOCUMENT_ROOT."/includes/modules/societe/modules_societe.class.php");

View File

@ -18,15 +18,13 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* or see http://www.gnu.org/
*
* $Id$
*/
/**
\file htdocs/includes/modules/societe/modules_societe.class.php
\ingroup societe
\brief Fichier contenant la classe mère de module de generation societes
\version $Revision$
\version $Id$
*/
@ -84,7 +82,21 @@ class ModeleThirdPartyCode
}
/**
/** \brief Renvoi version du module numerotation
* \return string Valeur
*/
function getVersion()
{
global $langs;
$langs->load("admin");
if ($this->version == 'development') return $langs->trans("VersionDevelopment");
if ($this->version == 'experimental') return $langs->trans("VersionExperimental");
if ($this->version == 'dolibarr') return DOL_VERSION;
return $langs->trans("NotAvailable");
}
/**
* \brief Renvoi la liste des modèles actifs
* \param db Handler de base
*/
@ -122,6 +134,7 @@ class ModeleThirdPartyCode
function getToolTip($langs,$soc,$type)
{
$s='';
$s.=$langs->trans("Version").': <b>'.$this->getVersion().'</b><br>';
if ($type == 0) $s.=$langs->trans("CustomerCodeDesc").'<br>';
if ($type == 1) $s.=$langs->trans("SupplierCodeDesc").'<br>';
if ($type != -1) $s.=$langs->trans("ValidityControledByModule").': <b>'.$this->getNom($langs).'</b><br>';