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';
44$langs->load(
"accountancy");
49if ($user->socid > 0) {
50 $socid = $user->socid;
52$hookmanager->initHooks([
'cabyuserreportlist']);
57 $result =
restrictedArea($user,
'accounting',
'',
'',
'comptarapport');
62 $modecompta =
GETPOST(
"modecompta");
65$sortorder =
GETPOST(
"sortorder",
'aZ09comma');
66$sortfield =
GETPOST(
"sortfield",
'aZ09comma');
78$date_startmonth =
GETPOSTINT(
"date_startmonth");
86 $year_start = $year_current;
88 $year_current = $year;
95if (empty($date_start) || empty($date_end)) {
100 $year_end = $year_start;
101 $month_end = $month_start;
103 if (!
GETPOST(
'year') && $month_start > $month_current) {
107 $month_end = $month_start - 1;
108 if ($month_end < 1) {
138$year_start = $tmps[
'year'];
140$year_end = $tmpe[
'year'];
141$nbofyear = ($year_end - $year_start) + 1;
143$commonparams = array();
144$commonparams[
'modecompta'] = $modecompta;
145$commonparams[
'sortorder'] = $sortorder;
146$commonparams[
'sortfield'] = $sortfield;
148$headerparams = array();
149if (!empty($date_startyear)) {
150 $headerparams[
'date_startyear'] = $date_startyear;
152if (!empty($date_startmonth)) {
153 $headerparams[
'date_startmonth'] = $date_startmonth;
155if (!empty($date_startday)) {
156 $headerparams[
'date_startday'] = $date_startday;
158if (!empty($date_endyear)) {
159 $headerparams[
'date_endyear'] = $date_endyear;
161if (!empty($date_endmonth)) {
162 $headerparams[
'date_endmonth'] = $date_endmonth;
164if (!empty($date_endday)) {
165 $headerparams[
'date_endday'] = $date_endday;
168 $headerparams[
'q'] = $q;
171$tableparams = array();
174$allparams = array_merge($commonparams, $headerparams, $tableparams);
175$headerparams = array_merge($commonparams, $headerparams);
176$tableparams = array_merge($commonparams, $tableparams);
179foreach ($allparams as $key => $value) {
180 $paramslink .=
'&'.$key.
'='.$value;
191if ($modecompta ==
"BOOKKEEPINGCOLLECTED") {
192 $modecompta =
"RECETTES-DEPENSES";
203if ($modecompta ==
"CREANCES-DETTES") {
204 $name = $langs->trans(
"Turnover").
', '.$langs->trans(
"ByUserAuthorOfInvoice");
205 $calcmode = $langs->trans(
"CalcModeDebt");
207 $description = $langs->trans(
"RulesCADue");
209 $description .= $langs->trans(
"DepositsAreNotIncluded");
211 $description .= $langs->trans(
"DepositsAreIncluded");
215} elseif ($modecompta ==
"RECETTES-DEPENSES") {
216 $name = $langs->trans(
"TurnoverCollected").
', '.$langs->trans(
"ByUserAuthorOfInvoice");
217 $calcmode = $langs->trans(
"CalcModePayment");
219 $description = $langs->trans(
"RulesCAIn");
220 $description .= $langs->trans(
"DepositsAreIncluded");
223} elseif ($modecompta ==
"BOOKKEEPING") {
224 $name = $langs->trans(
"Turnover").
', '.$langs->trans(
"ByUserAuthorOfInvoice");
225 $calcmode = $langs->trans(
"CalcModeBookkeeping");
226 $description = $langs->trans(
"RulesCADue");
228} elseif ($modecompta ==
"BOOKKEEPINGCOLLECTED") {
231$period = $form->selectDate($date_start,
'date_start', 0, 0, 0,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'',
'',
'tzserver');
233$period .= $form->selectDate($date_end,
'date_end', 0, 0, 0,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'',
'',
'tzserver');
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>';
241if (!empty($modecompta)) {
242 $moreparam[
'modecompta'] = $modecompta;
245report_header($name, $namelink, $period, $periodlink, $description, $builddate, $exportlink, $moreparam, $calcmode);
247if (
isModEnabled(
'accounting') && $modecompta !=
'BOOKKEEPING') {
248 print
info_admin($langs->trans(
"WarningReportNotReliable"), 0, 0,
'1');
255print
'<form method="POST" action="'.dolBuildUrl($_SERVER[
"PHP_SELF"]).
'">';
256print
'<input type="hidden" name="token" value="'.newToken().
'">'.
"\n";
258foreach ($headerparams as $key => $value) {
259 print
'<input type="hidden" name="'.$key.
'" value="'.$value.
'">';
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)";
272 $sql .=
" AND f.type IN (0,1,2,5)";
274 $sql .=
" AND f.type IN (0,1,2,3,5)";
276 if ($date_start && $date_end) {
277 $sql .=
" AND f.datef >= '".$db->idate($date_start).
"' AND f.datef <= '".
$db->idate($date_end).
"'";
279} elseif ($modecompta ==
"RECETTES-DEPENSES") {
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).
"'";
293} elseif ($modecompta ==
"BOOKKEEPING") {
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).
"'";
313if ($modecompta ==
'BOOKKEEPING') {
314 $sql .=
" AND b.entity = ".((int)
$conf->entity);
316 $sql .=
" AND f.fk_soc = ".((int) $socid);
319 $sql .=
" AND f.entity IN (".getEntity(
'invoice').
")";
321 $sql .=
" AND f.fk_soc = ".((int) $socid);
324$sql .=
" GROUP BY u.rowid, u.lastname, u.firstname";
325$sql .=
" ORDER BY u.rowid";
331$result =
$db->query($sql);
333 $num =
$db->num_rows($result);
336 $obj =
$db->fetch_object($result);
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;
342 $catotal_ht += (empty($obj->amount) ? 0 : $obj->amount);
343 $catotal += $obj->amount_ttc;
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).
"'";
364 $sql .=
" GROUP BY rowidx, name, firstname";
365 $sql .=
" ORDER BY rowidx";
367 $result =
$db->query($sql);
369 $num =
$db->num_rows($result);
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;
385print
'<div class="div-table-responsive">';
386print
'<table class="tagtable liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
388print
"<tr class=\"liste_titre\">";
390 $langs->trans(
"User"),
391 $_SERVER[
"PHP_SELF"],
399if ($modecompta ==
'CREANCES-DETTES') {
401 $langs->trans(
'AmountHT'),
402 $_SERVER[
"PHP_SELF"],
414 $langs->trans(
"AmountTTC"),
415 $_SERVER[
"PHP_SELF"],
424 $langs->trans(
"Percentage"),
425 $_SERVER[
"PHP_SELF"],
434 $langs->trans(
"OtherStatistics"),
435 $_SERVER[
"PHP_SELF"],
439 'align="center" width="20%"'
444 $arrayforsort = $name;
447 if ($sortfield ==
'name' && $sortorder ==
'asc') {
449 $arrayforsort = $name;
451 if ($sortfield ==
'name' && $sortorder ==
'desc') {
453 $arrayforsort = $name;
455 if ($sortfield ==
'amount_ht' && $sortorder ==
'asc') {
457 $arrayforsort = $amount_ht;
459 if ($sortfield ==
'amount_ht' && $sortorder ==
'desc') {
461 $arrayforsort = $amount_ht;
463 if ($sortfield ==
'amount_ttc' && $sortorder ==
'asc') {
465 $arrayforsort = $amount;
467 if ($sortfield ==
'amount_ttc' && $sortorder ==
'desc') {
469 $arrayforsort = $amount;
474 foreach ($arrayforsort as $key => $value) {
475 print
'<tr class="oddeven">';
478 $fullname = $name[$key];
480 $linkname =
'<a href="'.DOL_URL_ROOT.
'/user/card.php?id='.$key.
'">'.
img_object($langs->trans(
"ShowUser"),
'user').
' '.$fullname.
'</a>';
482 $linkname = $langs->trans(
"PaymentsNotLinkedToUser");
484 print
"<td>".$linkname.
"</td>\n";
487 print
'<td class="right">';
488 if ($modecompta ==
'RECETTES-DEPENSES') {
494 } elseif ($modecompta ==
'CREANCES-DETTES' || $modecompta ==
'BOOKKEEPING') {
496 print
'<a href="'.DOL_URL_ROOT.
'/compta/facture/list.php?userid='.$key.
'">';
500 print
price($amount_ht[$key]);
508 print
'<td class="right">';
509 if ($modecompta ==
'RECETTES-DEPENSES') {
515 } elseif ($modecompta ==
'CREANCES-DETTES') {
517 print
'<a href="'.DOL_URL_ROOT.
'/compta/facture/list.php?userid='.$key.
'">';
522 print
price($amount[$key]);
523 if ($modecompta ==
'RECETTES-DEPENSES') {
529 } elseif ($modecompta ==
'CREANCES-DETTES') {
537 print
'<td class="right">'.($catotal > 0 ? round(100 * $amount[$key] / $catotal, 2).
'%' :
' ').
'</td>';
540 print
'<td class="center">';
542 print
' <a href="'.DOL_URL_ROOT.
'/comm/propal/stats/index.php?userid='.$key.
'">'.
img_picto($langs->trans(
"ProposalStats"),
"stats").
'</a> ';
545 print
' <a href="'.DOL_URL_ROOT.
'/commande/stats/index.php?userid='.$key.
'">'.
img_picto($langs->trans(
"OrderStats"),
"stats").
'</a> ';
548 print
' <a href="'.DOL_URL_ROOT.
'/compta/facture/stats/index.php?userid='.$key.
'">'.
img_picto($langs->trans(
"InvoiceStats"),
"stats").
'</a> ';
556 print
'<tr class="liste_total">';
557 print
'<td>'.$langs->trans(
"Total").
'</td>';
558 if ($modecompta ==
'RECETTES-DEPENSES') {
561 print
'<td class="right">'.price($catotal_ht).
'</td>';
563 print
'<td class="right">'.price($catotal).
'</td>';
564 print
'<td> </td>';
565 print
'<td> </td>';
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
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.
dol_get_first_day($year, $month=1, $gm=false)
Return GMT time for first day of a month or year.
dol_time_plus_duree($time, $duration_value, $duration_unit, $ruleforendofmonth=0)
Add a delay to a date.
dol_get_last_day($year, $month=12, $gm=false)
Return GMT time for last day of a month or year.
$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.