dolibarr 21.0.0-alpha
html.formbarcode.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2007-2012 Regis Houssin <regis.houssin@inodbox.com>
3 * Copyright (C) 2008-2012 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2018-2024 Frédéric France <frederic.france@free.fr>
5 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 *
20 */
21
32{
36 public $db;
37
41 public $error = '';
42
43
49 public function __construct($db)
50 {
51 $this->db = $db;
52 }
53
54
64 public function setBarcodeEncoder($selected, $barcodelist, $code_id, $idForm = 'formbarcode')
65 {
66 global $conf, $langs;
67
68 $disable = '';
69
70 if (!empty($conf->use_javascript_ajax)) {
71 print "\n".'<script nonce="'.getNonce().'" type="text/javascript">';
72 print 'jQuery(document).ready(function () {
73 jQuery("#select'.$idForm.'").change(function() {
74 var formName = document.getElementById("form'.$idForm.'");
75 formName.action.value="setcoder";
76 formName.submit();
77 });
78 });';
79 print '</script>'."\n";
80 //onChange="barcode_coder_save(\''.$idForm.'\')
81 }
82
83 // We check if barcode is already selected by default
84 if (((isModEnabled("product") || isModEnabled("service")) && getDolGlobalString('PRODUIT_DEFAULT_BARCODE_TYPE') == $code_id) ||
85 (isModEnabled("societe") && getDolGlobalString('GENBARCODE_BARCODETYPE_THIRDPARTY') == $code_id)) {
86 $disable = 'disabled';
87 }
88
89 if (!empty($conf->use_javascript_ajax)) {
90 $select_encoder = '<form action="'.DOL_URL_ROOT.'/admin/barcode.php" method="POST" id="form'.$idForm.'">';
91 $select_encoder .= '<input type="hidden" name="token" value="'.newToken().'">';
92 $select_encoder .= '<input type="hidden" name="action" value="update">';
93 $select_encoder .= '<input type="hidden" name="code_id" value="'.$code_id.'">';
94 }
95
96 $selectname = (!empty($conf->use_javascript_ajax) ? 'coder' : 'coder'.$code_id);
97 $select_encoder .= '<select id="select'.$idForm.'" class="flat" name="'.$selectname.'">';
98 $select_encoder .= '<option value="0"'.($selected == 0 ? ' selected' : '').' '.$disable.'>'.$langs->trans('Disable').'</option>';
99 $select_encoder .= '<option value="-1" disabled>--------------------</option>';
100 foreach ($barcodelist as $key => $value) {
101 $select_encoder .= '<option value="'.$key.'"'.($selected == $key ? ' selected' : '').'>'.$value.'</option>';
102 }
103 $select_encoder .= '</select>';
104
105 if (!empty($conf->use_javascript_ajax)) {
106 $select_encoder .= '</form>';
107 }
108
109 return $select_encoder;
110 }
111
112 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
122 public function select_barcode_type($selected = 0, $htmlname = 'barcodetype_id', $useempty = 0)
123 {
124 // phpcs:enable
125 print $this->selectBarcodeType($selected, $htmlname, $useempty);
126 }
127
136 public function selectBarcodeType($selected = 0, $htmlname = 'barcodetype_id', $useempty = 0)
137 {
138 global $langs, $conf;
139
140 $out = '';
141
142 $sql = "SELECT rowid, code, libelle as label";
143 $sql .= " FROM ".$this->db->prefix()."c_barcode_type";
144 $sql .= " WHERE coder <> '0'";
145 $sql .= " AND entity = ".$conf->entity;
146 $sql .= " ORDER BY code";
147
148 $result = $this->db->query($sql);
149 if ($result) {
150 $num = $this->db->num_rows($result);
151 $i = 0;
152
153 if ($useempty && $num > 0) {
154 $out .= '<select class="flat minwidth75imp" name="'.$htmlname.'" id="select_'.$htmlname.'">';
155 $out .= '<option value="0">&nbsp;</option>';
156 } else {
157 $langs->load("errors");
158 $out .= '<select disabled class="flat minwidth75imp" name="'.$htmlname.'" id="select_'.$htmlname.'">';
159 $out .= '<option value="0" selected>'.$langs->trans('ErrorNoActivatedBarcode').'</option>';
160 }
161
162 while ($i < $num) {
163 $obj = $this->db->fetch_object($result);
164 if ($selected == $obj->rowid) {
165 $out .= '<option value="'.$obj->rowid.'" selected>';
166 } else {
167 $out .= '<option value="'.$obj->rowid.'">';
168 }
169 $out .= $obj->label;
170 $out .= '</option>';
171 $i++;
172 }
173 $out .= "</select>";
174 $out .= ajax_combobox("select_".$htmlname);
175 } else {
176 dol_print_error($this->db);
177 }
178 return $out;
179 }
180
181 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
191 public function form_barcode_type($page, $selected = 0, $htmlname = 'barcodetype_id')
192 {
193 // phpcs:enable
194 print $this->formBarcodeType($page, $selected, $htmlname);
195 }
196
205 public function formBarcodeType($page, $selected = 0, $htmlname = 'barcodetype_id')
206 {
207 global $langs, $conf;
208 $out = '';
209 if ($htmlname != "none") {
210 $out .= '<form method="post" action="'.$page.'">';
211 $out .= '<input type="hidden" name="token" value="'.newToken().'">';
212 $out .= '<input type="hidden" name="action" value="set'.$htmlname.'">';
213 $out .= '<table class="nobordernopadding">';
214 $out .= '<tr><td>';
215 $out .= $this->selectBarcodeType($selected, $htmlname, 1);
216 $out .= '</td>';
217 $out .= '<td class="left"><input type="submit" class="button smallpaddingimp" value="'.$langs->trans("Modify").'">';
218 $out .= '</td></tr></table></form>';
219 }
220 return $out;
221 }
222}
ajax_combobox($htmlname, $events=array(), $minLengthToAutocomplete=0, $forcefocus=0, $widthTypeOfAutocomplete='resolve', $idforemptyvalue='-1', $morecss='')
Convert a html select field into an ajax combobox.
Definition ajax.lib.php:457
Class to manage barcode HTML.
__construct($db)
Constructor.
setBarcodeEncoder($selected, $barcodelist, $code_id, $idForm='formbarcode')
Return HTML select with list of bar code generators.
selectBarcodeType($selected=0, $htmlname='barcodetype_id', $useempty=0)
Return html form to select type of barcode.
formBarcodeType($page, $selected=0, $htmlname='barcodetype_id')
Return html form to select type of barcode.
select_barcode_type($selected=0, $htmlname='barcodetype_id', $useempty=0)
Print form to select type of barcode.
form_barcode_type($page, $selected=0, $htmlname='barcodetype_id')
Show form to select type of barcode.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getNonce()
Return a random string to be used as a nonce value for js.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.