dolibarr 21.0.0-beta
cabyuser.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2001-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2016 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2013 Antoine Iauch <aiauch@gpcsolutions.fr>
6 * Copyright (C) 2018-2024 Frédéric France <frederic.france@free.fr>
7 * Copyright (C) 2022 Alexandre Spangaro <aspangaro@open-dsi.fr>
8 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 */
23
29// Load Dolibarr environment
30require '../../main.inc.php';
31require_once DOL_DOCUMENT_ROOT.'/core/lib/report.lib.php';
32require_once DOL_DOCUMENT_ROOT.'/core/lib/tax.lib.php';
33require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
34
43// Load translation files required by the page
44$langs->load("accountancy");
45
46$socid = GETPOSTINT('socid');
47
48// Security check
49if ($user->socid > 0) {
50 $socid = $user->socid;
51}
52$hookmanager->initHooks(['cabyuserreportlist']);
53if (isModEnabled('comptabilite')) {
54 $result = restrictedArea($user, 'compta', '', '', 'resultat');
55}
56if (isModEnabled('accounting')) {
57 $result = restrictedArea($user, 'accounting', '', '', 'comptarapport');
58}
59// Define modecompta ('CREANCES-DETTES' or 'RECETTES-DEPENSES')
60$modecompta = getDolGlobalString('ACCOUNTING_MODE');
61if (GETPOST("modecompta")) {
62 $modecompta = GETPOST("modecompta");
63}
64
65$sortorder = GETPOST("sortorder", 'aZ09comma');
66$sortfield = GETPOST("sortfield", 'aZ09comma');
67if (!$sortorder) {
68 $sortorder = "asc";
69}
70if (!$sortfield) {
71 $sortfield = "name";
72}
73
74// Date range
75$year = GETPOSTINT("year");
76$month = GETPOSTINT("month");
77$date_startyear = GETPOSTINT("date_startyear");
78$date_startmonth = GETPOSTINT("date_startmonth");
79$date_startday = GETPOSTINT("date_startday");
80$date_endyear = GETPOSTINT("date_endyear");
81$date_endmonth = GETPOSTINT("date_endmonth");
82$date_endday = GETPOSTINT("date_endday");
83if (empty($year)) {
84 $year_current = dol_print_date(dol_now(), '%Y');
85 $month_current = dol_print_date(dol_now(), '%m');
86 $year_start = $year_current;
87} else {
88 $year_current = $year;
89 $month_current = dol_print_date(dol_now(), '%m');
90 $year_start = $year;
91}
92$date_start = dol_mktime(0, 0, 0, GETPOSTINT("date_startmonth"), GETPOSTINT("date_startday"), GETPOSTINT("date_startyear"), 'tzserver'); // We use timezone of server so report is same from everywhere
93$date_end = dol_mktime(23, 59, 59, GETPOSTINT("date_endmonth"), GETPOSTINT("date_endday"), GETPOSTINT("date_endyear"), 'tzserver'); // We use timezone of server so report is same from everywhere
94// Quarter
95if (empty($date_start) || empty($date_end)) { // We define date_start and date_end
96 $q = GETPOST("q") ? GETPOST("q") : 0;
97 if ($q == 0) {
98 // We define date_start and date_end
99 $month_start = GETPOST("month") ? GETPOST("month") : getDolGlobalInt('SOCIETE_FISCAL_MONTH_START', 1);
100 $year_end = $year_start;
101 $month_end = $month_start;
102 if (!GETPOST("month")) { // If month not forced
103 if (!GETPOST('year') && $month_start > $month_current) {
104 $year_start--;
105 $year_end--;
106 }
107 $month_end = $month_start - 1;
108 if ($month_end < 1) {
109 $month_end = 12;
110 } else {
111 $year_end++;
112 }
113 }
114 $date_start = dol_get_first_day($year_start, $month_start, false);
115 $date_end = dol_get_last_day($year_end, $month_end, false);
116 }
117 if ($q == 1) {
118 $date_start = dol_get_first_day($year_start, 1, false);
119 $date_end = dol_get_last_day($year_start, 3, false);
120 }
121 if ($q == 2) {
122 $date_start = dol_get_first_day($year_start, 4, false);
123 $date_end = dol_get_last_day($year_start, 6, false);
124 }
125 if ($q == 3) {
126 $date_start = dol_get_first_day($year_start, 7, false);
127 $date_end = dol_get_last_day($year_start, 9, false);
128 }
129 if ($q == 4) {
130 $date_start = dol_get_first_day($year_start, 10, false);
131 $date_end = dol_get_last_day($year_start, 12, false);
132 }
133} else {
134 // TODO We define q
135}
136// $date_start and $date_end are defined. We force $year_start and $nbofyear
137$tmps = dol_getdate($date_start);
138$year_start = $tmps['year'];
139$tmpe = dol_getdate($date_end);
140$year_end = $tmpe['year'];
141$nbofyear = ($year_end - $year_start) + 1;
142
143$commonparams = array();
144$commonparams['modecompta'] = $modecompta;
145$commonparams['sortorder'] = $sortorder;
146$commonparams['sortfield'] = $sortfield;
147
148$headerparams = array();
149if (!empty($date_startyear)) {
150 $headerparams['date_startyear'] = $date_startyear;
151}
152if (!empty($date_startmonth)) {
153 $headerparams['date_startmonth'] = $date_startmonth;
154}
155if (!empty($date_startday)) {
156 $headerparams['date_startday'] = $date_startday;
157}
158if (!empty($date_endyear)) {
159 $headerparams['date_endyear'] = $date_endyear;
160}
161if (!empty($date_endmonth)) {
162 $headerparams['date_endmonth'] = $date_endmonth;
163}
164if (!empty($date_endday)) {
165 $headerparams['date_endday'] = $date_endday;
166}
167if (!empty($q)) {
168 $headerparams['q'] = $q;
169}
170
171$tableparams = array();
172
173// Adding common parameters
174$allparams = array_merge($commonparams, $headerparams, $tableparams);
175$headerparams = array_merge($commonparams, $headerparams);
176$tableparams = array_merge($commonparams, $tableparams);
177
178$paramslink = "";
179foreach ($allparams as $key => $value) {
180 $paramslink .= '&'.$key.'='.$value;
181}
182
183/*
184 * View
185 */
186
187llxHeader();
188
189$form = new Form($db);
190
191// TODO Report from bookkeeping not yet available, so we switch on report on business events
192if ($modecompta == "BOOKKEEPING") {
193 $modecompta = "CREANCES-DETTES";
194}
195if ($modecompta == "BOOKKEEPINGCOLLECTED") {
196 $modecompta = "RECETTES-DEPENSES";
197}
198
199$exportlink = "";
200$namelink = "";
201$builddate = 0;
202$calcmode = '';
203$name = '';
204
205// Show report header
206if ($modecompta == "CREANCES-DETTES") {
207 $name = $langs->trans("Turnover").', '.$langs->trans("ByUserAuthorOfInvoice");
208 $calcmode = $langs->trans("CalcModeDebt");
209 //$calcmode.='<br>('.$langs->trans("SeeReportInInputOutputMode",'<a href="'.$_SERVER["PHP_SELF"].'?year='.$year_start.'&modecompta=RECETTES-DEPENSES">','</a>').')';
210 $description = $langs->trans("RulesCADue");
211 if (getDolGlobalString('FACTURE_DEPOSITS_ARE_JUST_PAYMENTS')) {
212 $description .= $langs->trans("DepositsAreNotIncluded");
213 } else {
214 $description .= $langs->trans("DepositsAreIncluded");
215 }
216 $builddate = dol_now();
217 //$exportlink=$langs->trans("NotYetAvailable");
218} elseif ($modecompta == "RECETTES-DEPENSES") {
219 $name = $langs->trans("TurnoverCollected").', '.$langs->trans("ByUserAuthorOfInvoice");
220 $calcmode = $langs->trans("CalcModePayment");
221 //$calcmode.='<br>('.$langs->trans("SeeReportInDueDebtMode",'<a href="'.$_SERVER["PHP_SELF"].'?year='.$year_start.'&modecompta=CREANCES-DETTES">','</a>').')';
222 $description = $langs->trans("RulesCAIn");
223 $description .= $langs->trans("DepositsAreIncluded");
224 $builddate = dol_now();
225 //$exportlink=$langs->trans("NotYetAvailable");
226} elseif ($modecompta == "BOOKKEEPING") {
227 // TODO
228} elseif ($modecompta == "BOOKKEEPINGCOLLECTED") {
229 // TODO
230}
231$period = $form->selectDate($date_start, 'date_start', 0, 0, 0, '', 1, 0, 0, '', '', '', '', 1, '', '', 'tzserver');
232$period .= ' - ';
233$period .= $form->selectDate($date_end, 'date_end', 0, 0, 0, '', 1, 0, 0, '', '', '', '', 1, '', '', 'tzserver');
234if ($date_end == dol_time_plus_duree($date_start, 1, 'y') - 1) {
235 $periodlink = '<a href="'.$_SERVER["PHP_SELF"].'?year='.($year_start - 1).'&modecompta='.$modecompta.'">'.img_previous().'</a> <a href="'.$_SERVER["PHP_SELF"].'?year='.($year_start + 1).'&modecompta='.$modecompta.'">'.img_next().'</a>';
236} else {
237 $periodlink = '';
238}
239
240$moreparam = array();
241if (!empty($modecompta)) {
242 $moreparam['modecompta'] = $modecompta;
243}
244
245report_header($name, $namelink, $period, $periodlink, $description, $builddate, $exportlink, $moreparam, $calcmode);
246
247if (isModEnabled('accounting') && $modecompta != 'BOOKKEEPING') {
248 print info_admin($langs->trans("WarningReportNotReliable"), 0, 0, '1');
249}
250
251
252$name = array();
253
254// Show array
255print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">';
256print '<input type="hidden" name="token" value="'.newToken().'">'."\n";
257// Extra parameters management
258foreach ($headerparams as $key => $value) {
259 print '<input type="hidden" name="'.$key.'" value="'.$value.'">';
260}
261
262$catotal = 0;
263$catotal_ht = 0;
264
265if ($modecompta == 'CREANCES-DETTES') {
266 $sql = "SELECT u.rowid as rowid, u.lastname as name, u.firstname as firstname, sum(f.total_ht) as amount, sum(f.total_ttc) as amount_ttc";
267 $sql .= " FROM ".MAIN_DB_PREFIX."user as u";
268 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."facture as f ON f.fk_user_author = u.rowid";
269 $sql .= " WHERE f.fk_statut in (1,2)";
270 if (getDolGlobalString('FACTURE_DEPOSITS_ARE_JUST_PAYMENTS')) {
271 $sql .= " AND f.type IN (0,1,2,5)";
272 } else {
273 $sql .= " AND f.type IN (0,1,2,3,5)";
274 }
275 if ($date_start && $date_end) {
276 $sql .= " AND f.datef >= '".$db->idate($date_start)."' AND f.datef <= '".$db->idate($date_end)."'";
277 }
278} elseif ($modecompta == "RECETTES-DEPENSES") {
279 /*
280 * List of payments (old payments are not seen by this query because on older versions,
281 * they were not linked via the table llx_paiement_facture. They are added later)
282 */
283 $sql = "SELECT u.rowid as rowid, u.lastname as name, u.firstname as firstname, sum(pf.amount) as amount_ttc";
284 $sql .= " FROM ".MAIN_DB_PREFIX."user as u";
285 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."facture as f ON f.fk_user_author = u.rowid ";
286 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."paiement_facture as pf ON pf.fk_facture = f.rowid";
287 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."paiement as p ON p.rowid = pf.fk_paiement";
288 $sql .= " WHERE 1=1";
289 if ($date_start && $date_end) {
290 $sql .= " AND p.datep >= '".$db->idate($date_start)."' AND p.datep <= '".$db->idate($date_end)."'";
291 }
292} // elseif ($modecompta == "BOOKKEEPING") {
293// } elseif ($modecompta == "BOOKKEEPINGCOLLECTED") {
294// }
295$sql .= " AND f.entity IN (".getEntity('invoice').")";
296if ($socid) {
297 $sql .= " AND f.fk_soc = ".((int) $socid);
298}
299$sql .= " GROUP BY u.rowid, u.lastname, u.firstname";
300$sql .= " ORDER BY u.rowid";
301
302$amount = array();
303$amount_ht = array();
304
305dol_syslog("cabyuser", LOG_DEBUG);
306$result = $db->query($sql);
307if ($result) {
308 $num = $db->num_rows($result);
309 $i = 0;
310 while ($i < $num) {
311 $obj = $db->fetch_object($result);
312
313 $amount_ht[$obj->rowid] = (empty($obj->amount) ? 0 : $obj->amount);
314 $amount[$obj->rowid] = $obj->amount_ttc;
315 $name[$obj->rowid] = $obj->name.' '.$obj->firstname;
316
317 $catotal_ht += (empty($obj->amount) ? 0 : $obj->amount);
318 $catotal += $obj->amount_ttc;
319 $i++;
320 }
321} else {
322 dol_print_error($db);
323}
324
325// Adding old-version payments, non-bound by table llx_paiement_facture then without User
326if ($modecompta == 'RECETTES-DEPENSES') {
327 $sql = "SELECT -1 as rowidx, '' as name, '' as firstname, sum(DISTINCT p.amount) as amount_ttc";
328 $sql .= " FROM ".MAIN_DB_PREFIX."bank as b";
329 $sql .= ", ".MAIN_DB_PREFIX."bank_account as ba";
330 $sql .= ", ".MAIN_DB_PREFIX."paiement as p";
331 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."paiement_facture as pf ON p.rowid = pf.fk_paiement";
332 $sql .= " WHERE pf.rowid IS NULL";
333 $sql .= " AND p.fk_bank = b.rowid";
334 $sql .= " AND b.fk_account = ba.rowid";
335 $sql .= " AND ba.entity IN (".getEntity('bank_account').")";
336 if ($date_start && $date_end) {
337 $sql .= " AND p.datep >= '".$db->idate($date_start)."' AND p.datep <= '".$db->idate($date_end)."'";
338 }
339 $sql .= " GROUP BY rowidx, name, firstname";
340 $sql .= " ORDER BY rowidx";
341
342 $result = $db->query($sql);
343 if ($result) {
344 $num = $db->num_rows($result);
345 $i = 0;
346 while ($i < $num) {
347 $obj = $db->fetch_object($result);
348 $amount[$obj->rowidx] = $obj->amount_ttc;
349 $name[$obj->rowidx] = $obj->name.' '.$obj->firstname;
350 $catotal += $obj->amount_ttc;
351 $i++;
352 }
353 } else {
354 dol_print_error($db);
355 }
356}
357
358$moreforfilter = '';
359
360print '<div class="div-table-responsive">';
361print '<table class="tagtable liste'.($moreforfilter ? " listwithfilterbefore" : "").'">'."\n";
362
363print "<tr class=\"liste_titre\">";
365 $langs->trans("User"),
366 $_SERVER["PHP_SELF"],
367 "name",
368 "",
369 $paramslink,
370 "",
371 $sortfield,
372 $sortorder
373);
374if ($modecompta == 'CREANCES-DETTES') {
376 $langs->trans('AmountHT'),
377 $_SERVER["PHP_SELF"],
378 "amount_ht",
379 "",
380 $paramslink,
381 'class="right"',
382 $sortfield,
383 $sortorder
384 );
385} else {
387}
389 $langs->trans("AmountTTC"),
390 $_SERVER["PHP_SELF"],
391 "amount_ttc",
392 "",
393 $paramslink,
394 'class="right"',
395 $sortfield,
396 $sortorder
397);
399 $langs->trans("Percentage"),
400 $_SERVER["PHP_SELF"],
401 "amount_ttc",
402 "",
403 $paramslink,
404 'class="right"',
405 $sortfield,
406 $sortorder
407);
409 $langs->trans("OtherStatistics"),
410 $_SERVER["PHP_SELF"],
411 "",
412 "",
413 "",
414 'align="center" width="20%"'
415);
416print "</tr>\n";
417
418if (count($amount)) {
419 $arrayforsort = $name;
420
421 // We define arrayforsort
422 if ($sortfield == 'name' && $sortorder == 'asc') {
423 asort($name);
424 $arrayforsort = $name;
425 }
426 if ($sortfield == 'name' && $sortorder == 'desc') {
427 arsort($name);
428 $arrayforsort = $name;
429 }
430 if ($sortfield == 'amount_ht' && $sortorder == 'asc') {
431 asort($amount_ht);
432 $arrayforsort = $amount_ht;
433 }
434 if ($sortfield == 'amount_ht' && $sortorder == 'desc') {
435 arsort($amount_ht);
436 $arrayforsort = $amount_ht;
437 }
438 if ($sortfield == 'amount_ttc' && $sortorder == 'asc') {
439 asort($amount);
440 $arrayforsort = $amount;
441 }
442 if ($sortfield == 'amount_ttc' && $sortorder == 'desc') {
443 arsort($amount);
444 $arrayforsort = $amount;
445 }
446
447 $i = 0;
448
449 foreach ($arrayforsort as $key => $value) {
450 print '<tr class="oddeven">';
451
452 // Third party
453 $fullname = $name[$key];
454 if ($key >= 0) {
455 $linkname = '<a href="'.DOL_URL_ROOT.'/user/card.php?id='.$key.'">'.img_object($langs->trans("ShowUser"), 'user').' '.$fullname.'</a>';
456 } else {
457 $linkname = $langs->trans("PaymentsNotLinkedToUser");
458 }
459 print "<td>".$linkname."</td>\n";
460
461 // Amount w/o VAT
462 print '<td class="right">';
463 if ($modecompta == 'RECETTES-DEPENSES') {
464 if ($key > 0) {
465 //print '<a href="'.DOL_URL_ROOT.'/compta/paiement/list.php?userid='.$key.'">';
466 } else {
467 //print '<a href="'.DOL_URL_ROOT.'/compta/paiement/list.php?userid=-1">';
468 }
469 } elseif ($modecompta == 'CREANCES-DETTES') {
470 if ($key > 0) {
471 print '<a href="'.DOL_URL_ROOT.'/compta/facture/list.php?userid='.$key.'">';
472 } else {
473 //print '<a href="#">';
474 }
475 print price($amount_ht[$key]);
476 if ($key > 0) {
477 print '</a>';
478 }
479 }
480 print '</td>';
481
482 // Amount with VAT
483 print '<td class="right">';
484 if ($modecompta == 'RECETTES-DEPENSES') {
485 if ($key > 0) {
486 //print '<a href="'.DOL_URL_ROOT.'/compta/paiement/list.php?userid='.$key.'">';
487 } else {
488 //print '<a href="'.DOL_URL_ROOT.'/compta/paiement/list.php?userid=-1">';
489 }
490 } elseif ($modecompta == 'CREANCES-DETTES') {
491 if ($key > 0) {
492 print '<a href="'.DOL_URL_ROOT.'/compta/facture/list.php?userid='.$key.'">';
493 } else {
494 //print '<a href="#">';
495 }
496 }
497 print price($amount[$key]);
498 if ($modecompta == 'RECETTES-DEPENSES') {
499 if ($key > 0) {
500 //print '</a>';
501 } else {
502 //print '</a>';
503 }
504 } elseif ($modecompta == 'CREANCES-DETTES') {
505 if ($key > 0) {
506 print '</a>';
507 }
508 }
509 print '</td>';
510
511 // Percent
512 print '<td class="right">'.($catotal > 0 ? round(100 * $amount[$key] / $catotal, 2).'%' : '&nbsp;').'</td>';
513
514 // Other stats
515 print '<td class="center">';
516 if (isModEnabled("propal") && $key > 0) {
517 print '&nbsp;<a href="'.DOL_URL_ROOT.'/comm/propal/stats/index.php?userid='.$key.'">'.img_picto($langs->trans("ProposalStats"), "stats").'</a>&nbsp;';
518 }
519 if (isModEnabled('order') && $key > 0) {
520 print '&nbsp;<a href="'.DOL_URL_ROOT.'/commande/stats/index.php?userid='.$key.'">'.img_picto($langs->trans("OrderStats"), "stats").'</a>&nbsp;';
521 }
522 if (isModEnabled('invoice') && $key > 0) {
523 print '&nbsp;<a href="'.DOL_URL_ROOT.'/compta/facture/stats/index.php?userid='.$key.'">'.img_picto($langs->trans("InvoiceStats"), "stats").'</a>&nbsp;';
524 }
525 print '</td>';
526 print "</tr>\n";
527 $i++;
528 }
529
530 // Total
531 print '<tr class="liste_total">';
532 print '<td>'.$langs->trans("Total").'</td>';
533 if ($modecompta != 'CREANCES-DETTES') {
534 print '<td></td>';
535 } else {
536 print '<td class="right">'.price($catotal_ht).'</td>';
537 }
538 print '<td class="right">'.price($catotal).'</td>';
539 print '<td>&nbsp;</td>';
540 print '<td>&nbsp;</td>';
541 print '</tr>';
542
543 $db->free($result);
544}
545
546print "</table>";
547print '</div>';
548print '</form>';
549
550// End of page
551llxFooter();
552$db->close();
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:71
Class to manage generation of HTML components Only common components must be here.
dol_get_first_day($year, $month=1, $gm=false)
Return GMT time for first day of a month or year.
Definition date.lib.php:600
dol_time_plus_duree($time, $duration_value, $duration_unit, $ruleforendofmonth=0)
Add a delay to a date.
Definition date.lib.php:125
dol_get_last_day($year, $month=12, $gm=false)
Return GMT time for last day of a month or year.
Definition date.lib.php:619
llxFooter()
Footer empty.
Definition document.php:107
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
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.
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_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
img_previous($titlealt='default', $moreatt='')
Show previous logo.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
img_next($titlealt='default', $moreatt='')
Show next logo.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
info_admin($text, $infoonimgalt=0, $nodiv=0, $admin='1', $morecss='hideonsmartphone', $textfordropdown='', $picto='')
Show information in HTML for admin users or standard users.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_getdate($timestamp, $fast=false, $forcetimezone='')
Return an array with locale date info.
report_header($reportname, $notused, $period, $periodlink, $description, $builddate, $exportlink='', $moreparam=array(), $calcmode='', $varlink='')
Show header of a report.
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.