forked from glpi-project/glpi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.infocom.php
318 lines (265 loc) · 10.3 KB
/
report.infocom.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
<?php
/**
* ---------------------------------------------------------------------
* GLPI - Gestionnaire Libre de Parc Informatique
* Copyright (C) 2015-2018 Teclib' and contributors.
*
* http://glpi-project.org
*
* based on GLPI - Gestionnaire Libre de Parc Informatique
* Copyright (C) 2003-2014 by the INDEPNET Development Team.
*
* ---------------------------------------------------------------------
*
* LICENSE
*
* This file is part of GLPI.
*
* GLPI is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* GLPI is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GLPI. If not, see <http://www.gnu.org/licenses/>.
* ---------------------------------------------------------------------
*/
include ('../inc/includes.php');
Session::checkRight("reports", READ);
Html::header(Report::getTypeName(Session::getPluralNumber()), $_SERVER['PHP_SELF'], "tools", "report");
if (empty($_POST["date1"]) && empty($_POST["date2"])) {
$year = date("Y")-1;
$_POST["date1"] = date("Y-m-d", mktime(1, 0, 0, date("m"), date("d"), $year));
$_POST["date2"] = date("Y-m-d");
}
if (!empty($_POST["date1"])
&& !empty($_POST["date2"])
&& (strcmp($_POST["date2"], $_POST["date1"]) < 0)) {
$tmp = $_POST["date1"];
$_POST["date1"] = $_POST["date2"];
$_POST["date2"] = $tmp;
}
$stat = new Stat();
$chart_opts = [
'width' => '90%',
'legend' => false
];
Report::title();
echo "<div class='center'><form method='post' name='form' action='".$_SERVER['PHP_SELF']."'>";
echo "<table class='tab_cadre'><tr class='tab_bg_2'>";
echo "<td class='right'>".__('Start date')."</td><td>";
Html::showDateField("date1", ['value' => $_POST["date1"]]);
echo "</td><td rowspan='2' class='center'>";
echo "<input type='submit' class='submit' name='submit' value=\"".__s('Display report')."\"></td>".
"</tr>";
echo "<tr class='tab_bg_2'><td class='right'>".__('End date')."</td><td>";
Html::showDateField("date2", ['value' => $_POST["date2"]]);
echo "</td></tr>";
echo "</table>";
Html::closeForm();
echo "</div>";
$valeurtot = 0;
$valeurnettetot = 0;
$valeurnettegraphtot = [];
$valeurgraphtot = [];
/** Display an infocom report
*
* @param string $itemtype item type
* @param string $begin begin date
* @param string $end end date
**/
function display_infocoms_report($itemtype, $begin, $end) {
global $DB, $valeurtot, $valeurnettetot, $valeurnettegraphtot, $valeurgraphtot, $CFG_GLPI, $stat, $chart_opts;
$itemtable = getTableForItemType($itemtype);
$query = "SELECT `glpi_infocoms`.*,
`$itemtable`.`name` AS name,
`$itemtable`.`ticket_tco`,
`glpi_entities`.`completename` AS entname,
`glpi_entities`.`id` AS entID
FROM `glpi_infocoms`
INNER JOIN `$itemtable` ON (`$itemtable`.`id` = `glpi_infocoms`.`items_id`
AND `glpi_infocoms`.`itemtype` = '$itemtype')
LEFT JOIN `glpi_entities` ON (`$itemtable`.`entities_id` = `glpi_entities`.`id`)
WHERE `$itemtable`.`is_template` = 0 ".
getEntitiesRestrictRequest("AND", $itemtable);
if (!empty($begin)) {
$query .= " AND (`glpi_infocoms`.`buy_date` >= '$begin'
OR `glpi_infocoms`.`use_date` >= '$begin') ";
}
if (!empty($end)) {
$query .= " AND (`glpi_infocoms`.`buy_date` <= '$end'
OR `glpi_infocoms`.`use_date` <= '$end') ";
}
$query .= " ORDER BY entname ASC, `buy_date`, `use_date`";
$display_entity = Session::isMultiEntitiesMode();
$result = $DB->query($query);
if (($DB->numrows($result) > 0)
&& ($item = getItemForItemtype($itemtype))) {
echo "<h2>".$item->getTypeName(1)."</h2>";
echo "<table class='tab_cadre'><tr><th>".__('Name')."</th>";
if ($display_entity) {
echo "<th>".__('Entity')."</th>";
}
echo "<th>"._x('price', 'Value')."</th><th>".__('ANV')."</th>";
echo "<th>".__('TCO')."</th><th>".__('Date of purchase')."</th>";
echo "<th>".__('Startup date')."</th><th>".__('Warranty expiration date')."</th></tr>";
$valeursoustot = 0;
$valeurnettesoustot = 0;
$valeurnettegraph = [];
$valeurgraph = [];
while ($line=$DB->fetch_assoc($result)) {
if (isset($line["is_global"]) && $line["is_global"]
&& $item->getFromDB($line["items_id"])) {
$line["value"] *= Computer_Item::countForItem($item);
}
if ($line["value"]>0) {
$valeursoustot += $line["value"];
}
$valeurnette = Infocom::Amort($line["sink_type"], $line["value"], $line["sink_time"],
$line["sink_coeff"], $line["buy_date"], $line["use_date"],
$CFG_GLPI["date_tax"], "n");
$tmp = Infocom::Amort($line["sink_type"], $line["value"], $line["sink_time"],
$line["sink_coeff"], $line["buy_date"], $line["use_date"],
$CFG_GLPI["date_tax"], "all");
if (is_array($tmp) && (count($tmp) > 0)) {
foreach ($tmp["annee"] as $key => $val) {
if ($tmp["vcnetfin"][$key] > 0) {
if (!isset($valeurnettegraph[$val])) {
$valeurnettegraph[$val] = 0;
}
$valeurnettegraph[$val] += $tmp["vcnetdeb"][$key];
}
}
}
if (!empty($line["buy_date"])) {
$year = substr($line["buy_date"], 0, 4);
if ($line["value"] > 0) {
if (!isset($valeurgraph[$year])) {
$valeurgraph[$year] = 0;
}
$valeurgraph[$year] += $line["value"];
}
}
$valeurnette = str_replace([" ", "-"], ["", ""], $valeurnette);
if (!empty($valeurnette)) {
$valeurnettesoustot += $valeurnette;
}
echo "<tr class='tab_bg_1'><td>".$line["name"]."</td>";
if ($display_entity) {
echo "<td>".$line['entname']."</td>";
}
echo "<td class='right'>".Html::formatNumber($line["value"])."</td>".
"<td class='right'>".Html::formatNumber($valeurnette)."</td>".
"<td class='right'>".Infocom::showTco($line["ticket_tco"], $line["value"])."</td>".
"<td>".Html::convDate($line["buy_date"])."</td>".
"<td>".Html::convDate($line["use_date"])."</td>".
"<td>".Infocom::getWarrantyExpir($line["buy_date"], $line["warranty_duration"]).
"</td></tr>";
}
$valeurtot += $valeursoustot;
$valeurnettetot += $valeurnettesoustot;
$tmpmsg = sprintf(__('Total: Value=%1$s - Account net value=%2$s'),
Html::formatNumber($valeursoustot),
Html::formatNumber($valeurnettesoustot));
echo "<tr><td colspan='6' class='center'><h3>$tmpmsg</h3></td></tr>";
if (count($valeurnettegraph) > 0) {
echo "<tr><td colspan='8' class='center'>";
ksort($valeurnettegraph);
$valeurnettegraphdisplay = array_map('round', $valeurnettegraph);
foreach ($valeurnettegraph as $key => $val) {
if (!isset($valeurnettegraphtot[$key])) {
$valeurnettegraphtot[$key] = 0;
}
$valeurnettegraphtot[$key] += $valeurnettegraph[$key];
}
$stat->displayLineGraph(
sprintf(
__('%1$s account net value'),
$item->getTypeName(1)
),
array_keys($valeurnettegraphdisplay), [
[
'data' => $valeurnettegraphdisplay
]
], $chart_opts
);
echo "</td></tr>";
}
if (count($valeurgraph) > 0) {
echo "<tr><td colspan='8' class='center'>";
ksort($valeurgraph);
$valeurgraphdisplay = array_map('round', $valeurgraph);
foreach ($valeurgraph as $key => $val) {
if (!isset($valeurgraphtot[$key])) {
$valeurgraphtot[$key] = 0;
}
$valeurgraphtot[$key] += $valeurgraph[$key];
}
$stat->displayLineGraph(
sprintf(
__('%1$s value'),
$item->getTypeName(1)
),
array_keys($valeurgraphdisplay), [
[
'data' => $valeurgraphdisplay
]
], $chart_opts
);
echo "</td></tr>";
}
echo "</table>";
return true;
}
return false;
}
$types = ['Computer', 'Monitor', 'NetworkEquipment', 'Peripheral', 'Phone', 'Printer'];
$i = 0;
echo "<table><tr><td class='top'>";
while (count($types) > 0) {
$type = array_shift($types);
if (display_infocoms_report($type, $_POST["date1"], $_POST["date2"])) {
echo "</td>";
$i++;
if (($i%2) == 0) {
echo "</tr><tr>";
}
echo "<td class='top'>";
}
}
if (($i%2) == 0) {
echo " </td><td> ";
}
echo "</td></tr></table>";
$tmpmsg = sprintf(__('Total: Value=%1$s - Account net value=%2$s'),
Html::formatNumber($valeurtot),
Html::formatNumber($valeurnettetot));
echo "<div class='center'><h3>$tmpmsg</h3></div>";
if (count($valeurnettegraphtot) > 0) {
$valeurnettegraphtotdisplay = array_map('round', $valeurnettegraphtot);
$stat->displayLineGraph(
__('Total account net value'),
array_keys($valeurnettegraphtotdisplay), [
[
'data' => $valeurnettegraphtotdisplay
]
], $chart_opts
);
}
if (count($valeurgraphtot) > 0) {
$valeurgraphtotdisplay = array_map('round', $valeurgraphtot);
$stat->displayLineGraph(
__('Total value'),
array_keys($valeurgraphtotdisplay), [
[
'data' => $valeurgraphtotdisplay
]
], $chart_opts
);
}
Html::footer();