dolibarr 18.0.6
depreciation.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2007-2017 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2018 Alexandre Spangaro <aspangaro@open-dsi.fr>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 */
18
25// Load Dolibarr environment
26require '../main.inc.php';
27require_once DOL_DOCUMENT_ROOT . '/core/lib/asset.lib.php';
28require_once DOL_DOCUMENT_ROOT . '/asset/class/asset.class.php';
29require_once DOL_DOCUMENT_ROOT . '/asset/class/assetdepreciationoptions.class.php';
30
31// Load translation files required by the page
32$langs->loadLangs(array("assets", "companies"));
33
34// Get parameters
35$id = GETPOST('id', 'int');
36$ref = GETPOST('ref', 'alpha');
37$action = GETPOST('action', 'aZ09');
38$cancel = GETPOST('cancel', 'aZ09');
39$backtopage = GETPOST('backtopage', 'alpha');
40
41// Initialize technical objects
42$object = new Asset($db);
43$assetdepreciationoptions = new AssetDepreciationOptions($db);
44$extrafields = new ExtraFields($db);
45$diroutputmassaction = $conf->asset->dir_output.'/temp/massgeneration/'.$user->id;
46$hookmanager->initHooks(array('assetdepreciation', 'globalcard')); // Note that conf->hooks_modules contains array
47// Fetch optionals attributes and labels
48$extrafields->fetch_name_optionals_label($object->table_element);
49
50// Load object
51include DOL_DOCUMENT_ROOT . '/core/actions_fetchobject.inc.php'; // Must be include, not include_once // Must be include, not include_once. Include fetch and fetch_thirdparty but not fetch_optionals
52if ($id > 0 || !empty($ref)) {
53 $upload_dir = $conf->asset->multidir_output[$object->entity] . "/" . $object->id;
54}
55
56// Security check (enable the most restrictive one)
57if ($user->socid > 0) accessforbidden();
58$isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0);
59restrictedArea($user, $object->element, $object->id, $object->table_element, '', 'fk_soc', 'rowid', $isdraft);
60if (!isModEnabled('asset')) accessforbidden();
61if (!empty($object->not_depreciated)) accessforbidden();
62
63$object->asset_depreciation_options = &$assetdepreciationoptions;
64$result = $assetdepreciationoptions->fetchDeprecationOptions($object->id);
65if ($result < 0) {
66 setEventMessages($assetdepreciationoptions->error, $assetdepreciationoptions->errors, 'errors');
67}
68$result = $object->fetchDepreciationLines();
69if ($result < 0) {
70 setEventMessages($object->error, $object->errors, 'errors');
71}
72
73
74/*
75 * Actions
76 */
77
78$parameters = array();
79$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
80if ($reshook < 0) {
81 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
82}
83if (empty($reshook)) {
84}
85
86
87/*
88 * View
89 */
90
91$form = new Form($db);
92
93$help_url = '';
94llxHeader('', $langs->trans('Asset'), $help_url);
95
96if ($id > 0 || !empty($ref)) {
97 $head = assetPrepareHead($object);
98 print dol_get_fiche_head($head, 'depreciation', $langs->trans("Asset"), -1, $object->picto);
99
100 // Object card
101 // ------------------------------------------------------------
102 $linkback = '<a href="' . DOL_URL_ROOT . '/asset/list.php?restore_lastsearch_values=1' . (!empty($socid) ? '&socid=' . $socid : '') . '">' . $langs->trans("BackToList") . '</a>';
103
104 $morehtmlref = '<div class="refidno">';
105 $morehtmlref .= '</div>';
106
107 dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
108
109 print '<div class="fichecenter">';
110 print '<div class="underbanner clearboth"></div>';
111 print '</div>';
112
113 print dol_get_fiche_end();
114
115 $parameters = array();
116 $reshook = $hookmanager->executeHooks('listAssetDeprecation', $parameters, $object, $action);
117 print $hookmanager->resPrint;
118 if ($reshook < 0) {
119 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
120 } elseif (empty($reshook)) {
121 $bookkeeping_icon = '<i class="fas fa-save" title="'.$langs->trans('AssetDispatchedInBookkeeping').'"></i>';
122 $future_icon = '<i class="fas fa-clock" title="'.$langs->trans('AssetFutureDepreciationLine').'"></i>';
123 $now = dol_now();
124
125 foreach ($assetdepreciationoptions->deprecation_options_fields as $mode_key => $fields) {
126 $lines = $object->depreciation_lines[$mode_key];
127 if (!empty($lines)) {
128 $mode_info = $assetdepreciationoptions->deprecation_options_fields[$mode_key];
129 $depreciation_info = $assetdepreciationoptions->getGeneralDepreciationInfoForMode($mode_key);
130
131 print load_fiche_titre($langs->trans($mode_info['label']), '', '');
132
133 // Depreciation general info
134 //---------------------------------
135 print '<div class="fichecenter">';
136 print '<div class="fichehalfleft">';
137 print '<div class="underbanner clearboth"></div>';
138 print '<table class="border centpercent tableforfield">' . "\n";
139 print '<tr><td class="titlefield">' . $langs->trans('AssetBaseDepreciationHT') . '</td><td>' . price($depreciation_info['base_depreciation_ht']) . '</td></tr>';
140 print '<tr><td class="titlefield">' . $langs->trans('AssetDepreciationBeginDate') . '</td><td>' . dol_print_date($object->date_start > $object->date_acquisition ? $object->date_start : $object->date_acquisition, 'day') . '</td></tr>';
141 print '</table>';
142
143 // We close div and reopen for second column
144 print '</div>';
145 print '<div class="fichehalfright">';
146
147 print '<div class="underbanner clearboth"></div>';
148 print '<table class="border centpercent tableforfield">';
149 print '<tr><td class="titlefield">' . $langs->trans('AssetDepreciationDuration') . '</td><td>' . $depreciation_info['duration'] . ' ( ' . $depreciation_info['duration_type'] . ' )</td></tr>';
150 print '<tr><td class="titlefield">' . $langs->trans('AssetDepreciationRate') . '</td><td>' . $depreciation_info['rate'] . '</td></tr>';
151 print '</table>';
152 print '</div>';
153 print '</div>';
154 print '<div class="clearboth"></div>';
155
156 // Depreciation lines
157 //---------------------------------
158 print '<br>';
159 print '<div class="div-table-responsive-no-min">';
160 print '<table class="noborder allwidth">';
161
162 print '<tr class="liste_titre">';
163 print '<td class="width20"></td>';
164 print '<td>' . $langs->trans("Ref") . '</td>';
165 print '<td class="center">' . $langs->trans("AssetDepreciationDate") . '</td>';
166 print '<td class="right">' . $langs->trans("AssetDepreciationHT") . '</td>';
167 print '<td class="right">' . $langs->trans("AssetCumulativeDepreciationHT") . '</td>';
168 print '<td class="right">' . $langs->trans("AssetResidualHT") . '</td>';
169 print '</tr>';
170
171 if (empty($lines)) {
172 print '<tr><td class="impair center" colspan="6"><span class="opacitymedium">' . $langs->trans("None") . '</span></td></tr>';
173 } else {
174 foreach ($lines as $line) {
175 print '<tr class="oddeven">';
176 print '<td>' . ($line['bookkeeping'] ? $bookkeeping_icon : ($line['depreciation_date'] > $now ? $future_icon : '')) . '</td>';
177 print '<td >' . (empty($line['ref']) ? $langs->trans('AssetDepreciationReversal') : $line['ref']) . '</td>';
178 print '<td class="center">' . dol_print_date($line['depreciation_date'], 'day') . '</td>';
179 print '<td class="right">';
180 print price($line['depreciation_ht']);
181 print '</td>';
182 print '<td class="right">';
183 print price($line['cumulative_depreciation_ht']);
184 print '</td>';
185 print '<td class="right">';
186 print price(price2num($depreciation_info['base_depreciation_ht'] - $line['cumulative_depreciation_ht'], 'MT'));
187 print '</td>';
188 print "</tr>\n";
189 }
190 }
191
192 print '</table>';
193 print '</div>';
194 }
195 }
196 }
197}
198
199// End of page
200llxFooter();
201$db->close();
assetPrepareHead(Asset $object)
Prepare array of tabs for Asset.
Definition asset.lib.php:87
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:56
llxFooter()
Empty footer.
Definition wrapper.php:70
Class for AssetDepreciationOptions.
Class for Asset.
Class to manage standard extra fields.
Class to manage generation of HTML components Only common components must be here.
dol_banner_tab($object, $paramid, $morehtml='', $shownav=1, $fieldid='rowid', $fieldref='ref', $morehtmlref='', $moreparam='', $nodbprefix=0, $morehtmlleft='', $morehtmlstatus='', $onlybanner=0, $morehtmlright='')
Show tab footer of a card.
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_now($mode='auto')
Return date for now.
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.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.