From 8ffde4c9e120e0954347909907d91b21924d7654 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Tue, 6 Feb 2007 14:55:10 +0000 Subject: [PATCH] =?UTF-8?q?D=E9but=20ajout=20d'un=20mod=E8le=20de=20num=E9?= =?UTF-8?q?rotation=20param=E9trable?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../includes/modules/facture/pluton/pluton.modules.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/htdocs/includes/modules/facture/pluton/pluton.modules.php b/htdocs/includes/modules/facture/pluton/pluton.modules.php index b7eb38d6d83..f8017deb110 100644 --- a/htdocs/includes/modules/facture/pluton/pluton.modules.php +++ b/htdocs/includes/modules/facture/pluton/pluton.modules.php @@ -90,6 +90,16 @@ function info() $texte.= ' ('.$langs->trans('IsNotDefined').')
'; } + $texte.= 'Un offset est appliqué sur le compteur'; + if ($conf->global->FACTURE_NUM_DELTA) + { + $texte.= ' ('.$langs->trans('DefinedAndHasThisValue').' : '.$conf->global->FACTURE_NUM_DELTA.')
'; + } + else + { + $texte.= ' ('.$langs->trans('IsNotDefined').')
'; + } + return $texte; }