dolibarr 19.0.3
extrafields_view.tpl.php
1<?php
2/* Copyright (C) 2014 Maxime Kohlhaas <support@atm-consulting.fr>
3 * Copyright (C) 2014 Juanjo Menent <jmenent@2byte.es>
4 * Copyright (C) 2021 Frédéric France <frederic.france@netlogic.fr>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 *
19 * Show extrafields. It also show fields from hook formObjectOptions. Need to have following variables defined:
20 * $object (invoice, order, ...)
21 * $action
22 * $conf
23 * $langs
24 *
25 * $parameters
26 * $cols
27 */
28
29// Protection to avoid direct call of template
30if (empty($object) || !is_object($object)) {
31 print "Error, template page can't be called as URL";
32 exit;
33}
34
35if (!is_object($form)) {
36 $form = new Form($db);
37}
38
39
40?>
41<!-- BEGIN PHP TEMPLATE extrafields_view.tpl.php -->
42<?php
43if (!isset($parameters) || !is_array($parameters)) {
44 $parameters = array();
45}
46if (!empty($cols)) {
47 $parameters['colspan'] = ' colspan="'.$cols.'"';
48}
49if (!empty($cols)) {
50 $parameters['cols'] = $cols;
51}
52if (!empty($object->fk_soc)) {
53 $parameters['socid'] = $object->fk_soc;
54}
55$reshook = $hookmanager->executeHooks('formObjectOptions', $parameters, $object, $action);
56print $hookmanager->resPrint;
57if ($reshook < 0) {
58 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
59}
60
61
62//var_dump($extrafields->attributes[$object->table_element]);
63if (empty($reshook) && !empty($object->table_element) && isset($extrafields->attributes[$object->table_element]['label']) && is_array($extrafields->attributes[$object->table_element]['label'])) {
64 $lastseparatorkeyfound = '';
65 $extrafields_collapse_num = '';
66 $extrafields_collapse_num_old = '';
67 $i = 0;
68
69 // Loop on each extrafield
70 foreach ($extrafields->attributes[$object->table_element]['label'] as $tmpkeyextra => $tmplabelextra) {
71 $i++;
72
73 // Discard if extrafield is a hidden field on form
74
75 $enabled = 1;
76 if ($enabled && isset($extrafields->attributes[$object->table_element]['enabled'][$tmpkeyextra])) {
77 $enabled = dol_eval($extrafields->attributes[$object->table_element]['enabled'][$tmpkeyextra], 1, 1, '2');
78 }
79 if ($enabled && isset($extrafields->attributes[$object->table_element]['list'][$tmpkeyextra])) {
80 $enabled = dol_eval($extrafields->attributes[$object->table_element]['list'][$tmpkeyextra], 1, 1, '2');
81 }
82
83 $perms = 1;
84 if ($perms && isset($extrafields->attributes[$object->table_element]['perms'][$tmpkeyextra])) {
85 $perms = dol_eval($extrafields->attributes[$object->table_element]['perms'][$tmpkeyextra], 1, 1, '2');
86 }
87 //print $tmpkeyextra.'-'.$enabled.'-'.$perms.'<br>'."\n";
88
89 if (empty($enabled)) {
90 continue; // 0 = Never visible field
91 }
92 if (abs($enabled) != 1 && abs($enabled) != 3 && abs($enabled) != 5 && abs($enabled) != 4) {
93 continue; // <> -1 and <> 1 and <> 3 = not visible on forms, only on list <> 4 = not visible at the creation
94 }
95 if (empty($perms)) {
96 continue; // 0 = Not visible
97 }
98
99 // Load language if required
100 if (!empty($extrafields->attributes[$object->table_element]['langfile'][$tmpkeyextra])) {
101 $langs->load($extrafields->attributes[$object->table_element]['langfile'][$tmpkeyextra]);
102 }
103 if ($action == 'edit_extras') {
104 $value = (GETPOSTISSET("options_".$tmpkeyextra) ? GETPOST("options_".$tmpkeyextra) : (isset($object->array_options["options_".$tmpkeyextra]) ? $object->array_options["options_".$tmpkeyextra] : ''));
105 } else {
106 $value = (isset($object->array_options["options_".$tmpkeyextra]) ? $object->array_options["options_".$tmpkeyextra] : '');
107 //var_dump($tmpkeyextra.' - '.$value);
108 }
109
110 // Print line tr of extra field
111 if ($extrafields->attributes[$object->table_element]['type'][$tmpkeyextra] == 'separate') {
112 $extrafields_collapse_num = $tmpkeyextra;
113
114 print $extrafields->showSeparator($tmpkeyextra, $object);
115
116 $lastseparatorkeyfound = $tmpkeyextra;
117 } else {
118 $collapse_group = $extrafields_collapse_num.(!empty($object->id) ? '_'.$object->id : '');
119
120 print '<tr class="trextrafields_collapse'.$collapse_group;
121 /*if ($extrafields_collapse_num && $extrafields_collapse_num_old && $extrafields_collapse_num != $extrafields_collapse_num_old) {
122 print ' trextrafields_collapse_new';
123 }*/
124 if ($extrafields_collapse_num && $i == count($extrafields->attributes[$object->table_element]['label'])) {
125 print ' trextrafields_collapse_last';
126 }
127 print '"';
128 if (isset($extrafields->expand_display) && empty($extrafields->expand_display[$collapse_group])) {
129 print ' style="display: none;"';
130 }
131 print '>';
132 $extrafields_collapse_num_old = $extrafields_collapse_num;
133 print '<td class="titlefield">';
134 print '<table class="nobordernopadding centpercent">';
135 print '<tr>';
136
137 print '<td class="';
138 if ((!empty($action) && ($action == 'create' || $action == 'edit')) && !empty($extrafields->attributes[$object->table_element]['required'][$tmpkeyextra])) {
139 print ' fieldrequired';
140 }
141 print '">';
142 if (!empty($extrafields->attributes[$object->table_element]['help'][$tmpkeyextra])) {
143 // You can also use 'TranslationString:keyfortooltiponlick' for a tooltip on click.
144 $tmptooltip = explode(':', $extrafields->attributes[$object->table_element]['help'][$tmpkeyextra]);
145 print $form->textwithpicto($langs->trans($tmplabelextra), $langs->trans($tmptooltip[0]), 1, 'help', '', 0, 3, (empty($tmptooltip[1]) ? '' : 'extra_'.$tmpkeyextra.'_'.$tmptooltip[1]));
146 } else {
147 print $langs->trans($tmplabelextra);
148 }
149 print '</td>';
150
151 //TODO Improve element and rights detection
152 //var_dump($user->rights);
153 $permok = false;
154 $keyforperm = $object->element;
155
156 if ($object->element == 'fichinter') {
157 $keyforperm = 'ficheinter';
158 }
159 if ($object->element == 'product') {
160 $keyforperm = 'produit';
161 }
162 if (isset($user->rights->$keyforperm)) {
163 $permok = $user->hasRight($keyforperm, 'creer') || $user->hasRight($keyforperm, 'create') || $user->hasRight($keyforperm, 'write');
164 }
165 if ($object->element == 'order_supplier') {
166 if (!getDolGlobalString('MAIN_USE_NEW_SUPPLIERMOD')) {
167 $permok = $user->hasRight('fournisseur', 'commande', 'creer');
168 } else {
169 $permok = $user->hasRight('supplier_order', 'creer');
170 }
171 }
172 if ($object->element == 'invoice_supplier') {
173 if (!getDolGlobalString('MAIN_USE_NEW_SUPPLIERMOD')) {
174 $permok = $user->hasRight('fournisseur', 'facture', 'creer');
175 } else {
176 $permok = $user->hasRight('supplier_invoice', 'creer');
177 }
178 }
179 if ($object->element == 'shipping') {
180 $permok = $user->hasRight('expedition', 'creer');
181 }
182 if ($object->element == 'delivery') {
183 $permok = $user->hasRight('expedition', 'delivery', 'creer');
184 }
185 if ($object->element == 'productlot') {
186 $permok = $user->hasRight('stock', 'creer');
187 }
188 if ($object->element == 'facturerec') {
189 $permok = $user->hasRight('facture', 'creer');
190 }
191 if ($object->element == 'mo') {
192 $permok = $user->hasRight('mrp', 'write');
193 }
194 if ($object->element == 'contact') {
195 $permok = $user->hasRight('societe', 'contact', 'creer');
196 }
197 if ($object->element == 'salary') {
198 $permok = $user->hasRight('salaries', 'read');
199 }
200
201 $isdraft = ((isset($object->statut) && $object->statut == 0) || (isset($object->status) && $object->status == 0));
202 if (($isdraft || !empty($extrafields->attributes[$object->table_element]['alwayseditable'][$tmpkeyextra]))
203 && $permok && $enabled != 5 && ($action != 'edit_extras' || GETPOST('attribute') != $tmpkeyextra)
204 && empty($extrafields->attributes[$object->table_element]['computed'][$tmpkeyextra])) {
205 $fieldid = empty($forcefieldid) ? 'id' : $forcefieldid;
206 $valueid = empty($forceobjectid) ? $object->id : $forceobjectid;
207 if ($object->table_element == 'societe') {
208 $fieldid = 'socid';
209 }
210
211 print '<td class="right"><a class="reposition editfielda" href="'.$_SERVER['PHP_SELF'].'?'.$fieldid.'='.$valueid.'&action=edit_extras&token='.newToken().'&attribute='.$tmpkeyextra.'&ignorecollapsesetup=1">'.img_edit().'</a></td>';
212 }
213 print '</tr></table>';
214 print '</td>';
215
216 $html_id = !empty($object->id) ? $object->element.'_extras_'.$tmpkeyextra.'_'.$object->id : '';
217
218 print '<td id="' . $html_id . '" class="valuefield ' . $object->element . '_extras_' . $tmpkeyextra . ' wordbreakimp"' . (!empty($cols) ? ' colspan="' . $cols . '"' : '') . '>';
219
220 // Convert date into timestamp format
221 if (in_array($extrafields->attributes[$object->table_element]['type'][$tmpkeyextra], array('date'))) {
222 $datenotinstring = empty($object->array_options['options_'.$tmpkeyextra]) ? '' : $object->array_options['options_'.$tmpkeyextra];
223 // print 'X'.$object->array_options['options_' . $tmpkeyextra].'-'.$datenotinstring.'x';
224 if (!empty($object->array_options['options_'.$tmpkeyextra]) && !is_numeric($object->array_options['options_'.$tmpkeyextra])) { // For backward compatibility
225 $datenotinstring = $db->jdate($datenotinstring);
226 }
227 //print 'x'.$object->array_options['options_' . $tmpkeyextra].'-'.$datenotinstring.' - '.dol_print_date($datenotinstring, 'dayhour');
228 $value = GETPOSTISSET("options_".$tmpkeyextra) ? dol_mktime(12, 0, 0, GETPOST("options_".$tmpkeyextra."month", 'int'), GETPOST("options_".$tmpkeyextra."day", 'int'), GETPOST("options_".$tmpkeyextra."year", 'int')) : $datenotinstring;
229 }
230 if (in_array($extrafields->attributes[$object->table_element]['type'][$tmpkeyextra], array('datetime'))) {
231 $datenotinstring = empty($object->array_options['options_'.$tmpkeyextra]) ? '' : $object->array_options['options_'.$tmpkeyextra];
232 // print 'X'.$object->array_options['options_' . $tmpkeyextra].'-'.$datenotinstring.'x';
233 if (!empty($object->array_options['options_'.$tmpkeyextra]) && !is_numeric($object->array_options['options_'.$tmpkeyextra])) { // For backward compatibility
234 $datenotinstring = $db->jdate($datenotinstring);
235 }
236 //print 'x'.$object->array_options['options_' . $tmpkeyextra].'-'.$datenotinstring.' - '.dol_print_date($datenotinstring, 'dayhour');
237 $value = GETPOSTISSET("options_".$tmpkeyextra) ? dol_mktime(GETPOST("options_".$tmpkeyextra."hour", 'int'), GETPOST("options_".$tmpkeyextra."min", 'int'), GETPOST("options_".$tmpkeyextra."sec", 'int'), GETPOST("options_".$tmpkeyextra."month", 'int'), GETPOST("options_".$tmpkeyextra."day", 'int'), GETPOST("options_".$tmpkeyextra."year", 'int'), 'tzuserrel') : $datenotinstring;
238 }
239
240 //TODO Improve element and rights detection
241 if ($action == 'edit_extras' && $permok && GETPOST('attribute', 'restricthtml') == $tmpkeyextra) {
242 $fieldid = 'id';
243 if ($object->table_element == 'societe') {
244 $fieldid = 'socid';
245 }
246 print '<form enctype="multipart/form-data" action="'.$_SERVER["PHP_SELF"] . '?' . $fieldid . '=' . $object->id . '" method="post" name="formextra">';
247 print '<input type="hidden" name="action" value="update_extras">';
248 print '<input type="hidden" name="attribute" value="'.$tmpkeyextra.'">';
249 print '<input type="hidden" name="token" value="'.newToken().'">';
250 print '<input type="hidden" name="'.$fieldid.'" value="'.$object->id.'">';
251 print $extrafields->showInputField($tmpkeyextra, $value, '', '', '', 0, $object->id, $object->table_element);
252
253 print '<input type="submit" class="button" value="'.dol_escape_htmltag($langs->trans('Modify')).'">';
254
255 print '</form>';
256 } else {
257 //var_dump($tmpkeyextra.'-'.$value.'-'.$object->table_element);
258 print $extrafields->showOutputField($tmpkeyextra, $value, '', $object->table_element);
259 }
260
261 print '</td>';
262 print '</tr>'."\n";
263 }
264 }
265
266 // Add code to manage list depending on others
267 // TODO Test/enhance this with a more generic solution
268 if (!empty($conf->use_javascript_ajax)) {
269 print "\n";
270 print '
271 <script>
272 jQuery(document).ready(function() {
273 function showOptions(child_list, parent_list)
274 {
275 var val = $("select[name="+parent_list+"]").val();
276 var parentVal = parent_list + ":" + val;
277 if(val > 0) {
278 $("select[name=\""+child_list+"\"] option[parent]").hide();
279 $("select[name=\""+child_list+"\"] option[parent=\""+parentVal+"\"]").show();
280 } else {
281 $("select[name=\""+child_list+"\"] option").show();
282 }
283 }
284 function setListDependencies() {
285 jQuery("select option[parent]").parent().each(function() {
286 var child_list = $(this).attr("name");
287 var parent = $(this).find("option[parent]:first").attr("parent");
288 var infos = parent.split(":");
289 var parent_list = infos[0];
290 showOptions(child_list, parent_list);
291
292 /* Activate the handler to call showOptions on each future change */
293 $("select[name=\""+parent_list+"\"]").change(function() {
294 showOptions(child_list, parent_list);
295 });
296 });
297 }
298 setListDependencies();
299 });
300 </script>'."\n";
301 }
302}
303?>
304<!-- END PHP TEMPLATE extrafields_view.tpl.php -->
Class to manage generation of HTML components Only common components must be here.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed informations (by default a local PHP server timestamp) Re...
dol_eval($s, $returnvalue=0, $hideerrors=1, $onlysimplestring='1')
Replace eval function to add more security.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
img_edit($titlealt='default', $float=0, $other='')
Show logo editer/modifier fiche.