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';
41if (isModEnabled(
'accounting')) {
42 require_once DOL_DOCUMENT_ROOT.
'/accountancy/class/accountingjournal.class.php';
44if (isModEnabled(
'category')) {
45 require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
49$langs->loadLangs(array(
'banks',
'categories',
'accountancy',
'compta'));
51$action =
GETPOST(
'action',
'aZ09');
52$massaction =
GETPOST(
'massaction',
'alpha');
54$confirm =
GETPOST(
'confirm',
'alpha');
55$toselect =
GETPOST(
'toselect',
'array');
56$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'bankaccountlist';
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');
65$search_category_list =
"";
66if (isModEnabled(
'category')) {
67 $search_category_list =
GETPOST(
"search_category_".Categorie::TYPE_ACCOUNT.
"_list",
"array");
73 $socid = $user->socid;
76$diroutputmassaction = $conf->bank->dir_output.
'/temp/massgeneration/'.$user->id;
79$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
80$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
82if (empty($page) || $page == -1) {
85$offset = $limit * $page;
89 $sortfield =
'b.label';
98$hookmanager->initHooks(array(
'bankaccountlist'));
101$extrafields->fetch_name_optionals_label(
$object->table_element);
102$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element,
'',
'search_');
105$fieldstosearchall = array(
107 'b.label' =>
'Label',
110$checkedtypetiers = 0;
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),
126include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
130'@phan-var-force array<string,array{label:string,checked?:int<0,1>,position?:int,help?:string}> $arrayfields';
132$permissiontoadd = $user->hasRight(
'banque',
'modifier');
133$permissiontodelete = $user->hasRight(
'banque',
'configurer');
136if ($user->hasRight(
'accounting',
'chartofaccount')) {
148if (
GETPOST(
'cancel',
'alpha')) {
152if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
156$parameters = array(
'socid' => $socid);
157$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
162if (empty($reshook)) {
163 include DOL_DOCUMENT_ROOT .
'/core/actions_changeselectedfields.inc.php';
166 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
171 $search_category_list = array();
175 $objectclass =
'Account';
176 $objectlabel =
'FinancialAccount';
177 $uploaddir = $conf->banque->dir_output;
178 include DOL_DOCUMENT_ROOT .
'/core/actions_massactions.inc.php';
187$title = $langs->trans(
'BankAccounts');
188$help_url =
'EN:Module_Banks_and_Cash|FR:Module_Banques_et_Caisses|ES:Módulo_Bancos_y_Cajas';
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";
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 :
'');
204$parameters = array();
205$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object, $action);
206$sql .= $hookmanager->resPrint;
207$sql = preg_replace(
'/,\s*$/',
'', $sql);
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)";
215$sql .=
" WHERE b.entity IN (".getEntity(
'bank_account').
")";
216if ($search_status ===
'opened') {
217 $sql .=
" AND clos = 0";
219if ($search_status ===
'closed') {
220 $sql .=
" AND clos = 1";
222if ($search_ref !=
'') {
225if ($search_label !=
'') {
228if ($search_number !=
'') {
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).
")";
244 $listofcategoryid .= ($listofcategoryid ?
', ' :
'') .((
int) $searchCategoryBank);
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).
"))";
251 if ($searchCategoryBankOperator == 1) {
252 if (!empty($searchCategoryBankSqlList)) {
253 $sql .=
" AND (".implode(
' OR ', $searchCategoryBankSqlList).
")";
256 if (!empty($searchCategoryBankSqlList)) {
257 $sql .=
" AND (".implode(
' AND ', $searchCategoryBankSqlList).
")";
262include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
264$parameters = array();
265$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object, $action);
266$sql .= $hookmanager->resPrint;
269$nbtotalofrecords =
'';
272 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
273 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
274 $resql = $db->query($sqlforcount);
276 $objforcount = $db->fetch_object($resql);
277 $nbtotalofrecords = $objforcount->nbtotalofrecords;
282 if (($page * $limit) > $nbtotalofrecords) {
290$sql .= $db->order($sortfield, $sortorder);
292 $sql .= $db->plimit($limit + 1, $offset);
295$resql = $db->query($sql);
297 $num = $db->num_rows($resql);
300 $objp = $db->fetch_object($resql);
301 $accounts[$objp->rowid] = $objp->courant;
311llxHeader(
'', $title, $help_url, 0, 0,
'',
'',
'',
'bodyforlist');
314$arrayofselected = is_array($toselect) ? $toselect : array();
318 $param .=
'&mode='.urlencode($mode);
320if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
321 $param .=
'&contextpage='.urlencode($contextpage);
323if ($limit > 0 && $limit != $conf->liste_limit) {
324 $param .=
'&limit='.((int) $limit);
326if ($optioncss !=
'') {
327 $param .=
'&optioncss='.urlencode($optioncss);
329if ($search_ref !=
'') {
330 $param .=
'&search_ref='.urlencode($search_ref);
332if ($search_label !=
'') {
333 $param .=
'&search_label='.urlencode($search_label);
335if ($search_number !=
'') {
336 $param .=
'&search_number='.urlencode($search_number);
338if ($search_status !=
'' && $search_status !=
'-1') {
339 $param .=
'&search_status='.urlencode($search_status);
342 $param .=
'&show_files='.urlencode((
string) ($show_files));
345include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
347$parameters = array(
'param' => &$param);
348$reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object, $action);
349$param .= $hookmanager->resPrint;
352$arrayofmassactions = array(
356if (!empty($permissiontodelete)) {
357 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
359if (isModEnabled(
'category') && $user->hasRight(
'banque',
'modifier')) {
360 $arrayofmassactions[
'preaffecttag'] =
img_picto(
'',
'category',
'class="pictofixedwidth"').$langs->trans(
"AffectTag");
362if (in_array($massaction, array(
'presend',
'predelete',
'preaffecttag'))) {
363 $arrayofmassactions = array();
365$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
367print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
368if ($optioncss !=
'') {
369 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
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.
'">';
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'));
387$newcardbutton .=
dolGetButtonTitle($langs->trans(
'NewFinancialAccount'),
'',
'fa fa-plus-circle',
'card.php?action=create',
'', $user->hasRight(
'banque',
'configurer'));
389print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'bank_account', 0, $newcardbutton,
'', $limit, 1);
391$topicmail =
"Information";
394$trackid =
'bank'.$object->id;
395include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
406if (isModEnabled(
'category') && $user->hasRight(
'categorie',
'lire')) {
407 $moreforfilter .= $form->getFilterBox(Categorie::TYPE_ACCOUNT, $search_category_list);
411$parameters = array();
412$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
413if (empty($reshook)) {
414 $moreforfilter .= $hookmanager->resPrint;
416 $moreforfilter = $hookmanager->resPrint;
419if (!empty($moreforfilter)) {
420 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
421 print $moreforfilter;
425$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
426$htmlofselectarray = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN'));
427$selectedfields = ($mode !=
'kanban' ? $htmlofselectarray :
'');
428$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
430print
'<div class="div-table-responsive">';
431print
'<table class="tagtable nobottomiftotal liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
435print
'<tr class="liste_titre_filter">';
438 print
'<td class="liste_titre center maxwidthsearch">';
439 $searchpicto = $form->showFilterButtons(
'left');
444if (!empty($arrayfields[
'b.ref'][
'checked'])) {
445 print
'<td class="liste_titre">';
446 print
'<input class="flat" size="6" type="text" name="search_ref" value="'.dol_escape_htmltag($search_ref).
'">';
450if (!empty($arrayfields[
'b.label'][
'checked'])) {
451 print
'<td class="liste_titre">';
452 print
'<input class="flat" size="6" type="text" name="search_label" value="'.dol_escape_htmltag($search_label).
'">';
456if (!empty($arrayfields[
'accountype'][
'checked'])) {
457 print
'<td class="liste_titre">';
461if (!empty($arrayfields[
'b.number'][
'checked'])) {
462 print
'<td class="liste_titre">';
463 print
'<input class="flat" size="6" type="text" name="search_number" value="'.dol_escape_htmltag($search_number).
'">';
467if (!empty($arrayfields[
'b.account_number'][
'checked'])) {
468 print
'<td class="liste_titre">';
472if (!empty($arrayfields[
'b.fk_accountancy_journal'][
'checked'])) {
473 print
'<td class="liste_titre">';
477if (!empty($arrayfields[
'toreconcile'][
'checked'])) {
478 print
'<td class="liste_titre">';
482if (!empty($arrayfields[
'b.currency_code'][
'checked'])) {
483 print
'<td class="liste_titre">';
487include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
490$parameters = array(
'arrayfields' => $arrayfields);
491$reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object, $action);
492print $hookmanager->resPrint;
494if (!empty($arrayfields[
'b.datec'][
'checked'])) {
495 print
'<td class="liste_titre">';
499if (!empty($arrayfields[
'b.tms'][
'checked'])) {
500 print
'<td class="liste_titre">';
504if (!empty($arrayfields[
'b.clos'][
'checked'])) {
505 print
'<td class="liste_titre center parentonrightofpage">';
507 'opened' => $langs->trans(
"Opened"),
508 'closed' => $langs->trans(
"Closed")
510 print $form->selectarray(
"search_status", $array, $search_status, 1, 0, 0,
'', 0, 0, 0,
'',
'search_status minwidth75 maxwidth125 onrightofpage', 1);
514if (!empty($arrayfields[
'balance'][
'checked'])) {
515 print
'<td class="liste_titre"></td>';
519 print
'<td class="liste_titre center maxwidthsearch">';
520 $searchpicto = $form->showFilterButtons();
526$totalarray = array();
527$totalarray[
'nbfield'] = 0;
531print
'<tr class="liste_titre">';
534 print_liste_field_titre($selectedfields, $_SERVER[
"PHP_SELF"],
"",
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ');
535 $totalarray[
'nbfield']++;
537if (!empty($arrayfields[
'b.ref'][
'checked'])) {
538 print_liste_field_titre($arrayfields[
'b.ref'][
'label'], $_SERVER[
"PHP_SELF"],
'b.ref',
'', $param,
'', $sortfield, $sortorder);
539 $totalarray[
'nbfield']++;
541if (!empty($arrayfields[
'b.label'][
'checked'])) {
542 print_liste_field_titre($arrayfields[
'b.label'][
'label'], $_SERVER[
"PHP_SELF"],
'b.label',
'', $param,
'', $sortfield, $sortorder);
543 $totalarray[
'nbfield']++;
545if (!empty($arrayfields[
'accountype'][
'checked'])) {
546 print_liste_field_titre($arrayfields[
'accountype'][
'label'], $_SERVER[
"PHP_SELF"],
'',
'', $param,
'', $sortfield, $sortorder);
547 $totalarray[
'nbfield']++;
549if (!empty($arrayfields[
'b.number'][
'checked'])) {
550 print_liste_field_titre($arrayfields[
'b.number'][
'label'], $_SERVER[
"PHP_SELF"],
'b.number',
'', $param,
'', $sortfield, $sortorder);
551 $totalarray[
'nbfield']++;
553if (!empty($arrayfields[
'b.account_number'][
'checked'])) {
554 print_liste_field_titre($arrayfields[
'b.account_number'][
'label'], $_SERVER[
"PHP_SELF"],
'b.account_number',
'', $param,
'', $sortfield, $sortorder);
555 $totalarray[
'nbfield']++;
557if (!empty($arrayfields[
'b.fk_accountancy_journal'][
'checked'])) {
558 print_liste_field_titre($arrayfields[
'b.fk_accountancy_journal'][
'label'], $_SERVER[
"PHP_SELF"],
'b.fk_accountancy_journal',
'', $param,
'', $sortfield, $sortorder);
559 $totalarray[
'nbfield']++;
561if (!empty($arrayfields[
'b.currency_code'][
'checked'])) {
562 print_liste_field_titre($arrayfields[
'b.currency_code'][
'label'], $_SERVER[
"PHP_SELF"],
'b.currency_code',
'', $param,
'', $sortfield, $sortorder,
'center ');
563 $totalarray[
'nbfield']++;
565if (!empty($arrayfields[
'toreconcile'][
'checked'])) {
566 print_liste_field_titre($arrayfields[
'toreconcile'][
'label'], $_SERVER[
"PHP_SELF"],
'',
'', $param,
'', $sortfield, $sortorder,
'center ');
567 $totalarray[
'nbfield']++;
570include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
572$parameters = array(
'arrayfields' => $arrayfields,
'param' => $param,
'sortfield' => $sortfield,
'sortorder' => $sortorder);
573$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object, $action);
574print $hookmanager->resPrint;
575if (!empty($arrayfields[
'b.datec'][
'checked'])) {
576 print_liste_field_titre($arrayfields[
'b.datec'][
'label'], $_SERVER[
"PHP_SELF"],
"b.datec",
"", $param,
'', $sortfield, $sortorder,
'center nowrap ');
577 $totalarray[
'nbfield']++;
579if (!empty($arrayfields[
'b.tms'][
'checked'])) {
580 print_liste_field_titre($arrayfields[
'b.tms'][
'label'], $_SERVER[
"PHP_SELF"],
"b.tms",
"", $param,
'', $sortfield, $sortorder,
'center nowrap ');
581 $totalarray[
'nbfield']++;
583if (!empty($arrayfields[
'b.clos'][
'checked'])) {
584 print_liste_field_titre($arrayfields[
'b.clos'][
'label'], $_SERVER[
"PHP_SELF"],
'b.clos',
'', $param,
'', $sortfield, $sortorder,
'center ');
585 $totalarray[
'nbfield']++;
587if (!empty($arrayfields[
'balance'][
'checked'])) {
588 print_liste_field_titre($arrayfields[
'balance'][
'label'], $_SERVER[
"PHP_SELF"],
'',
'', $param,
'', $sortfield, $sortorder,
'right ');
589 $totalarray[
'nbfield']++;
593 print_liste_field_titre($selectedfields, $_SERVER[
"PHP_SELF"],
"",
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ');
594 $totalarray[
'nbfield']++;
602$savnbfield = $totalarray[
'nbfield'];
603$totalarray = array();
604$totalarray[
'nbfield'] = 0;
605$totalarray[
'val'] = array(
'balance' => 0);
608$lastcurrencycode =
'';
609$imaxinloop = ($limit ? min($num, $limit) : $num);
611foreach ($accounts as $key => $type) {
618 $result = $objecttmp->fetch($key);
620 $solde = $objecttmp->solde(1);
622 if (!empty($lastcurrencycode) && $lastcurrencycode != $objecttmp->currency_code) {
623 $lastcurrencycode =
'various';
625 if ($lastcurrencycode !=
'various') {
626 $lastcurrencycode = $objecttmp->currency_code;
629 if ($mode ==
'kanban') {
631 print
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
632 print
'<div class="box-flex-container kanban">';
636 if ($massactionbutton || $massaction) {
638 if (in_array(
$object->id, $arrayofselected)) {
643 print $objecttmp->getKanbanView(
'', array(
'selected' => $selected));
644 if ($i == ($imaxinloop - 1)) {
651 print
'<tr data-rowid="'.$objecttmp->id.
'" class="oddeven">';
655 print
'<td class="nowrap center">';
656 if ($massactionbutton || $massaction) {
658 if (in_array($objecttmp->id, $arrayofselected)) {
661 print
'<input id="cb'.$objecttmp->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$objecttmp->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
665 $totalarray[
'nbfield']++;
669 if (!empty($arrayfields[
'b.ref'][
'checked'])) {
670 print
'<td class="nowraponall">'.$objecttmp->getNomUrl(1).
'</td>';
672 $totalarray[
'nbfield']++;
677 if (!empty($arrayfields[
'b.label'][
'checked'])) {
678 print
'<td class="tdoverflowmax200" title="'.dol_escape_htmltag($objecttmp->label).
'">'.
dol_escape_htmltag($objecttmp->label).
'</td>';
680 $totalarray[
'nbfield']++;
685 if (!empty($arrayfields[
'accountype'][
'checked'])) {
686 print
'<td class="tdoverflowmax150" title="'.dol_escape_htmltag($objecttmp->type_lib[$objecttmp->type]).
'">';
687 print $objecttmp->type_lib[$objecttmp->type];
690 $totalarray[
'nbfield']++;
695 if (!empty($arrayfields[
'b.number'][
'checked'])) {
696 print
'<td>'.dol_escape_htmltag($objecttmp->number).
'</td>';
698 $totalarray[
'nbfield']++;
703 if (!empty($arrayfields[
'b.account_number'][
'checked'])) {
704 print
'<td class="tdoverflowmax250">';
705 if (isModEnabled(
'accounting') && !empty($objecttmp->account_number)) {
707 $accountingaccount->fetch(
'', $objecttmp->account_number, 1);
708 print
'<span title="'.dol_escape_htmltag($accountingaccount->account_number.
' - '.$accountingaccount->label).
'">';
709 print $accountingaccount->getNomUrl(0, 1, 1,
'', 0);
712 print
'<span title="'.dol_escape_htmltag($objecttmp->account_number).
'">'.$objecttmp->account_number.
'</span>';
716 $totalarray[
'nbfield']++;
721 if (!empty($arrayfields[
'b.fk_accountancy_journal'][
'checked'])) {
722 print
'<td class="tdoverflowmax125">';
723 if (isModEnabled(
'accounting')) {
724 if (empty($objecttmp->fk_accountancy_journal)) {
728 $accountingjournal->fetch($objecttmp->fk_accountancy_journal);
729 print $accountingjournal->getNomUrl(0, 1, 1,
'', 1);
736 $totalarray[
'nbfield']++;
741 if (!empty($arrayfields[
'b.currency_code'][
'checked'])) {
742 print
'<td class="center nowraponall">';
743 print $objecttmp->currency_code;
746 $totalarray[
'nbfield']++;
751 if (!empty($arrayfields[
'toreconcile'][
'checked'])) {
752 $conciliate = $objecttmp->canBeConciliated();
755 if ($conciliate == -2) {
756 $labeltoshow = $langs->trans(
"CashAccount");
757 } elseif ($conciliate == -3) {
758 $labeltoshow = $langs->trans(
"Closed");
759 } elseif (empty($objecttmp->rappro)) {
760 $labeltoshow = $langs->trans(
"ConciliationDisabled");
763 print
'<td class="center tdoverflowmax125"'.($labeltoshow ?
' title="'.dol_escape_htmltag($labeltoshow).
'"' :
'').
'>';
764 if ($conciliate == -2) {
765 print
'<span class="opacitymedium">'.$langs->trans(
"CashAccount").
'</span>';
766 } elseif ($conciliate == -3) {
767 print
'<span class="opacitymedium">'.$langs->trans(
"Closed").
'</span>';
768 } elseif (empty($objecttmp->rappro)) {
769 print
'<span class="opacitymedium">'.$langs->trans(
"ConciliationDisabled").
'</span>';
771 $result = $objecttmp->load_board($user, $objecttmp->id);
772 if (is_numeric($result) && $result < 0) {
775 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">';
776 print
'<span class="badge badge-info classfortooltip" title="'.dol_htmlentities($langs->trans(
"TransactionsToConciliate")).
'">';
777 print $result->nbtodo;
780 if ($result->nbtodolate) {
781 print
'<span title="'.dol_htmlentities($langs->trans(
"Late")).
'" class="classfortooltip badge badge-danger marginleftonlyshort">';
782 print
'<i class="fa fa-exclamation-triangle"></i> '.$result->nbtodolate;
790 $totalarray[
'nbfield']++;
795 if (is_array($objecttmp->array_options)) {
797 foreach ($objecttmp->array_options as $k => $v) {
801 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
803 $parameters = array(
'arrayfields' => $arrayfields,
'obj' => $obj,
'i' => $i,
'totalarray' => &$totalarray);
804 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $objecttmp, $action);
805 print $hookmanager->resPrint;
807 if (!empty($arrayfields[
'b.datec'][
'checked'])) {
808 print
'<td class="center nowraponall">';
812 $totalarray[
'nbfield']++;
816 if (!empty($arrayfields[
'b.tms'][
'checked'])) {
817 print
'<td class="center nowraponall">';
821 $totalarray[
'nbfield']++;
826 if (!empty($arrayfields[
'b.clos'][
'checked'])) {
827 print
'<td class="center">'.$objecttmp->getLibStatut(5).
'</td>';
829 $totalarray[
'nbfield']++;
834 if (!empty($arrayfields[
'balance'][
'checked'])) {
835 print
'<td class="nowraponall right">';
836 print
'<a href="'.DOL_URL_ROOT.
'/compta/bank/bankentries_list.php?id='.$objecttmp->id.
'">';
837 print
'<span class="amount">'.price(
price2num($solde,
'MT'), 0, $langs, 1, -1, -1, $objecttmp->currency_code).
'</span>';
841 $totalarray[
'nbfield']++;
844 $totalarray[
'pos'][$totalarray[
'nbfield']] =
'balance';
846 $totalarray[
'val'][
'balance'] += $solde;
851 print
'<td class="nowrap center">';
852 if ($massactionbutton || $massaction) {
854 if (in_array($objecttmp->id, $arrayofselected)) {
857 print
'<input id="cb'.$objecttmp->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$objecttmp->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
861 $totalarray[
'nbfield']++;
867 if (empty($total[$objecttmp->currency_code])) {
868 $total[$objecttmp->currency_code] = $solde;
870 $total[$objecttmp->currency_code] += $solde;
879 foreach ($arrayfields as $key => $val) {
880 if (!empty($val[
'checked'])) {
884 print
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
888if ($lastcurrencycode !=
'various') {
890 include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
893print
'</table>'.
"\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()
Empty header.
Class to manage bank accounts.
Class to manage accounting accounts.
Class to manage accounting journals.
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.