30require
'../../main.inc.php';
31require_once DOL_DOCUMENT_ROOT.
'/core/lib/bank.lib.php';
32require_once DOL_DOCUMENT_ROOT.
'/compta/bank/class/account.class.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/class/dolgraph.class.php';
44$langs->loadLangs(array(
'banks',
'categories'));
53$hookmanager->initHooks(array(
'bankannualreport',
'globalcard'));
56$fieldvalue = (!empty($id) ?
$id : (!empty($ref) ? $ref :
''));
57$fieldtype = (!empty($ref) ?
'ref' :
'rowid');
59 $socid = $user->socid;
61$result =
restrictedArea($user,
'banque', $fieldvalue,
'bank_account&bank_account',
'',
'', $fieldtype);
63$year_start =
GETPOST(
'year_start');
67 $year_start = $year_current - 2;
68 $year_end = $year_current;
70 $year_end = $year_start + 2;
83if ($id > 0 && !preg_match(
'/,/', $id)) {
88 $result =
$object->fetch(0, $ref);
96$title =
$object->ref.
' - '.$langs->trans(
"IOMonthlyReporting");
103$sql =
"SELECT SUM(b.amount)";
104$sql .=
", date_format(b.dateo,'%Y-%m') as dm";
105$sql .=
" FROM ".MAIN_DB_PREFIX.
"bank as b";
106$sql .=
", ".MAIN_DB_PREFIX.
"bank_account as ba";
107$sql .=
" WHERE b.fk_account = ba.rowid";
108$sql .=
" AND ba.entity IN (".getEntity(
'bank_account').
")";
109$sql .=
" AND b.amount >= 0";
111 $sql .=
" AND b.fk_account IN (".$db->sanitize($db->escape($id)).
")";
113$sql .=
" GROUP BY dm";
115$resql = $db->query($sql);
119 $num = $db->num_rows($resql);
122 $row = $db->fetch_row($resql);
123 $encaiss[$row[1]] = $row[0];
130$sql =
"SELECT SUM(b.amount)";
131$sql .=
", date_format(b.dateo,'%Y-%m') as dm";
132$sql .=
" FROM ".MAIN_DB_PREFIX.
"bank as b";
133$sql .=
", ".MAIN_DB_PREFIX.
"bank_account as ba";
134$sql .=
" WHERE b.fk_account = ba.rowid";
135$sql .=
" AND ba.entity IN (".getEntity(
'bank_account').
")";
136$sql .=
" AND b.amount <= 0";
138 $sql .=
" AND b.fk_account IN (".$db->sanitize($db->escape($id)).
")";
140$sql .=
" GROUP BY dm";
142$resql = $db->query($sql);
144 $num = $db->num_rows($resql);
147 $row = $db->fetch_row($resql);
148 $decaiss[$row[1]] = -$row[0];
158print
dol_get_fiche_head($head,
'annual', $langs->trans(
"FinancialAccount"), 0,
'account');
160$title = $langs->trans(
"FinancialAccount").
" : ".
$object->label;
161$link = ($year_start ?
'<a href="'.$_SERVER[
"PHP_SELF"].
'?account='.
$object->id.
'&year_start='.($year_start - 1).
'">'.
img_previous(
'',
'class="valignbottom"').
"</a> ".$langs->trans(
"Year").
' <a href="'.$_SERVER[
"PHP_SELF"].
'?account='.
$object->id.
'&year_start='.($year_start + 1).
'">'.
img_next(
'',
'class="valignbottom"').
'</a>' :
'');
163$linkback =
'<a href="'.DOL_URL_ROOT.
'/compta/bank/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
168 if (!preg_match(
'/,/', $id)) {
169 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref,
'', 0,
'',
'', 1);
171 $bankaccount =
new Account($db);
172 $listid = explode(
',', $id);
173 foreach ($listid as $key => $aId) {
174 $bankaccount->fetch($aId);
175 $bankaccount->label = $bankaccount->ref;
176 print $bankaccount->getNomUrl(1);
177 if ($key < (count($listid) - 1)) {
183 print $langs->trans(
"AllAccounts");
192print
'<div class="div-table-responsive">';
193print
'<table class="noborder centpercent">';
195print
'<tr class="liste_titre"><td class="liste_titre">'.$langs->trans(
"Month").
'</td>';
196for ($annee = $year_start; $annee <= $year_end; $annee++) {
197 print
'<td align="center" width="20%" colspan="2" class="liste_titre borderrightlight">'.$annee.
'</td>';
201print
'<tr class="liste_titre">';
202print
'<td class="liste_titre"> </td>';
203for ($annee = $year_start; $annee <= $year_end; $annee++) {
204 print
'<td class="liste_titre" align="center">'.$langs->trans(
"Debit").
'</td><td class="liste_titre" align="center">'.$langs->trans(
"Credit").
'</td>';
208for ($annee = $year_start; $annee <= $year_end; $annee++) {
209 $totsorties[$annee] = 0;
210 $totentrees[$annee] = 0;
213for ($mois = 1; $mois < 13; $mois++) {
214 print
'<tr class="oddeven">';
215 print
"<td>".dol_print_date(
dol_mktime(1, 1, 1, $mois, 1, 2000),
"%B").
"</td>";
217 for ($annee = $year_start; $annee <= $year_end; $annee++) {
218 $case = sprintf(
"%04d-%02d", $annee, $mois);
220 print
'<td class="right" width="10%"> ';
221 if (isset($decaiss[$case]) && $decaiss[$case] > 0) {
222 print
price($decaiss[$case]);
223 $totsorties[$annee] += $decaiss[$case];
227 print
'<td class="right borderrightlight" width="10%"> ';
228 if (isset($encaiss[$case]) && $encaiss[$case] > 0) {
229 print
price($encaiss[$case]);
230 $totentrees[$annee] += $encaiss[$case];
238print
'<tr class="liste_total"><td><b>'.$langs->trans(
"Total").
"</b></td>";
239for ($annee = $year_start; $annee <= $year_end; $annee++) {
240 print
'<td class="right nowraponall"><b>'. (isset($totsorties[$annee]) ?
price($totsorties[$annee]) :
'') .
'</b></td>';
241 print
'<td class="right nowraponall"><b>'. (isset($totentrees[$annee]) ?
price($totentrees[$annee]) :
'') .
'</b></td>';
254$sql =
"SELECT SUM(b.amount) as total";
255$sql .=
" FROM ".MAIN_DB_PREFIX.
"bank as b";
256$sql .=
", ".MAIN_DB_PREFIX.
"bank_account as ba";
257$sql .=
" WHERE b.fk_account = ba.rowid";
258$sql .=
" AND ba.entity IN (".getEntity(
'bank_account').
")";
260 $sql .=
" AND b.fk_account IN (".$db->sanitize($db->escape($id)).
")";
263$resql = $db->query($sql);
265 $obj = $db->fetch_object($resql);
267 $balance = $obj->total;
273print
'<table class="noborder centpercent">';
276print
'<tr class="liste_total"><td><b>'.$langs->trans(
"CurrentBalance").
"</b></td>";
277print
'<td colspan="'.($nbcol).
'" class="right">'.
price($balance).
'</td>';
288 $langs->load(
"errors");
293 $sql =
"SELECT MIN(b.datev) as min, MAX(b.datev) as max";
294 $sql .=
" FROM ".MAIN_DB_PREFIX.
"bank as b";
295 $sql .=
", ".MAIN_DB_PREFIX.
"bank_account as ba";
296 $sql .=
" WHERE b.fk_account = ba.rowid";
297 $sql .=
" AND ba.entity IN (".getEntity(
'bank_account').
")";
298 if ($id &&
GETPOST(
"option") !=
'all') {
299 $sql .=
" AND b.fk_account IN (".$db->sanitize($id).
")";
302 $resql = $db->query($sql);
304 $num = $db->num_rows($resql);
305 $obj = $db->fetch_object($resql);
306 $min = $db->jdate($obj->min);
307 $max = $db->jdate($obj->max);
308 $log =
"graph.php: min=".$min.
" max=".$max;
317 '@phan-var-force array<array<string,int|float>> $tblyear';
318 $tblyear[0] = array();
319 $tblyear[1] = array();
320 $tblyear[2] = array();
322 for ($annee = 0; $annee < 3; $annee++) {
323 $sql =
"SELECT date_format(b.datev,'%m')";
324 $sql .=
", SUM(b.amount)";
325 $sql .=
" FROM ".MAIN_DB_PREFIX.
"bank as b";
326 $sql .=
", ".MAIN_DB_PREFIX.
"bank_account as ba";
327 $sql .=
" WHERE b.fk_account = ba.rowid";
328 $sql .=
" AND ba.entity IN (".getEntity(
'bank_account').
")";
329 $sql .=
" AND b.datev >= '".($year - $annee).
"-01-01 00:00:00'";
330 $sql .=
" AND b.datev <= '".($year - $annee).
"-12-31 23:59:59'";
331 $sql .=
" AND b.amount > 0";
332 if ($id &&
GETPOST(
"option") !=
'all') {
333 $sql .=
" AND b.fk_account IN (".$db->sanitize($id).
")";
335 $sql .=
" GROUP BY date_format(b.datev,'%m');";
337 $resql = $db->query($sql);
339 $num = $db->num_rows($resql);
342 $row = $db->fetch_row($resql);
343 $tblyear[$annee][$row[0]] = $row[1];
353 $data_year_0 = array();
354 $data_year_1 = array();
355 $data_year_2 = array();
358 for ($i = 0; $i < 12; $i++) {
359 $data_year_0[$i] = isset($tblyear[0][substr(
"0".($i + 1), -2)]) ? $tblyear[0][substr(
"0".($i + 1), -2)] : 0;
360 $data_year_1[$i] = isset($tblyear[1][substr(
"0".($i + 1), -2)]) ? $tblyear[1][substr(
"0".($i + 1), -2)] : 0;
361 $data_year_2[$i] = isset($tblyear[2][substr(
"0".($i + 1), -2)]) ? $tblyear[2][substr(
"0".($i + 1), -2)] : 0;
362 $labels[$i] = $langs->transnoentitiesnoconv(
"MonthVeryShort".sprintf(
"%02d", $i + 1));
367 $file =
$conf->bank->dir_temp.
"/credmovement".
$id.
"-".$year.
".png";
368 $fileurl = DOL_URL_ROOT.
'/viewimage.php?modulepart=banque_temp&file='.
"/credmovement".$id.
"-".$year.
".png";
369 $title = $langs->transnoentities(
"Credit").
' - '.$langs->transnoentities(
"Year").
': '.($year - 2).
' - '.($year - 1).
" - ".$year;
370 $graph_datas = array();
371 for ($i = 0; $i < 12; $i++) {
372 $graph_datas[$i] = array($labels[$i], $data_year_0[$i], $data_year_1[$i], $data_year_2[$i]);
376 $px1->SetData($graph_datas);
377 $px1->SetLegend(array(($year), ($year - 1), ($year - 2)));
378 $px1->SetLegendWidthMin(180);
379 $px1->SetMaxValue($px1->GetCeilMaxValue() < 0 ? 0 : $px1->GetCeilMaxValue());
380 $px1->SetMinValue($px1->GetFloorMinValue() > 0 ? 0 : $px1->GetFloorMinValue());
381 $px1->SetTitle($title);
382 $px1->SetWidth($WIDTH);
383 $px1->SetHeight($HEIGHT);
384 $px1->SetType(array(
'line',
'line',
'line'));
386 $px1->setBgColor(
'onglet');
387 $px1->setBgColorGrid(array(255, 255, 255));
388 $px1->SetHorizTickIncrement(1);
389 $px1->draw($file, $fileurl);
391 $show1 = $px1->show();
401 $tblyear[0] = array();
402 $tblyear[1] = array();
403 $tblyear[2] = array();
405 for ($annee = 0; $annee < 3; $annee++) {
406 $sql =
"SELECT date_format(b.datev,'%m')";
407 $sql .=
", SUM(b.amount)";
408 $sql .=
" FROM ".MAIN_DB_PREFIX.
"bank as b";
409 $sql .=
", ".MAIN_DB_PREFIX.
"bank_account as ba";
410 $sql .=
" WHERE b.fk_account = ba.rowid";
411 $sql .=
" AND ba.entity IN (".getEntity(
'bank_account').
")";
412 $sql .=
" AND b.datev >= '".($year - $annee).
"-01-01 00:00:00'";
413 $sql .=
" AND b.datev <= '".($year - $annee).
"-12-31 23:59:59'";
414 $sql .=
" AND b.amount < 0";
415 if ($id &&
GETPOST(
"option") !=
'all') {
416 $sql .=
" AND b.fk_account IN (".$db->sanitize($id).
")";
418 $sql .=
" GROUP BY date_format(b.datev,'%m');";
420 $resql = $db->query($sql);
422 $num = $db->num_rows($resql);
425 $row = $db->fetch_row($resql);
426 $tblyear[$annee][$row[0]] = abs($row[1]);
436 $data_year_0 = array();
437 $data_year_1 = array();
438 $data_year_2 = array();
440 for ($i = 0; $i < 12; $i++) {
441 $data_year_0[$i] = isset($tblyear[0][substr(
"0".($i + 1), -2)]) ? $tblyear[0][substr(
"0".($i + 1), -2)] : 0;
442 $data_year_1[$i] = isset($tblyear[1][substr(
"0".($i + 1), -2)]) ? $tblyear[1][substr(
"0".($i + 1), -2)] : 0;
443 $data_year_2[$i] = isset($tblyear[2][substr(
"0".($i + 1), -2)]) ? $tblyear[2][substr(
"0".($i + 1), -2)] : 0;
444 $labels[$i] = $langs->transnoentitiesnoconv(
"MonthVeryShort".sprintf(
"%02d", $i + 1));
448 $file =
$conf->bank->dir_temp.
"/debmovement".
$id.
"-".$year.
".png";
449 $fileurl = DOL_URL_ROOT.
'/viewimage.php?modulepart=banque_temp&file='.
"/debmovement".$id.
"-".$year.
".png";
450 $title = $langs->transnoentities(
"Debit").
' - '.$langs->transnoentities(
"Year").
': '.($year - 2).
' - '.($year - 1).
" - ".$year;
451 $graph_datas = array();
452 for ($i = 0; $i < 12; $i++) {
453 $graph_datas[$i] = array($labels[$i], $data_year_0[$i], $data_year_1[$i], $data_year_2[$i]);
457 $px2->SetData($graph_datas);
458 $px2->SetLegend(array(($year), ($year - 1), ($year - 2)));
459 $px2->SetLegendWidthMin(180);
460 $px2->SetMaxValue($px2->GetCeilMaxValue() < 0 ? 0 : $px2->GetCeilMaxValue());
461 $px2->SetMinValue($px2->GetFloorMinValue() > 0 ? 0 : $px2->GetFloorMinValue());
462 $px2->SetTitle($title);
463 $px2->SetWidth($WIDTH);
464 $px2->SetHeight($HEIGHT);
465 $px2->SetType(array(
'line',
'line',
'line'));
467 $px2->setBgColor(
'onglet');
468 $px2->setBgColorGrid(array(255, 255, 255));
469 $px2->SetHorizTickIncrement(1);
470 $px2->draw($file, $fileurl);
472 $show2 = $px2->show();
480 print
'<div class="fichecenter"><div class="fichehalfleft"><div align="center">';
482 print
'</div></div><div class="fichehalfright"><div align="center">';
484 print
'</div></div></div>';
485 print
'<div class="clearboth"></div>';
489print
"\n</div><br>\n";
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
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.
bank_prepare_head(Account $object)
Prepare array with list of tabs.
Class to manage bank accounts.
static getDefaultGraphSizeForStats($direction, $defaultsize='')
getDefaultGraphSizeForStats
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...
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
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.
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=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
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.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
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.