dolibarr 20.0.0
list.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2001-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2019 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
6 * Copyright (C) 2018 Ferran Marcet <fmarcet@2byte.es>
7 * Copyright (C) 2020 Tobias Sekan <tobias.sekan@startmail.com>
8 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
9 * Copyright (C) 2024 Alexandre Spangaro <alexandre@inovea-conseil.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program. If not, see <https://www.gnu.org/licenses/>.
23 */
24
31// Load Dolibarr environment
32require '../../main.inc.php';
33require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcategory.class.php';
34require_once DOL_DOCUMENT_ROOT.'/core/lib/bank.lib.php';
35require_once DOL_DOCUMENT_ROOT.'/compta/tva/class/tva.class.php';
36require_once DOL_DOCUMENT_ROOT.'/compta/sociales/class/chargesociales.class.php';
37require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
38if (isModEnabled('accounting')) {
39 require_once DOL_DOCUMENT_ROOT.'/accountancy/class/accountingaccount.class.php';
40}
41if (isModEnabled('accounting')) {
42 require_once DOL_DOCUMENT_ROOT.'/accountancy/class/accountingjournal.class.php';
43}
44if (isModEnabled('category')) {
45 require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
46}
47
48// Load translation files required by the page
49$langs->loadLangs(array('banks', 'categories', 'accountancy', 'compta'));
50
51$action = GETPOST('action', 'aZ09');
52$massaction = GETPOST('massaction', 'alpha');
53$show_files = GETPOSTINT('show_files');
54$confirm = GETPOST('confirm', 'alpha');
55$toselect = GETPOST('toselect', 'array');
56$contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'bankaccountlist'; // To manage different context of search
57$mode = GETPOST('mode', 'aZ');
58
59$search_ref = GETPOST('search_ref', 'alpha');
60$search_label = GETPOST('search_label', 'alpha');
61$search_number = GETPOST('search_number', 'alpha');
62$search_status = GETPOST('search_status', 'alpha');
63$optioncss = GETPOST('optioncss', 'alpha');
64
65$search_category_list = "";
66if (isModEnabled('category')) {
67 $search_category_list = GETPOST("search_category_".Categorie::TYPE_ACCOUNT."_list", "array");
68}
69
70$socid = 0;
71// Security check
72if ($user->socid) {
73 $socid = $user->socid;
74}
75
76$diroutputmassaction = $conf->bank->dir_output.'/temp/massgeneration/'.$user->id;
77
78$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
79$sortfield = GETPOST('sortfield', 'aZ09comma');
80$sortorder = GETPOST('sortorder', 'aZ09comma');
81$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
82if (empty($page) || $page == -1) {
83 $page = 0;
84} // If $page is not defined, or '' or -1
85$offset = $limit * $page;
86$pageprev = $page - 1;
87$pagenext = $page + 1;
88if (!$sortfield) {
89 $sortfield = 'b.label';
90}
91if (!$sortorder) {
92 $sortorder = 'ASC';
93}
94
95// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
96$object = new Account($db);
97$extrafields = new ExtraFields($db);
98$hookmanager->initHooks(array('bankaccountlist'));
99
100// fetch optionals attributes and labels
101$extrafields->fetch_name_optionals_label($object->table_element);
102$search_array_options = $extrafields->getOptionalsFromPost($object->table_element, '', 'search_');
103
104// List of fields to search into when doing a "search in all"
105$fieldstosearchall = array(
106 'b.ref' => 'Ref',
107 'b.label' => 'Label',
108);
109
110$checkedtypetiers = 0;
111$arrayfields = array(
112 'b.ref' => array('label' => $langs->trans("BankAccounts"), 'checked' => 1, 'position' => 10),
113 'b.label' => array('label' => $langs->trans("Label"), 'checked' => 1, 'position' => 12),
114 'accountype' => array('label' => $langs->trans("Type"), 'checked' => 1, 'position' => 14),
115 'b.number' => array('label' => $langs->trans("AccountIdShort"), 'checked' => 1, 'position' => 16),
116 'b.account_number' => array('label' => $langs->trans("AccountAccounting"), 'checked' => (isModEnabled('accounting')), 'position' => 18),
117 'b.fk_accountancy_journal' => array('label' => $langs->trans("AccountancyJournal"), 'checked' => (isModEnabled('accounting')), 'position' => 20),
118 'toreconcile' => array('label' => $langs->trans("TransactionsToConciliate"), 'checked' => 1, 'position' => 50),
119 'b.currency_code' => array('label' => $langs->trans("Currency"), 'checked' => 0, 'position' => 22),
120 'b.datec' => array('label' => $langs->trans("DateCreation"), 'checked' => 0, 'position' => 500),
121 'b.tms' => array('label' => $langs->trans("DateModificationShort"), 'checked' => 0, 'position' => 500),
122 'b.clos' => array('label' => $langs->trans("Status"), 'checked' => 1, 'position' => 1000),
123 'balance' => array('label' => $langs->trans("Balance"), 'checked' => 1, 'position' => 1010),
124);
125// Extra fields
126include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_array_fields.tpl.php';
127
128$object->fields = dol_sort_array($object->fields, 'position');
129$arrayfields = dol_sort_array($arrayfields, 'position');
130'@phan-var-force array<string,array{label:string,checked?:int<0,1>,position?:int,help?:string}> $arrayfields'; // dol_sort_array looses type for Phan
131
132$permissiontoadd = $user->hasRight('banque', 'modifier');
133$permissiontodelete = $user->hasRight('banque', 'configurer');
134
135$allowed = 0;
136if ($user->hasRight('accounting', 'chartofaccount')) {
137 $allowed = 1; // Dictionary with list of banks accounting account allowed to manager of chart account
138}
139if (!$allowed) {
140 $result = restrictedArea($user, 'banque');
141}
142
143
144/*
145 * Actions
146 */
147
148if (GETPOST('cancel', 'alpha')) {
149 $action = 'list';
150 $massaction = '';
151}
152if (!GETPOST('confirmmassaction', 'alpha') && $massaction != 'presend' && $massaction != 'confirm_presend') {
153 $massaction = '';
154}
155
156$parameters = array('socid' => $socid);
157$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
158if ($reshook < 0) {
159 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
160}
161
162if (empty($reshook)) {
163 include DOL_DOCUMENT_ROOT . '/core/actions_changeselectedfields.inc.php';
164
165 // Purge search criteria
166 if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // All tests are required to be compatible with all browsers
167 $search_ref = '';
168 $search_label = '';
169 $search_number = '';
170 $search_status = '';
171 $search_category_list = array();
172 }
173
174 // Mass actions
175 $objectclass = 'Account';
176 $objectlabel = 'FinancialAccount';
177 $uploaddir = $conf->banque->dir_output;
178 include DOL_DOCUMENT_ROOT . '/core/actions_massactions.inc.php';
179}
180
181/*
182 * View
183 */
184
185$form = new FormCategory($db);
186
187$title = $langs->trans('BankAccounts');
188$help_url = 'EN:Module_Banks_and_Cash|FR:Module_Banques_et_Caisses|ES:M&oacute;dulo_Bancos_y_Cajas';
189
190// Load array of financial accounts (opened by default)
191$accounts = array();
192
193
194// Build and execute select
195// --------------------------------------------------------------------
196$sql = "SELECT b.rowid, b.label, b.courant, b.rappro, b.account_number, b.fk_accountancy_journal, b.currency_code, b.datec as date_creation, b.tms as date_modification";
197// Add fields from extrafields
198if (!empty($extrafields->attributes[$object->table_element]['label'])) {
199 foreach ($extrafields->attributes[$object->table_element]['label'] as $key => $val) {
200 $sql .= ($extrafields->attributes[$object->table_element]['type'][$key] != 'separate' ? ", ef.".$key." as options_".$key : '');
201 }
202}
203// Add fields from hooks
204$parameters = array();
205$reshook = $hookmanager->executeHooks('printFieldListSelect', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
206$sql .= $hookmanager->resPrint;
207$sql = preg_replace('/,\s*$/', '', $sql);
208
209$sqlfields = $sql; // $sql fields to remove for count total
210
211$sql .= " FROM ".MAIN_DB_PREFIX."bank_account as b";
212if (!empty($extrafields->attributes[$object->table_element]['label']) && is_array($extrafields->attributes[$object->table_element]['label']) && count($extrafields->attributes[$object->table_element]['label'])) {
213 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element."_extrafields as ef on (b.rowid = ef.fk_object)";
214}
215$sql .= " WHERE b.entity IN (".getEntity('bank_account').")";
216if ($search_status === 'opened') {
217 $sql .= " AND clos = 0";
218}
219if ($search_status === 'closed') {
220 $sql .= " AND clos = 1";
221}
222if ($search_ref != '') {
223 $sql .= natural_search('b.ref', $search_ref);
224}
225if ($search_label != '') {
226 $sql .= natural_search('b.label', $search_label);
227}
228if ($search_number != '') {
229 $sql .= natural_search('b.number', $search_number);
230}
231// Search for tag/category ($searchCategoryBankList is an array of ID)
232$searchCategoryBankList = $search_category_list;
233$searchCategoryBankOperator = 0;
234if (!empty($searchCategoryBankList)) {
235 $searchCategoryBankSqlList = array();
236 $listofcategoryid = '';
237 foreach ($searchCategoryBankList as $searchCategoryBank) {
238 if (intval($searchCategoryBank) == -2) {
239 $searchCategoryBankSqlList[] = "NOT EXISTS (SELECT ck.fk_account FROM ".MAIN_DB_PREFIX."categorie_account as ck WHERE b.rowid = ck.fk_account)";
240 } elseif (intval($searchCategoryBank) > 0) {
241 if ($searchCategoryBankOperator == 0) {
242 $searchCategoryBankSqlList[] = " EXISTS (SELECT ck.fk_account FROM ".MAIN_DB_PREFIX."categorie_account as ck WHERE b.rowid = ck.fk_account AND ck.fk_categorie = ".((int) $searchCategoryBank).")";
243 } else {
244 $listofcategoryid .= ($listofcategoryid ? ', ' : '') .((int) $searchCategoryBank);
245 }
246 }
247 }
248 if ($listofcategoryid) {
249 $searchCategoryBankSqlList[] = " EXISTS (SELECT ck.fk_account FROM ".MAIN_DB_PREFIX."categorie_account as ck WHERE b.rowid = ck.fk_account AND ck.fk_categorie IN (".$db->sanitize($listofcategoryid)."))";
250 }
251 if ($searchCategoryBankOperator == 1) {
252 if (!empty($searchCategoryBankSqlList)) {
253 $sql .= " AND (".implode(' OR ', $searchCategoryBankSqlList).")";
254 }
255 } else {
256 if (!empty($searchCategoryBankSqlList)) {
257 $sql .= " AND (".implode(' AND ', $searchCategoryBankSqlList).")";
258 }
259 }
260}
261// Add where from extra fields
262include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_sql.tpl.php';
263// Add where from hooks
264$parameters = array();
265$reshook = $hookmanager->executeHooks('printFieldListWhere', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
266$sql .= $hookmanager->resPrint;
267
268// Count total nb of records
269$nbtotalofrecords = '';
270if (!getDolGlobalInt('MAIN_DISABLE_FULL_SCANLIST')) {
271 /* The fast and low memory method to get and count full list converts the sql into a sql count */
272 $sqlforcount = preg_replace('/^'.preg_quote($sqlfields, '/').'/', 'SELECT COUNT(*) as nbtotalofrecords', $sql);
273 $sqlforcount = preg_replace('/GROUP BY .*$/', '', $sqlforcount);
274 $resql = $db->query($sqlforcount);
275 if ($resql) {
276 $objforcount = $db->fetch_object($resql);
277 $nbtotalofrecords = $objforcount->nbtotalofrecords;
278 } else {
279 dol_print_error($db);
280 }
281
282 if (($page * $limit) > $nbtotalofrecords) { // if total resultset is smaller than the paging size (filtering), goto and load page 0
283 $page = 0;
284 $offset = 0;
285 }
286 $db->free($resql);
287}
288
289// Complete request and execute it with limit
290$sql .= $db->order($sortfield, $sortorder);
291if ($limit) {
292 $sql .= $db->plimit($limit + 1, $offset);
293}
294
295$resql = $db->query($sql);
296if ($resql) {
297 $num = $db->num_rows($resql);
298 $i = 0;
299 while ($i < $num) {
300 $objp = $db->fetch_object($resql);
301 $accounts[$objp->rowid] = $objp->courant;
302 $i++;
303 }
304 $db->free($resql);
305} else {
306 dol_print_error($db);
307}
308
309
310
311llxHeader('', $title, $help_url, 0, 0, '', '', '', 'bodyforlist');
312
313
314$arrayofselected = is_array($toselect) ? $toselect : array();
315
316$param = '';
317if (!empty($mode)) {
318 $param .= '&mode='.urlencode($mode);
319}
320if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
321 $param .= '&contextpage='.urlencode($contextpage);
322}
323if ($limit > 0 && $limit != $conf->liste_limit) {
324 $param .= '&limit='.((int) $limit);
325}
326if ($optioncss != '') {
327 $param .= '&optioncss='.urlencode($optioncss);
328}
329if ($search_ref != '') {
330 $param .= '&search_ref='.urlencode($search_ref);
331}
332if ($search_label != '') {
333 $param .= '&search_label='.urlencode($search_label);
334}
335if ($search_number != '') {
336 $param .= '&search_number='.urlencode($search_number);
337}
338if ($search_status != '' && $search_status != '-1') {
339 $param .= '&search_status='.urlencode($search_status);
340}
341if ($show_files) {
342 $param .= '&show_files='.urlencode((string) ($show_files));
343}
344// Add $param from extra fields
345include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_param.tpl.php';
346// Add $param from hooks
347$parameters = array('param' => &$param);
348$reshook = $hookmanager->executeHooks('printFieldListSearchParam', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
349$param .= $hookmanager->resPrint;
350
351// List of mass actions available
352$arrayofmassactions = array(
353// 'presend'=>img_picto('', 'email', 'class="pictofixedwidth"').$langs->trans("SendByMail"),
354// 'builddoc'=>img_picto('', 'pdf', 'class="pictofixedwidth"').$langs->trans("PDFMerge"),
355);
356if (!empty($permissiontodelete)) {
357 $arrayofmassactions['predelete'] = img_picto('', 'delete', 'class="pictofixedwidth"').$langs->trans("Delete");
358}
359if (isModEnabled('category') && $user->hasRight('banque', 'modifier')) {
360 $arrayofmassactions['preaffecttag'] = img_picto('', 'category', 'class="pictofixedwidth"').$langs->trans("AffectTag");
361}
362if (in_array($massaction, array('presend', 'predelete','preaffecttag'))) {
363 $arrayofmassactions = array();
364}
365$massactionbutton = $form->selectMassAction('', $arrayofmassactions);
366
367print '<form method="POST" id="searchFormList" action="'.$_SERVER["PHP_SELF"].'">'."\n";
368if ($optioncss != '') {
369 print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
370}
371print '<input type="hidden" name="token" value="'.newToken().'">';
372print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
373print '<input type="hidden" name="action" value="list">';
374print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
375print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
376print '<input type="hidden" name="page" value="'.$page.'">';
377print '<input type="hidden" name="contextpage" value="'.$contextpage.'">';
378print '<input type="hidden" name="page_y" value="">';
379print '<input type="hidden" name="search_status" value="'.$search_status.'">';
380print '<input type="hidden" name="mode" value="'.$mode.'">';
381
382
383$newcardbutton = '';
384$newcardbutton .= dolGetButtonTitle($langs->trans('ViewList'), '', 'fa fa-bars imgforviewmode', $_SERVER["PHP_SELF"].'?mode=common'.preg_replace('/(&|\?)*mode=[^&]+/', '', $param), '', ((empty($mode) || $mode == 'common') ? 2 : 1), array('morecss' => 'reposition'));
385$newcardbutton .= dolGetButtonTitle($langs->trans('ViewKanban'), '', 'fa fa-th-list imgforviewmode', $_SERVER["PHP_SELF"].'?mode=kanban'.preg_replace('/(&|\?)*mode=[^&]+/', '', $param), '', ($mode == 'kanban' ? 2 : 1), array('morecss' => 'reposition'));
386$newcardbutton .= dolGetButtonTitleSeparator();
387$newcardbutton .= dolGetButtonTitle($langs->trans('NewFinancialAccount'), '', 'fa fa-plus-circle', 'card.php?action=create', '', $user->hasRight('banque', 'configurer'));
388
389print_barre_liste($title, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, 'bank_account', 0, $newcardbutton, '', $limit, 1);
390
391$topicmail = "Information";
392//$modelmail="subscription";
393$objecttmp = new Account($db);
394$trackid = 'bank'.$object->id;
395include DOL_DOCUMENT_ROOT.'/core/tpl/massactions_pre.tpl.php';
396
397//if ($sall) {
398// foreach ($fieldstosearchall as $key => $val) {
399// $fieldstosearchall[$key] = $langs->trans($val);
400// }
401// print '<div class="divsearchfieldfilter">'.$langs->trans("FilterOnInto", $sall).join(', ', $fieldstosearchall).'</div>';
402//}
403
404$moreforfilter = '';
405
406if (isModEnabled('category') && $user->hasRight('categorie', 'lire')) {
407 $moreforfilter .= $form->getFilterBox(Categorie::TYPE_ACCOUNT, $search_category_list);
408}
409
410// Bank accounts
411$parameters = array();
412$reshook = $hookmanager->executeHooks('printFieldPreListTitle', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
413if (empty($reshook)) {
414 $moreforfilter .= $hookmanager->resPrint;
415} else {
416 $moreforfilter = $hookmanager->resPrint;
417}
418
419if (!empty($moreforfilter)) {
420 print '<div class="liste_titre liste_titre_bydiv centpercent">';
421 print $moreforfilter;
422 $parameters = array();
423 $reshook = $hookmanager->executeHooks('printFieldPreListTitle', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
424 print $hookmanager->resPrint;
425 print '</div>';
426}
427
428$varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage;
429$htmlofselectarray = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage, getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')); // This also change content of $arrayfields with user setup
430$selectedfields = ($mode != 'kanban' ? $htmlofselectarray : '');
431$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons('checkforselect', 1) : '');
432
433print '<div class="div-table-responsive">'; // You can use div-table-responsive-no-min if you don't need reserved height for your table
434print '<table class="tagtable nobottomiftotal liste'.($moreforfilter ? " listwithfilterbefore" : "").'">'."\n";
435
436// Fields title search
437// --------------------------------------------------------------------
438print '<tr class="liste_titre_filter">';
439// Action column
440if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
441 print '<td class="liste_titre center maxwidthsearch">';
442 $searchpicto = $form->showFilterButtons('left');
443 print $searchpicto;
444 print '</td>';
445}
446// Ref
447if (!empty($arrayfields['b.ref']['checked'])) {
448 print '<td class="liste_titre">';
449 print '<input class="flat" size="6" type="text" name="search_ref" value="'.dol_escape_htmltag($search_ref).'">';
450 print '</td>';
451}
452// Label
453if (!empty($arrayfields['b.label']['checked'])) {
454 print '<td class="liste_titre">';
455 print '<input class="flat" size="6" type="text" name="search_label" value="'.dol_escape_htmltag($search_label).'">';
456 print '</td>';
457}
458// Account type
459if (!empty($arrayfields['accountype']['checked'])) {
460 print '<td class="liste_titre">';
461 print '</td>';
462}
463// Bank number
464if (!empty($arrayfields['b.number']['checked'])) {
465 print '<td class="liste_titre">';
466 print '<input class="flat" size="6" type="text" name="search_number" value="'.dol_escape_htmltag($search_number).'">';
467 print '</td>';
468}
469// Account number
470if (!empty($arrayfields['b.account_number']['checked'])) {
471 print '<td class="liste_titre">';
472 print '</td>';
473}
474// Accountancy journal
475if (!empty($arrayfields['b.fk_accountancy_journal']['checked'])) {
476 print '<td class="liste_titre">';
477 print '</td>';
478}
479// Transactions to reconcile
480if (!empty($arrayfields['toreconcile']['checked'])) {
481 print '<td class="liste_titre">';
482 print '</td>';
483}
484// Currency
485if (!empty($arrayfields['b.currency_code']['checked'])) {
486 print '<td class="liste_titre">';
487 print '</td>';
488}
489// Extra fields
490include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_input.tpl.php';
491
492// Fields from hook
493$parameters = array('arrayfields' => $arrayfields);
494$reshook = $hookmanager->executeHooks('printFieldListOption', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
495print $hookmanager->resPrint;
496// Date creation
497if (!empty($arrayfields['b.datec']['checked'])) {
498 print '<td class="liste_titre">';
499 print '</td>';
500}
501// Date modification
502if (!empty($arrayfields['b.tms']['checked'])) {
503 print '<td class="liste_titre">';
504 print '</td>';
505}
506// Status
507if (!empty($arrayfields['b.clos']['checked'])) {
508 print '<td class="liste_titre center parentonrightofpage">';
509 $array = array(
510 'opened' => $langs->trans("Opened"),
511 'closed' => $langs->trans("Closed")
512 );
513 print $form->selectarray("search_status", $array, $search_status, 1, 0, 0, '', 0, 0, 0, '', 'search_status minwidth75 maxwidth125 onrightofpage', 1);
514 print '</td>';
515}
516// Balance
517if (!empty($arrayfields['balance']['checked'])) {
518 print '<td class="liste_titre"></td>';
519}
520// Action column
521if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
522 print '<td class="liste_titre center maxwidthsearch">';
523 $searchpicto = $form->showFilterButtons();
524 print $searchpicto;
525 print '</td>';
526}
527print '</tr>'."\n";
528
529$totalarray = array();
530$totalarray['nbfield'] = 0;
531
532// Fields title label
533// --------------------------------------------------------------------
534print '<tr class="liste_titre">';
535// Action column
536if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
537 print_liste_field_titre($selectedfields, $_SERVER["PHP_SELF"], "", '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ');
538 $totalarray['nbfield']++;
539}
540if (!empty($arrayfields['b.ref']['checked'])) {
541 print_liste_field_titre($arrayfields['b.ref']['label'], $_SERVER["PHP_SELF"], 'b.ref', '', $param, '', $sortfield, $sortorder);
542 $totalarray['nbfield']++;
543}
544if (!empty($arrayfields['b.label']['checked'])) {
545 print_liste_field_titre($arrayfields['b.label']['label'], $_SERVER["PHP_SELF"], 'b.label', '', $param, '', $sortfield, $sortorder);
546 $totalarray['nbfield']++;
547}
548if (!empty($arrayfields['accountype']['checked'])) {
549 print_liste_field_titre($arrayfields['accountype']['label'], $_SERVER["PHP_SELF"], '', '', $param, '', $sortfield, $sortorder);
550 $totalarray['nbfield']++;
551}
552if (!empty($arrayfields['b.number']['checked'])) {
553 print_liste_field_titre($arrayfields['b.number']['label'], $_SERVER["PHP_SELF"], 'b.number', '', $param, '', $sortfield, $sortorder);
554 $totalarray['nbfield']++;
555}
556if (!empty($arrayfields['b.account_number']['checked'])) {
557 print_liste_field_titre($arrayfields['b.account_number']['label'], $_SERVER["PHP_SELF"], 'b.account_number', '', $param, '', $sortfield, $sortorder);
558 $totalarray['nbfield']++;
559}
560if (!empty($arrayfields['b.fk_accountancy_journal']['checked'])) {
561 print_liste_field_titre($arrayfields['b.fk_accountancy_journal']['label'], $_SERVER["PHP_SELF"], 'b.fk_accountancy_journal', '', $param, '', $sortfield, $sortorder);
562 $totalarray['nbfield']++;
563}
564if (!empty($arrayfields['b.currency_code']['checked'])) {
565 print_liste_field_titre($arrayfields['b.currency_code']['label'], $_SERVER["PHP_SELF"], 'b.currency_code', '', $param, '', $sortfield, $sortorder, 'center ');
566 $totalarray['nbfield']++;
567}
568if (!empty($arrayfields['toreconcile']['checked'])) {
569 print_liste_field_titre($arrayfields['toreconcile']['label'], $_SERVER["PHP_SELF"], '', '', $param, '', $sortfield, $sortorder, 'center ');
570 $totalarray['nbfield']++;
571}
572// Extra fields
573include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_title.tpl.php';
574// Hook fields
575$parameters = array('arrayfields' => $arrayfields, 'param' => $param, 'sortfield' => $sortfield, 'sortorder' => $sortorder);
576$reshook = $hookmanager->executeHooks('printFieldListTitle', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
577print $hookmanager->resPrint;
578if (!empty($arrayfields['b.datec']['checked'])) {
579 print_liste_field_titre($arrayfields['b.datec']['label'], $_SERVER["PHP_SELF"], "b.datec", "", $param, '', $sortfield, $sortorder, 'center nowrap ');
580 $totalarray['nbfield']++;
581}
582if (!empty($arrayfields['b.tms']['checked'])) {
583 print_liste_field_titre($arrayfields['b.tms']['label'], $_SERVER["PHP_SELF"], "b.tms", "", $param, '', $sortfield, $sortorder, 'center nowrap ');
584 $totalarray['nbfield']++;
585}
586if (!empty($arrayfields['b.clos']['checked'])) {
587 print_liste_field_titre($arrayfields['b.clos']['label'], $_SERVER["PHP_SELF"], 'b.clos', '', $param, '', $sortfield, $sortorder, 'center ');
588 $totalarray['nbfield']++;
589}
590if (!empty($arrayfields['balance']['checked'])) {
591 print_liste_field_titre($arrayfields['balance']['label'], $_SERVER["PHP_SELF"], '', '', $param, '', $sortfield, $sortorder, 'right ');
592 $totalarray['nbfield']++;
593}
594// Action column
595if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
596 print_liste_field_titre($selectedfields, $_SERVER["PHP_SELF"], "", '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ');
597 $totalarray['nbfield']++;
598}
599print '</tr>'."\n";
600
601
602// Loop on record
603// --------------------------------------------------------------------
604$i = 0;
605$savnbfield = $totalarray['nbfield'];
606$totalarray = array();
607$totalarray['nbfield'] = 0;
608$totalarray['val'] = array('balance' => 0);
609$total = array();
610$found = 0;
611$lastcurrencycode = '';
612$imaxinloop = ($limit ? min($num, $limit) : $num);
613
614foreach ($accounts as $key => $type) {
615 if ($i >= $limit) {
616 break;
617 }
618
619 $found++;
620
621 $result = $objecttmp->fetch($key);
622
623 $solde = $objecttmp->solde(1);
624
625 if (!empty($lastcurrencycode) && $lastcurrencycode != $objecttmp->currency_code) {
626 $lastcurrencycode = 'various'; // We found several different currencies
627 }
628 if ($lastcurrencycode != 'various') {
629 $lastcurrencycode = $objecttmp->currency_code;
630 }
631
632 if ($mode == 'kanban') {
633 if ($i == 0) {
634 print '<tr class="trkanban"><td colspan="'.$savnbfield.'">';
635 print '<div class="box-flex-container kanban">';
636 }
637 // Output Kanban
638 $selected = -1;
639 if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
640 $selected = 0;
641 if (in_array($object->id, $arrayofselected)) {
642 $selected = 1;
643 }
644 }
645 //print $object->getKanbanView('', array('thirdparty'=>$object->thirdparty, 'selected' => $selected));
646 print $objecttmp->getKanbanView('', array('selected' => $selected));
647 if ($i == ($imaxinloop - 1)) {
648 print '</div>';
649 print '</td></tr>';
650 }
651 } else {
652 // Show line of result
653 $j = 0;
654 print '<tr data-rowid="'.$objecttmp->id.'" class="oddeven">';
655
656 // Action column
657 if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
658 print '<td class="nowrap center">';
659 if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
660 $selected = 0;
661 if (in_array($objecttmp->id, $arrayofselected)) {
662 $selected = 1;
663 }
664 print '<input id="cb'.$objecttmp->id.'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$objecttmp->id.'"'.($selected ? ' checked="checked"' : '').'>';
665 }
666 print '</td>';
667 if (!$i) {
668 $totalarray['nbfield']++;
669 }
670 }
671 // Ref
672 if (!empty($arrayfields['b.ref']['checked'])) {
673 print '<td class="nowraponall">'.$objecttmp->getNomUrl(1).'</td>';
674 if (!$i) {
675 $totalarray['nbfield']++;
676 }
677 }
678
679 // Label
680 if (!empty($arrayfields['b.label']['checked'])) {
681 print '<td class="tdoverflowmax200" title="'.dol_escape_htmltag($objecttmp->label).'">'.dol_escape_htmltag($objecttmp->label).'</td>';
682 if (!$i) {
683 $totalarray['nbfield']++;
684 }
685 }
686
687 // Account type
688 if (!empty($arrayfields['accountype']['checked'])) {
689 print '<td class="tdoverflowmax150" title="'.dol_escape_htmltag($objecttmp->type_lib[$objecttmp->type]).'">';
690 print $objecttmp->type_lib[$objecttmp->type];
691 print '</td>';
692 if (!$i) {
693 $totalarray['nbfield']++;
694 }
695 }
696
697 // Number
698 if (!empty($arrayfields['b.number']['checked'])) {
699 print '<td>'.dol_escape_htmltag($objecttmp->number).'</td>';
700 if (!$i) {
701 $totalarray['nbfield']++;
702 }
703 }
704
705 // Account number
706 if (!empty($arrayfields['b.account_number']['checked'])) {
707 print '<td class="tdoverflowmax250">';
708 if (isModEnabled('accounting') && !empty($objecttmp->account_number)) {
709 $accountingaccount = new AccountingAccount($db);
710 $accountingaccount->fetch('', $objecttmp->account_number, 1);
711 print '<span title="'.dol_escape_htmltag($accountingaccount->account_number.' - '.$accountingaccount->label).'">';
712 print $accountingaccount->getNomUrl(0, 1, 1, '', 0);
713 print '</span>';
714 } else {
715 print '<span title="'.dol_escape_htmltag($objecttmp->account_number).'">'.$objecttmp->account_number.'</span>';
716 }
717 print '</td>';
718 if (!$i) {
719 $totalarray['nbfield']++;
720 }
721 }
722
723 // Accountancy journal
724 if (!empty($arrayfields['b.fk_accountancy_journal']['checked'])) {
725 print '<td class="tdoverflowmax125">';
726 if (isModEnabled('accounting')) {
727 if (empty($objecttmp->fk_accountancy_journal)) {
728 print img_warning($langs->trans("Mandatory"));
729 } else {
730 $accountingjournal = new AccountingJournal($db);
731 $accountingjournal->fetch($objecttmp->fk_accountancy_journal);
732 print $accountingjournal->getNomUrl(0, 1, 1, '', 1);
733 }
734 } else {
735 print '';
736 }
737 print '</td>';
738 if (!$i) {
739 $totalarray['nbfield']++;
740 }
741 }
742
743 // Currency
744 if (!empty($arrayfields['b.currency_code']['checked'])) {
745 print '<td class="center nowraponall">';
746 print $objecttmp->currency_code;
747 print '</td>';
748 if (!$i) {
749 $totalarray['nbfield']++;
750 }
751 }
752
753 // Transactions to reconcile
754 if (!empty($arrayfields['toreconcile']['checked'])) {
755 $conciliate = $objecttmp->canBeConciliated();
756
757 $labeltoshow = '';
758 if ($conciliate == -2) {
759 $labeltoshow = $langs->trans("CashAccount");
760 } elseif ($conciliate == -3) {
761 $labeltoshow = $langs->trans("Closed");
762 } elseif (empty($objecttmp->rappro)) {
763 $labeltoshow = $langs->trans("ConciliationDisabled");
764 }
765
766 print '<td class="center tdoverflowmax125"'.($labeltoshow ? ' title="'.dol_escape_htmltag($labeltoshow).'"' : '').'>';
767 if ($conciliate == -2) {
768 print '<span class="opacitymedium">'.$langs->trans("CashAccount").'</span>';
769 } elseif ($conciliate == -3) {
770 print '<span class="opacitymedium">'.$langs->trans("Closed").'</span>';
771 } elseif (empty($objecttmp->rappro)) {
772 print '<span class="opacitymedium">'.$langs->trans("ConciliationDisabled").'</span>';
773 } else {
774 $result = $objecttmp->load_board($user, $objecttmp->id);
775 if (is_numeric($result) && $result < 0) {
776 setEventMessages($objecttmp->error, $objecttmp->errors, 'errors');
777 } else {
778 print '<a href="'.DOL_URL_ROOT.'/compta/bank/bankentries_list.php?action=reconcile&sortfield=b.datev,b.dateo,b.rowid&sortorder=asc,asc,asc&id='.$objecttmp->id.'&search_account='.$objecttmp->id.'&search_conciliated=0&contextpage=banktransactionlist">';
779 print '<span class="badge badge-info classfortooltip" title="'.dol_htmlentities($langs->trans("TransactionsToConciliate")).'">';
780 print $result->nbtodo;
781 print '</span>';
782 print '</a>';
783 if ($result->nbtodolate) {
784 print '<span title="'.dol_htmlentities($langs->trans("Late")).'" class="classfortooltip badge badge-danger marginleftonlyshort">';
785 print '<i class="fa fa-exclamation-triangle"></i> '.$result->nbtodolate;
786 print '</span>';
787 }
788 }
789 }
790
791 print '</td>';
792 if (!$i) {
793 $totalarray['nbfield']++;
794 }
795 }
796
797 // Extra fields
798 if (is_array($objecttmp->array_options)) {
799 $obj = new stdClass();
800 foreach ($objecttmp->array_options as $k => $v) {
801 $obj->$k = $v;
802 }
803 }
804 include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_print_fields.tpl.php';
805 // Fields from hook
806 $parameters = array('arrayfields' => $arrayfields, 'obj' => $obj, 'i' => $i, 'totalarray' => &$totalarray);
807 $reshook = $hookmanager->executeHooks('printFieldListValue', $parameters, $objecttmp, $action); // Note that $action and $objecttmpect may have been modified by hook
808 print $hookmanager->resPrint;
809 // Date creation
810 if (!empty($arrayfields['b.datec']['checked'])) {
811 print '<td class="center nowraponall">';
812 print dol_print_date($objecttmp->date_creation, 'dayhour');
813 print '</td>';
814 if (!$i) {
815 $totalarray['nbfield']++;
816 }
817 }
818 // Date modification
819 if (!empty($arrayfields['b.tms']['checked'])) {
820 print '<td class="center nowraponall">';
821 print dol_print_date($objecttmp->date_modification, 'dayhour');
822 print '</td>';
823 if (!$i) {
824 $totalarray['nbfield']++;
825 }
826 }
827
828 // Status
829 if (!empty($arrayfields['b.clos']['checked'])) {
830 print '<td class="center">'.$objecttmp->getLibStatut(5).'</td>';
831 if (!$i) {
832 $totalarray['nbfield']++;
833 }
834 }
835
836 // Balance
837 if (!empty($arrayfields['balance']['checked'])) {
838 print '<td class="nowraponall right">';
839 print '<a href="'.DOL_URL_ROOT.'/compta/bank/bankentries_list.php?id='.$objecttmp->id.'">';
840 print '<span class="amount">'.price(price2num($solde, 'MT'), 0, $langs, 1, -1, -1, $objecttmp->currency_code).'</span>';
841 print '</a>';
842 print '</td>';
843 if (!$i) {
844 $totalarray['nbfield']++;
845 }
846 if (!$i) {
847 $totalarray['pos'][$totalarray['nbfield']] = 'balance';
848 }
849 $totalarray['val']['balance'] += $solde;
850 }
851
852 // Action column
853 if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
854 print '<td class="nowrap center">';
855 if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
856 $selected = 0;
857 if (in_array($objecttmp->id, $arrayofselected)) {
858 $selected = 1;
859 }
860 print '<input id="cb'.$objecttmp->id.'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$objecttmp->id.'"'.($selected ? ' checked="checked"' : '').'>';
861 }
862 print '</td>';
863 if (!$i) {
864 $totalarray['nbfield']++;
865 }
866 }
867
868 print '</tr>'."\n";
869
870 if (empty($total[$objecttmp->currency_code])) {
871 $total[$objecttmp->currency_code] = $solde;
872 } else {
873 $total[$objecttmp->currency_code] += $solde;
874 }
875 }
876 $i++;
877}
878
879// If no record found
880if (!$found) {
881 $colspan = 1;
882 foreach ($arrayfields as $key => $val) {
883 if (!empty($val['checked'])) {
884 $colspan++;
885 }
886 }
887 print '<tr><td colspan="'.$colspan.'"><span class="opacitymedium">'.$langs->trans("NoRecordFound").'</span></td></tr>';
888}
889
890// Show total line
891if ($lastcurrencycode != 'various') { // If there is several currency, $lastcurrencycode is set to 'various' before
892 // Show total line
893 include DOL_DOCUMENT_ROOT.'/core/tpl/list_print_total.tpl.php';
894}
895
896print '</table>'."\n";
897print '</div>'."\n";
898
899print '</form>'."\n";
900
901// End of page
902llxFooter();
903$db->close();
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:55
llxFooter()
Empty footer.
Definition wrapper.php:69
Class to manage bank accounts.
Class to manage accounting accounts.
Class to manage accounting journals.
Class to manage standard extra fields.
Class to manage forms for categories.
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
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.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
natural_search($fields, $value, $mode=0, $nofirstand=0)
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
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).
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by the value of a given key, which produces ascending (default) or descending out...
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
dolGetButtonTitleSeparator($moreClass="")
Add space between dolGetButtonTitle.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $hideselectlimit=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
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...
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.