dolibarr 21.0.0-beta
account_statement_document.php
1<?php
2/* Copyright (C) 2003-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005 Marc Barilley / Ocebo <marc@ocebo.com>
5 * Copyright (C) 2005-2017 Regis Houssin <regis.houssin@inodbox.com>
6 * Copyright (C) 2019 Nicolas ZABOURI <info@inovea-conseil.com>
7 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 */
22
28require '../../main.inc.php';
29require_once DOL_DOCUMENT_ROOT."/core/lib/bank.lib.php";
30require_once DOL_DOCUMENT_ROOT."/core/lib/files.lib.php";
31require_once DOL_DOCUMENT_ROOT."/core/lib/images.lib.php";
32require_once DOL_DOCUMENT_ROOT."/core/class/html.formfile.class.php";
33require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
34
43// Load translation files required by the page
44$langs->loadLangs(array('banks', 'companies', 'other'));
45
46$id = (GETPOSTINT('id') ? GETPOSTINT('id') : GETPOSTINT('account'));
47$ref = GETPOST('ref', 'alpha');
48$action = GETPOST('action', 'aZ09');
49$confirm = GETPOST('confirm', 'alpha');
50$numref = (GETPOST('num', 'alpha') ? GETPOST('num', 'alpha') : GETPOST('sectionid', 'alpha'));
51
52// Security check
53if ($user->socid) {
54 $action = '';
55 $socid = $user->socid;
56}
57if ($user->socid) {
58 $socid = $user->socid;
59}
60
61// Get parameters
62$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
63$sortfield = GETPOST('sortfield', 'aZ09comma');
64$sortorder = GETPOST('sortorder', 'aZ09comma');
65$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT('page');
66if (empty($page) || $page < 0 || GETPOST('button_search', 'alpha') || GETPOST('button_removefilter', 'alpha')) {
67 // If $page is not defined, or '' or -1 or if we click on clear filters
68 $page = 0;
69}
70$offset = $limit * $page;
71$pageprev = $page - 1;
72$pagenext = $page + 1;
73if (!$sortorder) {
74 $sortorder = "ASC";
75}
76if (!$sortfield) {
77 $sortfield = "name";
78}
79
80$object = new Account($db);
81if ($id > 0 || !empty($ref)) {
82 $result = $object->fetch($id, $ref);
83 $account = $object->id; // Force the search field on id of account
84}
85
86$result = restrictedArea($user, 'banque', $object->id, 'bank_account', '', '');
87
88// Define number of receipt to show (current, previous or next one ?)
89$found = false;
90if (GETPOST("rel") == 'prev') {
91 // Recherche valeur pour num = numero releve precedent
92 $sql = "SELECT DISTINCT(b.num_releve) as num";
93 $sql .= " FROM ".MAIN_DB_PREFIX."bank as b";
94 $sql .= " WHERE b.num_releve < '".$db->escape($numref)."'";
95 $sql .= " AND b.fk_account = ".((int) $id);
96 $sql .= " ORDER BY b.num_releve DESC";
97
98 dol_syslog("htdocs/compta/bank/releve.php", LOG_DEBUG);
99 $resql = $db->query($sql);
100 if ($resql) {
101 $numrows = $db->num_rows($resql);
102 if ($numrows > 0) {
103 $obj = $db->fetch_object($resql);
104 $numref = $obj->num;
105 $found = true;
106 }
107 }
108} elseif (GETPOST("rel") == 'next') {
109 // Recherche valeur pour num = numero releve precedent
110 $sql = "SELECT DISTINCT(b.num_releve) as num";
111 $sql .= " FROM ".MAIN_DB_PREFIX."bank as b";
112 $sql .= " WHERE b.num_releve > '".$db->escape($numref)."'";
113 $sql .= " AND b.fk_account = ".((int) $id);
114 $sql .= " ORDER BY b.num_releve ASC";
115
116 dol_syslog("htdocs/compta/bank/releve.php", LOG_DEBUG);
117 $resql = $db->query($sql);
118 if ($resql) {
119 $numrows = $db->num_rows($resql);
120 if ($numrows > 0) {
121 $obj = $db->fetch_object($resql);
122 $numref = $obj->num;
123 $found = true;
124 }
125 }
126} else {
127 // On veut le releve num
128 $found = true;
129}
130
131$permissiontoadd = $user->hasRight('banque', 'modifier'); // Used by the include of actions_dellink.inc.php
132
133
134/*
135 * Actions
136 */
137
138if (!empty($numref)) {
139 $object->fetch_thirdparty();
140 $upload_dir = $conf->bank->dir_output."/".$id."/statement/".dol_sanitizeFileName($numref);
141}
142$backtopage = $_SERVER['PHP_SELF']."?account=".urlencode((string) ($id))."&num=".urlencode((string) ($numref));
143include DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
144
145
146/*
147 * View
148 */
149
150$form = new Form($db);
151
152$title = $langs->trans("FinancialAccount").' - '.$langs->trans("Documents");
153$helpurl = "";
154llxHeader('', $title, $helpurl);
155
156if ($id > 0 || !empty($ref)) {
157 if ($object->fetch($id, $ref)) {
158 $upload_dir = $conf->bank->dir_output."/".$id."/statement/".dol_sanitizeFileName($numref);
159
160 // Onglets
161 $head = account_statement_prepare_head($object, $numref);
162 print dol_get_fiche_head($head, 'document', $langs->trans("AccountStatement"), -1, 'account');
163
164
165 // Build file list
166 $filearray = dol_dir_list($upload_dir, "files", 0, '', '\.meta$', $sortfield, (strtolower($sortorder) == 'desc' ? SORT_DESC : SORT_ASC), 1);
167 $totalsize = 0;
168 foreach ($filearray as $key => $file) {
169 $totalsize += $file['size'];
170 }
171
172 $morehtmlright = '';
173 $morehtmlright .= '<div class="pagination"><ul>';
174 $morehtmlright .= '<li class="pagination"><a class="paginationnext" href="'.$_SERVER["PHP_SELF"].'?rel=prev&amp;num='.$numref.'&amp;ve='.$ve.'&amp;account='.$object->id.'"><i class="fa fa-chevron-left" title="'.dol_escape_htmltag($langs->trans("Previous")).'"></i></a></li>';
175 $morehtmlright .= '<li class="pagination"><span class="active">'.$langs->trans("AccountStatement")." ".$numref.'</span></li>';
176 $morehtmlright .= '<li class="pagination"><a class="paginationnext" href="'.$_SERVER["PHP_SELF"].'?rel=next&amp;num='.$numref.'&amp;ve='.$ve.'&amp;account='.$object->id.'"><i class="fa fa-chevron-right" title="'.dol_escape_htmltag($langs->trans("Next")).'"></i></a></li>';
177 $morehtmlright .= '</ul></div>';
178
179 $title = $langs->trans("AccountStatement").' '.$numref.' - '.$langs->trans("BankAccount").' '.$object->getNomUrl(1, 'receipts');
180 print load_fiche_titre($title, $morehtmlright, '');
181
182 print '<div class="fichecenter">';
183 print '<div class="underbanner clearboth"></div>';
184
185 print '<table class="border tableforfield centpercent">';
186 print '<tr><td class="titlefield">'.$langs->trans("NbOfAttachedFiles").'</td><td colspan="3">'.count($filearray).'</td></tr>';
187 print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td colspan="3">'.dol_print_size($totalsize, 1, 1).'</td></tr>';
188 print "</table>\n";
189
190 print '</div>';
191
192 print dol_get_fiche_end();
193
194
195 $modulepart = 'bank';
196 $permissiontoadd = $user->hasRight('banque', 'modifier');
197 $permtoedit = $user->hasRight('banque', 'modifier');
198 $param = '&id='.$object->id.'&num='.urlencode($numref);
199 $moreparam = '&num='.urlencode($numref);
200 $relativepathwithnofile = $id."/statement/".dol_sanitizeFileName($numref)."/";
201 include DOL_DOCUMENT_ROOT.'/core/tpl/document_actions_post_headers.tpl.php';
202 } else {
203 dol_print_error($db);
204 }
205} else {
206 header('Location: index.php');
207 exit;
208}
209
210// End of page
211llxFooter();
212$db->close();
$id
Definition account.php:48
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:66
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
account_statement_prepare_head($object, $num)
Prepare array with list of tabs.
Definition bank.lib.php:233
Class to manage bank accounts.
Class to manage generation of HTML components Only common components must be here.
llxFooter()
Footer empty.
Definition document.php:107
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
Definition files.lib.php:63
dol_print_size($size, $shortvalue=0, $shortunit=0)
Return string with formatted size.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
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.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79
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.