123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- <?php
- /* Copyright (C) 2014 Laurent Destailleur <eldy@users.sourceforge.net>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- * or see http://www.gnu.org/
- */
- /**
- * \file htdocs/core/modules/barcode/modules_barcode.class.php
- * \ingroup barcode
- * \brief File with parent classes for barcode document modules and numbering modules
- */
- require_once DOL_DOCUMENT_ROOT.'/core/lib/functions.lib.php';
- /**
- * Parent class for barcode document models
- */
- abstract class ModeleBarCode
- {
- var $error='';
- /**
- * Return if a model can be used or not
- *
- * @return boolean true if model can be used
- */
- function isEnabled()
- {
- return true;
- }
- }
- /**
- * Parent class for barcode numbering models
- */
- abstract class ModeleNumRefBarCode
- {
- var $error='';
- /** Return default description of numbering model
- *
- * @param Translate $langs Object langs
- * @return string Descriptive text
- */
- function info($langs)
- {
- $langs->load("bills");
- return $langs->trans("NoDescription");
- }
- /** Return model name
- *
- * @param Translate $langs Object langs
- * @return string Model name
- */
- function getNom($langs)
- {
- return empty($this->name)?$this->nom:$this->name;
- }
- /** Return a numbering example
- *
- * @param Translate $langs Object langs
- * @return string Example
- */
- function getExample($langs)
- {
- $langs->load("bills");
- return $langs->trans("NoExample");
- }
- /**
- * Return next value available
- *
- * @param Societe $objsoc Object thirdparty
- * @param int $type Type
- * @return string Value
- */
- function getNextValue($objsoc=null,$type=-1)
- {
- global $langs;
- return $langs->trans("Function_getNextValue_InModuleNotWorking");
- }
- /** Return version of module
- *
- * @return string Version
- */
- 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;
- if ($this->version) return $this->version;
- return $langs->trans("NotAvailable");
- }
- /**
- * Return description of module parameters
- *
- * @param Translate $langs Output language
- * @param Societe $soc Third party object
- * @param int $type -1=Nothing, 0=Product, 1=Service
- * @return string HTML translated description
- */
- function getToolTip($langs,$soc,$type)
- {
- global $conf;
- $langs->load("admin");
- $s='';
- $s.=$langs->trans("Name").': <b>'.$this->name.'</b><br>';
- $s.=$langs->trans("Version").': <b>'.$this->getVersion().'</b><br>';
- if ($type != -1) $s.=$langs->trans("ValidityControledByModule").': <b>'.$this->getNom($langs).'</b><br>';
- $s.='<br>';
- $s.='<u>'.$langs->trans("ThisIsModuleRules").':</u><br>';
- if ($type == 0)
- {
- $s.=$langs->trans("RequiredIfProduct").': ';
- if (! empty($conf->global->MAIN_BARCODE_CODE_ALWAYS_REQUIRED) && ! empty($this->code_null)) $s.='<strike>';
- $s.=yn(!$this->code_null,1,2);
- if (! empty($conf->global->MAIN_BARCODE_CODE_ALWAYS_REQUIRED) && ! empty($this->code_null)) $s.='</strike> '.yn(1,1,2).' ('.$langs->trans("ForcedToByAModule",$langs->transnoentities("yes")).')';
- $s.='<br>';
- }
- if ($type == 1)
- {
- $s.=$langs->trans("RequiredIfService").': ';
- if (! empty($conf->global->MAIN_BARCODE_CODE_ALWAYS_REQUIRED) && ! empty($this->code_null)) $s.='<strike>';
- $s.=yn(!$this->code_null,1,2);
- if (! empty($conf->global->MAIN_BARCODE_CODE_ALWAYS_REQUIRED) && ! empty($this->code_null)) $s.='</strike> '.yn(1,1,2).' ('.$langs->trans("ForcedToByAModule",$langs->transnoentities("yes")).')';
- $s.='<br>';
- }
- if ($type == -1)
- {
- $s.=$langs->trans("Required").': ';
- if (! empty($conf->global->MAIN_BARCODE_CODE_ALWAYS_REQUIRED) && ! empty($this->code_null)) $s.='<strike>';
- $s.=yn(!$this->code_null,1,2);
- if (! empty($conf->global->MAIN_BARCODE_CODE_ALWAYS_REQUIRED) && ! empty($this->code_null)) $s.='</strike> '.yn(1,1,2).' ('.$langs->trans("ForcedToByAModule",$langs->transnoentities("yes")).')';
- $s.='<br>';
- }
- /*$s.=$langs->trans("CanBeModifiedIfOk").': ';
- $s.=yn($this->code_modifiable,1,2);
- $s.='<br>';
- $s.=$langs->trans("CanBeModifiedIfKo").': '.yn($this->code_modifiable_invalide,1,2).'<br>';
- */
- $s.=$langs->trans("AutomaticCode").': '.yn($this->code_auto,1,2).'<br>';
- $s.='<br>';
- $nextval=$this->getNextValue($soc,0);
- if (empty($nextval)) $nextval=$langs->trans("Undefined");
- $s.=$langs->trans("NextValue").': <b>'.$nextval.'</b><br>';
- return $s;
- }
- }
|