36@phan-var-force ?Form $form
37@phan-var-force HookManager $hookmanager
38@phan-var-force AssetDepreciationOptions $assetdepreciationoptions
43 print
"Error, template page can't be called as URL";
48if (!is_object($form)) {
49 $form =
new Form($db);
54<!-- BEGIN PHP TEMPLATE depreciation_options_view.tpl.php -->
57if (!is_array($parameters)) {
58 $parameters = array();
60if (empty($parameters[
'assetdepreciationoptions'])) {
61 $parameters[
'assetdepreciationoptions'] = &$assetdepreciationoptions;
63$reshook = $hookmanager->executeHooks(
'formAssetDeprecationOptions', $parameters,
$object, $action);
64print $hookmanager->resPrint;
70 $class_type = get_class(
$object) ==
'Asset' ? 0 : 1;
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]) {
80 $assetdepreciationoptions->setInfosForMode($mode_key, $class_type,
true);
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]) {
94 $isVisibleAbs = array_key_exists(
'visible', $field_info) ? abs((
int) $field_info[
'visible']) : 0;
95 if (!in_array($isVisibleAbs, array(1, 3, 4, 5))) {
98 if (array_key_exists(
'enabled', $field_info) && isset($field_info[
'enabled']) && !
verifCond($field_info[
'enabled'])) {
101 $key = $mode_key .
'_' . $field_key;
102 $value = $assetdepreciationoptions->deprecation_options[$mode_key][$field_key] ??
null;
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') {
110 if (!empty($field_info[
'help'])) {
111 print $form->textwithpicto($langs->trans($field_info[
'label']), $langs->trans($field_info[
'help']));
113 if (isset($field_info[
'copytoclipboard']) && $field_info[
'copytoclipboard'] == 1) {
116 print $langs->trans($field_info[
'label']);
120 print
'<td class="valuefield fieldname_' . $key;
121 if ($field_info[
'type'] ==
'text') {
124 if (!empty($field_info[
'cssview'])) {
125 print
' ' . $field_info[
'cssview'];
128 if (in_array($field_info[
'type'], array(
'text',
'html'))) {
129 print
'<div class="longmessagecut">';
131 if ($field_key ==
'lang') {
132 $langs->load(
"languages");
133 $labellang = ($value ? $langs->trans(
'Language_' . $value) :
'');
137 if (isset($field_info[
'copytoclipboard']) && $field_info[
'copytoclipboard'] == 2) {
138 $out = $assetdepreciationoptions->showOutputField($field_info, $field_key, $value,
'',
'', $mode_key .
'_', 0);
141 print $assetdepreciationoptions->showOutputField($field_info, $field_key, $value,
'',
'', $mode_key .
'_', 0);
144 if (in_array($field_info[
'type'], array(
'text',
'html'))) {
151 print
'<div class="clearboth"></div>';
157<!-- END PHP TEMPLATE depreciation_options_view.tpl.php -->
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
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...