dolibarr 21.0.0-beta
depreciation_options_edit.tpl.php
1<?php
2/* Copyright (C) 2021 Open-Dsi <support@open-dsi.fr>
3 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
4 * Copyright (C) 2024 José <jose.martinez@pichinov.com>
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 * Show extrafields. It also shows fields from hook formAssetAccountancyCode. Need to have the following variables defined:
21 * $object (asset, assetmodel, ...)
22 * $assetaccountancycodes
23 * $action
24 * $conf
25 * $langs
26 *
27 * $parameters
28 */
29
39'
40@phan-var-force Conf $conf
41@phan-var-force DoliDB $db
42@phan-var-force ?Form $form
43@phan-var-force HookManager $hookmanager
44@phan-var-force AssetDepreciationOptions $assetdepreciationoptions
45@phan-var-force Translate $langs
46@phan-var-force ?array<array{mode_key:string,field_key:string,value:string,target:string}> $enabled_field_info
47';
48
49// Protection to avoid direct call of template
50if (empty($object) || !is_object($object)) {
51 print "Error, template page can't be called as URL";
52 exit(1);
53}
54
55if (!is_object($form)) {
56 $form = new Form($db);
57}
58
59if (!isset($formadmin) || !is_object($formadmin)) {
60 require_once DOL_DOCUMENT_ROOT . '/core/class/html.formadmin.class.php';
61 $formadmin = new FormAdmin($db);
62}
63
64
65?>
66<!-- BEGIN PHP TEMPLATE depreciation_options_edit.tpl.php -->
67<?php
68
69if (!is_array($parameters)) {
70 $parameters = array();
71}
72$enabled_field_info = array();
73if (empty($parameters['enabled_field_info'])) {
74 $parameters['enabled_field_info'] = &$enabled_field_info;
75}
76if (empty($parameters['assetdepreciationoptions'])) {
77 $parameters['assetdepreciationoptions'] = &$assetdepreciationoptions;
78}
79$reshook = $hookmanager->executeHooks('formAssetDeprecationOptions', $parameters, $object, $action);
80print $hookmanager->resPrint;
81if ($reshook < 0) {
82 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
83}
84
85if (empty($reshook)) {
86 $class_type = get_class($object) == 'Asset' ? 0 : 1;
87 foreach ($assetdepreciationoptions->deprecation_options_fields as $mode_key => $mode_info) {
88 if (!empty($mode_info['enabled_field'])) {
89 $info = explode(':', $mode_info['enabled_field']);
90 $enabled_field_info[] = array(
91 'mode_key' => $info[0],
92 'field_key' => $info[1],
93 'value' => $info[2],
94 'target' => 'block_' . $mode_key,
95 );
96 }
97
98 $assetdepreciationoptions->setInfosForMode($mode_key, $class_type, true);
99 $prefix_html_name = $mode_key . '_';
100 $width = ($mode_key == "economic") ? "width50p pull-left" : "width50p";
101 print '<table class="border '. $width .'" id="block_' . $mode_key . '">' . "\n";
102 print '<tr><td class="info-box-title">'.$langs->trans($mode_info['label']).'</td></tr>';
103 if ($mode_key == "economic") {
104 print '<hr>';
105 }
106 $mode_info['fields'] = dol_sort_array($mode_info['fields'], 'position');
107 foreach ($mode_info['fields'] as $field_key => $field_info) {
108 // Discard if extrafield is a hidden field on form
109 if (abs($field_info['visible']) != 1 && abs($field_info['visible']) != 3 && abs($field_info['visible']) != 4) {
110 continue;
111 }
112 if (array_key_exists('enabled', $field_info) && isset($field_info['enabled']) && !verifCond($field_info['enabled'])) {
113 continue; // We don't want this field
114 }
115
116
117 $html_name = $prefix_html_name . $field_key;
118 if (!empty($field_info['enabled_field'])) {
119 $info = explode(':', $field_info['enabled_field']);
120 $enabled_field_info[] = array(
121 'mode_key' => $info[0],
122 'field_key' => $info[1],
123 'value' => $info[2],
124 'target' => 'field_' . $html_name,
125 );
126 }
127
128 $more_class = '';
129 if (!empty($field_info['required'])) {
130 $more_class .= 'width40p fieldrequired';
131 }
132 if (isset($val['type']) && preg_match('/^(text|html)/', $val['type'])) {
133 $more_class .= ' tdtop';
134 }
135
136 print '<tr class="field_' . $html_name . '" id="field_' . $html_name . '"><td';
137 print ' class="' . $more_class . '">';
138 if (!empty($field_info['help'])) {
139 print $form->textwithpicto($langs->trans($field_info['label']), $langs->trans($field_info['help']));
140 } else {
141 print $langs->trans($field_info['label']);
142 }
143 print '</td>';
144 print '<td class="valuefieldcreate">';
145 if (!empty($field_info['picto'])) {
146 print img_picto('', $field_info['picto'], '', 0, 0, 0, '', 'pictofixedwidth');
147 }
148 if (in_array($field_info['type'], array('int', 'integer'))) {
149 $value = GETPOSTISSET($html_name) ? GETPOSTINT($html_name) : $assetdepreciationoptions->$field_key;
150 } elseif ($field_info['type'] == 'double') {
151 $value = GETPOSTISSET($html_name) ? price2num(GETPOST($html_name, 'alphanohtml')) : $assetdepreciationoptions->$field_key;
152 } elseif (preg_match('/^(text|html)/', $field_info['type'])) {
153 $tmparray = explode(':', $field_info['type']);
154 if (!empty($tmparray[1])) {
155 $check = $tmparray[1];
156 } else {
157 $check = 'restricthtml';
158 }
159 $value = GETPOSTISSET($html_name) ? GETPOST($html_name, $check) : $assetdepreciationoptions->$field_key;
160 } elseif ($field_info['type'] == 'price') {
161 $value = GETPOSTISSET($html_name) ? price2num(GETPOST($html_name)) : ($assetdepreciationoptions->$field_key ? price2num($assetdepreciationoptions->$field_key) : (!empty($field_info['default']) ? dol_eval($field_info['default'], 1) : 0));
162 } elseif ($field_key == 'lang') {
163 $value = GETPOSTISSET($html_name) ? GETPOST($html_name, 'aZ09') : $assetdepreciationoptions->lang;
164 } else {
165 $value = GETPOSTISSET($html_name) ? GETPOST($html_name, 'alpha') : $assetdepreciationoptions->$field_key;
166 }
167 if (!empty($field_info['noteditable'])) {
168 print $assetdepreciationoptions->showOutputField($field_info, $field_key, $value, '', '', $prefix_html_name, 0);
169 } else {
170 if ($field_key == 'lang') {
171 print img_picto('', 'language', 'class="pictofixedwidth"');
172 print $formadmin->select_language($value, $html_name, 0, null, 1, 0, 0, 'minwidth300', 2);
173 } else {
174 print $assetdepreciationoptions->showInputField($field_info, $field_key, $value, '', '', $prefix_html_name, 0);
175 }
176 }
177 print '</td>';
178 print '</tr>';
179 }
180 print '</table>';
181 }
182 print '<div class="clearboth"></div>';
183}
184
185if (!empty($enabled_field_info)) {
186 $enabled_field_info = json_encode($enabled_field_info);
187 print <<<SCRIPT
188<script type="text/javascript">
189 jQuery(document).ready(function () {
190 var enabled_field_info = $enabled_field_info;
191
192 // Init fields
193 enabled_field_info.map(function(info) {
194 var html_name = info.mode_key + '_' + info.field_key;
195 var source = $('#' + html_name);
196 if (!(source.length > 0)) source = $('[name="' + html_name + '"]');
197 if (source.length > 0) {
198 source.attr('data-asset-enabled-field-value', info.value);
199 source.attr('data-asset-enabled-field-target', info.target);
200 updateEnabledField(source);
201 source.on('change click', function() {
202 updateEnabledField(jQuery(this));
203 });
204 }
205 });
206
207 function updateEnabledField(_this) {
208 var value = _this.attr('data-asset-enabled-field-value');
209 var target_name = _this.attr('data-asset-enabled-field-target');
210
211 // for block mode
212 var target = $('table#' + target_name);
213
214 // for field
215 if (!(target.length > 0)) {
216 target = $('#' + target_name);
217 if (!(target.length > 0)) target = $('[name="' + target_name + '"]');
218 if (target.length > 0) target = target.closest('tr');
219 }
220
221 if (target.length > 0) {
222 var source_value = _this.attr('type') == 'checkbox' ? (_this.is(':checked') ? 1 : 0) : _this.val();
223
224 if (source_value != value) {
225 target.hide();
226 } else {
227 target.show();
228 }
229 }
230 }
231 });
232</script>
233SCRIPT;
234}
235
236?>
237<!-- END PHP TEMPLATE depreciation_options_edit.tpl.php -->
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:66
Class to generate html code for admin pages.
Class to manage generation of HTML components Only common components must be here.
verifCond($strToEvaluate, $onlysimplestring='1')
Verify if condition in string is ok or not.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dol_eval($s, $returnvalue=1, $hideerrors=1, $onlysimplestring='1')
Replace eval function to add more security.
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by the value of a given key, which produces ascending (default) or descending out...
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition repair.php:149