dolibarr 21.0.0-beta
depreciation_options_view.tpl.php
1<?php
2/* Copyright (C) 2021 Open-Dsi <support@open-dsi.fr>
3 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
4 * Copyright (C) 2024 Frédéric France <frederic.france@free.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 shows fields from hook formAssetAccountancyCode. Need to have the following variables defined:
20 * $object (asset, assetmodel, ...)
21 * $assetaccountancycodes
22 * $action
23 * $conf
24 * $langs
25 *
26 * $parameters
27 */
28
35'
36@phan-var-force ?Form $form
37@phan-var-force HookManager $hookmanager
38@phan-var-force AssetDepreciationOptions $assetdepreciationoptions
39';
40
41// Protection to avoid direct call of template
42if (empty($object) || !is_object($object)) {
43 print "Error, template page can't be called as URL";
44 exit(1);
45}
46
47
48if (!is_object($form)) {
49 $form = new Form($db);
50}
51
52
53?>
54<!-- BEGIN PHP TEMPLATE depreciation_options_view.tpl.php -->
55<?php
56
57if (!is_array($parameters)) {
58 $parameters = array();
59}
60if (empty($parameters['assetdepreciationoptions'])) {
61 $parameters['assetdepreciationoptions'] = &$assetdepreciationoptions;
62}
63$reshook = $hookmanager->executeHooks('formAssetDeprecationOptions', $parameters, $object, $action);
64print $hookmanager->resPrint;
65if ($reshook < 0) {
66 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
67}
68
69if (empty($reshook)) {
70 $class_type = get_class($object) == 'Asset' ? 0 : 1;
71 print '<br>';
72 foreach ($assetdepreciationoptions->deprecation_options_fields as $mode_key => $mode_info) {
73 if (!empty($mode_info['enabled_field'])) {
74 $info = explode(':', $mode_info['enabled_field']);
75 if (empty($assetdepreciationoptions->deprecation_options[$info[0]][$info[1]]) || $assetdepreciationoptions->deprecation_options[$info[0]][$info[1]] != $info[2]) {
76 continue;
77 }
78 }
79
80 $assetdepreciationoptions->setInfosForMode($mode_key, $class_type, true);
81
82 $width = "pull-left";
83 print '<table class="liste centpercent '. $width .'" id="block_' . $mode_key . '">' . "\n";
84 print '<tr class="liste_titre"><td colspan="5">'.$langs->trans($mode_info['label']).'</td></tr>';
85 $mode_info['fields'] = dol_sort_array($mode_info['fields'], 'position');
86 foreach ($mode_info['fields'] as $field_key => $field_info) {
87 if (!empty($field_info['enabled_field'])) {
88 $info = explode(':', $field_info['enabled_field']);
89 if (empty($assetdepreciationoptions->deprecation_options[$info[0]][$info[1]]) || $assetdepreciationoptions->deprecation_options[$info[0]][$info[1]] != $info[2]) {
90 continue;
91 }
92 }
93 // Discard if extrafield is a hidden field on form
94 $isVisibleAbs = array_key_exists('visible', $field_info) ? abs((int) $field_info['visible']) : 0;
95 if (!in_array($isVisibleAbs, array(1, 3, 4, 5))) {
96 continue;
97 }
98 if (array_key_exists('enabled', $field_info) && isset($field_info['enabled']) && !verifCond($field_info['enabled'])) {
99 continue; // We don't want this field
100 }
101 $key = $mode_key . '_' . $field_key;
102 $value = $assetdepreciationoptions->deprecation_options[$mode_key][$field_key] ?? null;
103
104 print '<tr class="field_' . $key . '" id="block_' . $mode_key . '"><td';
105 print ' class="' . (empty($field_info['tdcss']) ? 'titlefieldmiddle' : $field_info['tdcss']) . ' fieldname_' . $key;
106 if ($field_info['type'] == 'text' || $field_info['type'] == 'html') {
107 print ' tdtop';
108 }
109 print '">';
110 if (!empty($field_info['help'])) {
111 print $form->textwithpicto($langs->trans($field_info['label']), $langs->trans($field_info['help']));
112 } else {
113 if (isset($field_info['copytoclipboard']) && $field_info['copytoclipboard'] == 1) { // @phan-suppress-current-line PhanTypeInvalidDimOffset
114 print showValueWithClipboardCPButton($value, 0, $langs->transnoentitiesnoconv($field_info['label']));
115 } else {
116 print $langs->trans($field_info['label']);
117 }
118 }
119 print '</td>';
120 print '<td class="valuefield fieldname_' . $key;
121 if ($field_info['type'] == 'text') {
122 print ' wordbreak';
123 }
124 if (!empty($field_info['cssview'])) {
125 print ' ' . $field_info['cssview'];
126 }
127 print '">';
128 if (in_array($field_info['type'], array('text', 'html'))) {
129 print '<div class="longmessagecut">';
130 }
131 if ($field_key == 'lang') {
132 $langs->load("languages");
133 $labellang = ($value ? $langs->trans('Language_' . $value) : '');
134 print picto_from_langcode($value, 'class="paddingrightonly saturatemedium opacitylow"');
135 print $labellang;
136 } else {
137 if (isset($field_info['copytoclipboard']) && $field_info['copytoclipboard'] == 2) {
138 $out = $assetdepreciationoptions->showOutputField($field_info, $field_key, $value, '', '', $mode_key . '_', 0);
139 print showValueWithClipboardCPButton($out, 0, $out);
140 } else {
141 print $assetdepreciationoptions->showOutputField($field_info, $field_key, $value, '', '', $mode_key . '_', 0);
142 }
143 }
144 if (in_array($field_info['type'], array('text', 'html'))) {
145 print '</div>';
146 }
147 print '</td>';
148 print '</tr>';
149 }
150 print '</table>';
151 print '<div class="clearboth"></div>';
152 print '<br>';
153 }
154}
155
156?>
157<!-- END PHP TEMPLATE depreciation_options_view.tpl.php -->
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:66
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.
picto_from_langcode($codelang, $moreatt='', $notitlealt=0)
Return img flag of country for a language code or country code.
showValueWithClipboardCPButton($valuetocopy, $showonlyonhover=1, $texttoshow='')
Create a button to copy $valuetocopy in the clipboard (for copy and paste feature).
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...