* Copyright (C) 2008-2012 Laurent Destailleur * Copyright (C) 2018-2024 Frédéric France * * 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 . * */ /** * \file htdocs/core/class/html.formbarcode.class.php * \brief Fichier de la class des functions predefinie de composants html */ /** * Class to manage barcode HTML */ class FormBarCode { /** * @var DoliDB Database handler. */ public $db; /** * @var string Error code (or message) */ public $error = ''; /** * Constructor * * @param DoliDB $db Database handler */ public function __construct($db) { $this->db = $db; } /** * Return HTML select with list of bar code generators * * @param int $selected Id code pre-selected * @param array $barcodelist Array of barcodes generators * @param int $code_id Id du code barre * @param string $idForm Id of html form, ex id="idform" * @return string HTML select string */ public function setBarcodeEncoder($selected, $barcodelist, $code_id, $idForm = 'formbarcode') { global $conf, $langs; $disable = ''; if (!empty($conf->use_javascript_ajax)) { print "\n".''."\n"; //onChange="barcode_coder_save(\''.$idForm.'\') } // We check if barcode is already selected by default if (((isModEnabled("product") || isModEnabled("service")) && getDolGlobalString('PRODUIT_DEFAULT_BARCODE_TYPE') == $code_id) || (isModEnabled("societe") && getDolGlobalString('GENBARCODE_BARCODETYPE_THIRDPARTY') == $code_id)) { $disable = 'disabled'; } if (!empty($conf->use_javascript_ajax)) { $select_encoder = '
'; $select_encoder .= ''; $select_encoder .= ''; $select_encoder .= ''; } $selectname = (!empty($conf->use_javascript_ajax) ? 'coder' : 'coder'.$code_id); $select_encoder .= ''; if (!empty($conf->use_javascript_ajax)) { $select_encoder .= '
'; } return $select_encoder; } // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps /** * Print form to select type of barcode * * @param int $selected Id code pre-selected * @param string $htmlname Name of HTML select field * @param int $useempty Affiche valeur vide dans liste * @return void * @deprecated */ public function select_barcode_type($selected = 0, $htmlname = 'barcodetype_id', $useempty = 0) { // phpcs:enable print $this->selectBarcodeType($selected, $htmlname, $useempty); } /** * Return html form to select type of barcode * * @param int $selected Id code pre-selected * @param string $htmlname Name of HTML select field * @param int $useempty Display empty value in select * @return string */ public function selectBarcodeType($selected = 0, $htmlname = 'barcodetype_id', $useempty = 0) { global $langs, $conf; $out = ''; $sql = "SELECT rowid, code, libelle as label"; $sql .= " FROM ".$this->db->prefix()."c_barcode_type"; $sql .= " WHERE coder <> '0'"; $sql .= " AND entity = ".$conf->entity; $sql .= " ORDER BY code"; $result = $this->db->query($sql); if ($result) { $num = $this->db->num_rows($result); $i = 0; if ($useempty && $num > 0) { $out .= ''; $out .= ''; } while ($i < $num) { $obj = $this->db->fetch_object($result); if ($selected == $obj->rowid) { $out .= ''; $i++; } $out .= ""; $out .= ajax_combobox("select_".$htmlname); } else { dol_print_error($this->db); } return $out; } // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps /** * Show form to select type of barcode * * @param string $page Page * @param int $selected Id condition preselected * @param string $htmlname Nom du formulaire select * @return void * @deprecated */ public function form_barcode_type($page, $selected = 0, $htmlname = 'barcodetype_id') { // phpcs:enable print $this->formBarcodeType($page, $selected, $htmlname); } /** * Return html form to select type of barcode * * @param string $page Page * @param int $selected Id condition preselected * @param string $htmlname Nom du formulaire select * @return string */ public function formBarcodeType($page, $selected = 0, $htmlname = 'barcodetype_id') { global $langs, $conf; $out = ''; if ($htmlname != "none") { $out .= '
'; $out .= ''; $out .= ''; $out .= ''; $out .= ''; $out .= '
'; $out .= $this->selectBarcodeType($selected, $htmlname, 1); $out .= ''; $out .= '
'; } return $out; } }