dolibarr 25.0.0-alpha
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-2026 Frédéric France <frederic.france@free.fr>
7 * Copyright (C) 2022 Alexandre Spangaro <aspangaro@open-dsi.fr>
8 * Copyright (C) 2024-2026 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';
39require_once DOL_DOCUMENT_ROOT.'/core/lib/report.lib.php';
40require_once DOL_DOCUMENT_ROOT.'/core/lib/tax.lib.php';
41require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
42
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
191if ($modecompta == "BOOKKEEPINGCOLLECTED") {
192 $modecompta = "RECETTES-DEPENSES";
193}
194
195$exportlink = "";
196$namelink = "";
197$builddate = 0;
198$calcmode = '';
199$name = '';
200$description = '';
201
202// Show report header
203if ($modecompta == "CREANCES-DETTES") {
204 $name = $langs->trans("Turnover").', '.$langs->trans("ByUserAuthorOfInvoice");
205 $calcmode = $langs->trans("CalcModeDebt");
206 //$calcmode.='<br>('.$langs->trans("SeeReportInInputOutputMode",'<a href="'.$_SERVER["PHP_SELF"].'?year='.$year_start.'&modecompta=RECETTES-DEPENSES">','</a>').')';
207 $description = $langs->trans("RulesCADue");
208 if (getDolGlobalString('FACTURE_DEPOSITS_ARE_JUST_PAYMENTS')) {
209 $description .= $langs->trans("DepositsAreNotIncluded");
210 } else {
211 $description .= $langs->trans("DepositsAreIncluded");
212 }
213 $builddate = dol_now();
214 //$exportlink=$langs->trans("NotYetAvailable");
215} elseif ($modecompta == "RECETTES-DEPENSES") {
216 $name = $langs->trans("TurnoverCollected").', '.$langs->trans("ByUserAuthorOfInvoice");
217 $calcmode = $langs->trans("CalcModePayment");
218 //$calcmode.='<br>('.$langs->trans("SeeReportInDueDebtMode",'<a href="'.$_SERVER["PHP_SELF"].'?year='.$year_start.'&modecompta=CREANCES-DETTES">','</a>').')';
219 $description = $langs->trans("RulesCAIn");
220 $description .= $langs->trans("DepositsAreIncluded");
221 $builddate = dol_now();
222 //$exportlink=$langs->trans("NotYetAvailable");
223} elseif ($modecompta == "BOOKKEEPING") {
224 $name = $langs->trans("Turnover").', '.$langs->trans("ByUserAuthorOfInvoice");
225 $calcmode = $langs->trans("CalcModeBookkeeping");
226 $description = $langs->trans("RulesCADue");
227 $builddate = dol_now();
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="'.dolBuildUrl($_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$sql = '';
265
266if ($modecompta == 'CREANCES-DETTES') {
267 $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";
268 $sql .= " FROM ".MAIN_DB_PREFIX."user as u";
269 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."facture as f ON f.fk_user_author = u.rowid";
270 $sql .= " WHERE f.fk_statut in (1,2)";
271 if (getDolGlobalString('FACTURE_DEPOSITS_ARE_JUST_PAYMENTS')) {
272 $sql .= " AND f.type IN (0,1,2,5)";
273 } else {
274 $sql .= " AND f.type IN (0,1,2,3,5)";
275 }
276 if ($date_start && $date_end) {
277 $sql .= " AND f.datef >= '".$db->idate($date_start)."' AND f.datef <= '".$db->idate($date_end)."'";
278 }
279} elseif ($modecompta == "RECETTES-DEPENSES") {
280 /*
281 * List of payments (old payments are not seen by this query because on older versions,
282 * they were not linked via the table llx_paiement_facture. They are added later)
283 */
284 $sql = "SELECT u.rowid as rowid, u.lastname as name, u.firstname as firstname, sum(pf.amount) as amount_ttc";
285 $sql .= " FROM ".MAIN_DB_PREFIX."user as u";
286 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."facture as f ON f.fk_user_author = u.rowid ";
287 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."paiement_facture as pf ON pf.fk_facture = f.rowid";
288 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."paiement as p ON p.rowid = pf.fk_paiement";
289 $sql .= " WHERE 1=1";
290 if ($date_start && $date_end) {
291 $sql .= " AND p.datep >= '".$db->idate($date_start)."' AND p.datep <= '".$db->idate($date_end)."'";
292 }
293} elseif ($modecompta == "BOOKKEEPING") {
294 // Turnover per invoice author computed from the accounting ledger. Each posting is linked back to
295 // its source invoice via fk_doc (reliable at invoice level, unlike fk_docdet which the transfer
296 // engine does not preserve when several lines share the same account). HT is the sum of postings
297 // on INCOME-type accounts; TTC is the amount posted on the customer subledger line of the invoice.
298 $charofaccountstring = dol_getIdFromCode($db, getDolGlobalString('CHARTOFACCOUNTS'), 'accounting_system', 'rowid', 'pcg_version');
299
300 $sql = "SELECT u.rowid as rowid, u.lastname as name, u.firstname as firstname,";
301 $sql .= " SUM(CASE WHEN b.subledger_account IS NOT NULL AND b.subledger_account != '' THEN b.debit - b.credit ELSE 0 END) as amount_ttc,";
302 $sql .= " SUM(CASE WHEN aa.pcg_type = 'INCOME' THEN b.credit - b.debit ELSE 0 END) as amount";
303 $sql .= " FROM ".MAIN_DB_PREFIX."accounting_bookkeeping as b";
304 $sql .= " INNER JOIN ".MAIN_DB_PREFIX."facture as f ON f.rowid = b.fk_doc AND b.doc_type = 'customer_invoice'";
305 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."user as u ON u.rowid = f.fk_user_author";
306 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."accounting_account as aa ON aa.account_number = b.numero_compte AND aa.entity = b.entity AND aa.fk_pcg_version = '".$db->escape($charofaccountstring)."'";
307 $sql .= " WHERE 1=1";
308 if ($date_start && $date_end) {
309 $sql .= " AND b.doc_date >= '".$db->idate($date_start)."' AND b.doc_date <= '".$db->idate($date_end)."'";
310 }
311} // elseif ($modecompta == "BOOKKEEPINGCOLLECTED") {
312// }
313if ($modecompta == 'BOOKKEEPING') {
314 $sql .= " AND b.entity = ".((int) $conf->entity);
315 if ($socid) {
316 $sql .= " AND f.fk_soc = ".((int) $socid);
317 }
318} else {
319 $sql .= " AND f.entity IN (".getEntity('invoice').")";
320 if ($socid) {
321 $sql .= " AND f.fk_soc = ".((int) $socid);
322 }
323}
324$sql .= " GROUP BY u.rowid, u.lastname, u.firstname";
325$sql .= " ORDER BY u.rowid";
326
327$amount = array();
328$amount_ht = array();
329
330dol_syslog("cabyuser", LOG_DEBUG);
331$result = $db->query($sql);
332if ($result) {
333 $num = $db->num_rows($result);
334 $i = 0;
335 while ($i < $num) {
336 $obj = $db->fetch_object($result);
337
338 $amount_ht[$obj->rowid] = (empty($obj->amount) ? 0 : $obj->amount);
339 $amount[$obj->rowid] = $obj->amount_ttc;
340 $name[$obj->rowid] = $obj->name.' '.$obj->firstname;
341
342 $catotal_ht += (empty($obj->amount) ? 0 : $obj->amount);
343 $catotal += $obj->amount_ttc;
344 $i++;
345 }
346} else {
348}
349
350// Adding old-version payments, non-bound by table llx_paiement_facture then without User
351if ($modecompta == 'RECETTES-DEPENSES') {
352 $sql = "SELECT -1 as rowidx, '' as name, '' as firstname, sum(DISTINCT p.amount) as amount_ttc";
353 $sql .= " FROM ".MAIN_DB_PREFIX."bank as b";
354 $sql .= ", ".MAIN_DB_PREFIX."bank_account as ba";
355 $sql .= ", ".MAIN_DB_PREFIX."paiement as p";
356 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."paiement_facture as pf ON p.rowid = pf.fk_paiement";
357 $sql .= " WHERE pf.rowid IS NULL";
358 $sql .= " AND p.fk_bank = b.rowid";
359 $sql .= " AND b.fk_account = ba.rowid";
360 $sql .= " AND ba.entity IN (".getEntity('bank_account').")";
361 if ($date_start && $date_end) {
362 $sql .= " AND p.datep >= '".$db->idate($date_start)."' AND p.datep <= '".$db->idate($date_end)."'";
363 }
364 $sql .= " GROUP BY rowidx, name, firstname";
365 $sql .= " ORDER BY rowidx";
366
367 $result = $db->query($sql);
368 if ($result) {
369 $num = $db->num_rows($result);
370 $i = 0;
371 while ($i < $num) {
372 $obj = $db->fetch_object($result);
373 $amount[$obj->rowidx] = $obj->amount_ttc;
374 $name[$obj->rowidx] = $obj->name.' '.$obj->firstname;
375 $catotal += $obj->amount_ttc;
376 $i++;
377 }
378 } else {
380 }
381}
382
383$moreforfilter = '';
384
385print '<div class="div-table-responsive">';
386print '<table class="tagtable liste'.($moreforfilter ? " listwithfilterbefore" : "").'">'."\n";
387
388print "<tr class=\"liste_titre\">";
390 $langs->trans("User"),
391 $_SERVER["PHP_SELF"],
392 "name",
393 "",
394 $paramslink,
395 "",
396 $sortfield,
397 $sortorder
398);
399if ($modecompta == 'CREANCES-DETTES') {
401 $langs->trans('AmountHT'),
402 $_SERVER["PHP_SELF"],
403 "amount_ht",
404 "",
405 $paramslink,
406 'class="right"',
407 $sortfield,
408 $sortorder
409 );
410} else {
412}
414 $langs->trans("AmountTTC"),
415 $_SERVER["PHP_SELF"],
416 "amount_ttc",
417 "",
418 $paramslink,
419 'class="right"',
420 $sortfield,
421 $sortorder
422);
424 $langs->trans("Percentage"),
425 $_SERVER["PHP_SELF"],
426 "amount_ttc",
427 "",
428 $paramslink,
429 'class="right"',
430 $sortfield,
431 $sortorder
432);
434 $langs->trans("OtherStatistics"),
435 $_SERVER["PHP_SELF"],
436 "",
437 "",
438 "",
439 'align="center" width="20%"'
440);
441print "</tr>\n";
442
443if (count($amount)) {
444 $arrayforsort = $name;
445
446 // We define arrayforsort
447 if ($sortfield == 'name' && $sortorder == 'asc') {
448 asort($name);
449 $arrayforsort = $name;
450 }
451 if ($sortfield == 'name' && $sortorder == 'desc') {
452 arsort($name);
453 $arrayforsort = $name;
454 }
455 if ($sortfield == 'amount_ht' && $sortorder == 'asc') {
456 asort($amount_ht);
457 $arrayforsort = $amount_ht;
458 }
459 if ($sortfield == 'amount_ht' && $sortorder == 'desc') {
460 arsort($amount_ht);
461 $arrayforsort = $amount_ht;
462 }
463 if ($sortfield == 'amount_ttc' && $sortorder == 'asc') {
464 asort($amount);
465 $arrayforsort = $amount;
466 }
467 if ($sortfield == 'amount_ttc' && $sortorder == 'desc') {
468 arsort($amount);
469 $arrayforsort = $amount;
470 }
471
472 $i = 0;
473
474 foreach ($arrayforsort as $key => $value) {
475 print '<tr class="oddeven">';
476
477 // Third party
478 $fullname = $name[$key];
479 if ($key >= 0) {
480 $linkname = '<a href="'.DOL_URL_ROOT.'/user/card.php?id='.$key.'">'.img_object($langs->trans("ShowUser"), 'user').' '.$fullname.'</a>';
481 } else {
482 $linkname = $langs->trans("PaymentsNotLinkedToUser");
483 }
484 print "<td>".$linkname."</td>\n";
485
486 // Amount w/o VAT
487 print '<td class="right">';
488 if ($modecompta == 'RECETTES-DEPENSES') {
489 if ($key > 0) {
490 //print '<a href="'.DOL_URL_ROOT.'/compta/paiement/list.php?userid='.$key.'">';
491 } else {
492 //print '<a href="'.DOL_URL_ROOT.'/compta/paiement/list.php?userid=-1">';
493 }
494 } elseif ($modecompta == 'CREANCES-DETTES' || $modecompta == 'BOOKKEEPING') {
495 if ($key > 0) {
496 print '<a href="'.DOL_URL_ROOT.'/compta/facture/list.php?userid='.$key.'">';
497 } else {
498 //print '<a href="#">';
499 }
500 print price($amount_ht[$key]);
501 if ($key > 0) {
502 print '</a>';
503 }
504 }
505 print '</td>';
506
507 // Amount with VAT
508 print '<td class="right">';
509 if ($modecompta == 'RECETTES-DEPENSES') {
510 if ($key > 0) {
511 //print '<a href="'.DOL_URL_ROOT.'/compta/paiement/list.php?userid='.$key.'">';
512 } else {
513 //print '<a href="'.DOL_URL_ROOT.'/compta/paiement/list.php?userid=-1">';
514 }
515 } elseif ($modecompta == 'CREANCES-DETTES') {
516 if ($key > 0) {
517 print '<a href="'.DOL_URL_ROOT.'/compta/facture/list.php?userid='.$key.'">';
518 } else {
519 //print '<a href="#">';
520 }
521 }
522 print price($amount[$key]);
523 if ($modecompta == 'RECETTES-DEPENSES') {
524 if ($key > 0) {
525 //print '</a>';
526 } else {
527 //print '</a>';
528 }
529 } elseif ($modecompta == 'CREANCES-DETTES') {
530 if ($key > 0) {
531 print '</a>';
532 }
533 }
534 print '</td>';
535
536 // Percent
537 print '<td class="right">'.($catotal > 0 ? round(100 * $amount[$key] / $catotal, 2).'%' : '&nbsp;').'</td>';
538
539 // Other stats
540 print '<td class="center">';
541 if (isModEnabled("propal") && $key > 0) {
542 print '&nbsp;<a href="'.DOL_URL_ROOT.'/comm/propal/stats/index.php?userid='.$key.'">'.img_picto($langs->trans("ProposalStats"), "stats").'</a>&nbsp;';
543 }
544 if (isModEnabled('order') && $key > 0) {
545 print '&nbsp;<a href="'.DOL_URL_ROOT.'/commande/stats/index.php?userid='.$key.'">'.img_picto($langs->trans("OrderStats"), "stats").'</a>&nbsp;';
546 }
547 if (isModEnabled('invoice') && $key > 0) {
548 print '&nbsp;<a href="'.DOL_URL_ROOT.'/compta/facture/stats/index.php?userid='.$key.'">'.img_picto($langs->trans("InvoiceStats"), "stats").'</a>&nbsp;';
549 }
550 print '</td>';
551 print "</tr>\n";
552 $i++;
553 }
554
555 // Total
556 print '<tr class="liste_total">';
557 print '<td>'.$langs->trans("Total").'</td>';
558 if ($modecompta == 'RECETTES-DEPENSES') {
559 print '<td></td>';
560 } else {
561 print '<td class="right">'.price($catotal_ht).'</td>';
562 }
563 print '<td class="right">'.price($catotal).'</td>';
564 print '<td>&nbsp;</td>';
565 print '<td>&nbsp;</td>';
566 print '</tr>';
567
568 $db->free($result);
569}
570
571print "</table>";
572print '</div>';
573print '</form>';
574
575// End of page
576llxFooter();
577$db->close();
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
Definition wrapper.php:91
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:73
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:605
dol_time_plus_duree($time, $duration_value, $duration_unit, $ruleforendofmonth=0)
Add a delay to a date.
Definition date.lib.php:126
dol_get_last_day($year, $month=12, $gm=false)
Return GMT time for last day of a month or year.
Definition date.lib.php:624
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $db
API class for accounts.
$date_start
Variables from include:
dol_now($mode='gmt')
Return date for now.
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...
dol_getIdFromCode($db, $key, $tablename, $fieldkey='code', $fieldid='id', $entityfilter=0, $filters='', $useCache=true)
Return an id or code from a code or id.
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.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0, $nodefault=0)
Return value of a param into GET or POST supervariable.
GETPOSTINT($paramname, $method=0, $nodefault=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false, $decorate=0)
Output date in a string format according to outputlangs (or langs if not defined).
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
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.
print_liste_field_titre($name, $file="", $field="", $begin="", $param="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
img_previous($titlealt='default', $moreatt='')
Show previous logo.
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.
info_admin($text, $infoonimgalt=0, $nodiv=0, $admin='1', $morecss='hideonsmartphone', $textfordropdown='', $picto='', $textonpictotooltip='', $cssfordropdown='info_admin')
Show information in HTML for admin users or standard users.
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.