123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727 |
- <?php
- /* Copyright (C) 2017-2019 Alexandre Spangaro <aspangaro@open-dsi.fr>
- * Copyright (C) 2017 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2018 Frédéric France <frederic.france@netlogic.fr>
- * Copyright (C) 2020 Tobias Sekan <tobias.sekan@startmail.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/compta/bank/various_payment/list.php
- * \ingroup bank
- * \brief List of various payments
- */
- require '../../../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/paymentvarious.class.php';
- require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formaccounting.class.php';
- require_once DOL_DOCUMENT_ROOT.'/accountancy/class/accountingaccount.class.php';
- require_once DOL_DOCUMENT_ROOT.'/accountancy/class/accountingjournal.class.php';
- require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
- // Load translation files required by the page
- $langs->loadLangs(array("compta", "banks", "bills", "accountancy"));
- // Security check
- $socid = GETPOST("socid", "int");
- if ($user->socid) {
- $socid = $user->socid;
- }
- $result = restrictedArea($user, 'banque', '', '', '');
- $optioncss = GETPOST('optioncss', 'alpha');
- $limit = GETPOST('limit', 'int') ?GETPOST('limit', 'int') : $conf->liste_limit;
- $search_ref = GETPOST('search_ref', 'int');
- $search_user = GETPOST('search_user', 'alpha');
- $search_label = GETPOST('search_label', 'alpha');
- $search_datep_start = dol_mktime(0, 0, 0, GETPOST('search_date_startmonth', 'int'), GETPOST('search_date_startday', 'int'), GETPOST('search_date_startyear', 'int'));
- $search_datep_end = dol_mktime(23, 59, 59, GETPOST('search_date_endmonth', 'int'), GETPOST('search_date_endday', 'int'), GETPOST('search_date_endyear', 'int'));
- $search_datev_start = dol_mktime(0, 0, 0, GETPOST('search_date_value_startmonth', 'int'), GETPOST('search_date_value_startday', 'int'), GETPOST('search_date_value_startyear', 'int'));
- $search_datev_end = dol_mktime(23, 59, 59, GETPOST('search_date_value_endmonth', 'int'), GETPOST('search_date_value_endday', 'int'), GETPOST('search_date_value_endyear', 'int'));
- $search_amount_deb = GETPOST('search_amount_deb', 'alpha');
- $search_amount_cred = GETPOST('search_amount_cred', 'alpha');
- $search_bank_account = GETPOST('search_account', 'int');
- $search_bank_entry = GETPOST('search_bank_entry', 'int');
- $search_accountancy_account = GETPOST("search_accountancy_account");
- if ($search_accountancy_account == - 1) {
- $search_accountancy_account = '';
- }
- $search_accountancy_subledger = GETPOST("search_accountancy_subledger");
- if ($search_accountancy_subledger == - 1) {
- $search_accountancy_subledger = '';
- }
- if (empty($search_datep_start)) {
- $search_datep_start = GETPOST("search_datep_start", 'int');
- }
- if (empty($search_datep_end)) {
- $search_datep_end = GETPOST("search_datep_end", 'int');
- }
- if (empty($search_datev_start)) {
- $search_datev_start = GETPOST("search_datev_start", 'int');
- }
- if (empty($search_datev_end)) {
- $search_datev_end = GETPOST("search_datev_end", 'int');
- }
- $sortfield = GETPOST('sortfield', 'aZ09comma');
- $sortorder = GETPOST('sortorder', 'aZ09comma');
- $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
- if (empty($page) || $page == -1) {
- $page = 0;
- } // If $page is not defined, or '' or -1
- $offset = $limit * $page;
- $pageprev = $page - 1;
- $pagenext = $page + 1;
- if (!$sortfield) {
- $sortfield = "v.datep,v.rowid";
- }
- if (!$sortorder) {
- $sortorder = "DESC,DESC";
- }
- $filtre = GETPOST("filtre", 'alpha');
- if (!GETPOST('typeid')) {
- $newfiltre = str_replace('filtre=', '', $filtre);
- $filterarray = explode('-', $newfiltre);
- foreach ($filterarray as $val) {
- $part = explode(':', $val);
- if ($part[0] == 'v.fk_typepayment') {
- $typeid = $part[1];
- }
- }
- } else {
- $typeid = GETPOST('typeid');
- }
- if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // All test are required to be compatible with all browsers
- $search_ref = '';
- $search_label = '';
- $search_datep_start = '';
- $search_datep_end = '';
- $search_datev_start = '';
- $search_datev_end = '';
- $search_amount_deb = '';
- $search_amount_cred = '';
- $search_bank_account = '';
- $search_bank_entry = '';
- $search_accountancy_account = '';
- $search_accountancy_subledger = '';
- $typeid = '';
- }
- $search_all = GETPOSTISSET("search_all") ? trim(GETPOST("search_all", 'alpha')) : trim(GETPOST('sall'));
- /*
- * TODO: fill array "$fields" in "/compta/bank/class/paymentvarious.class.php" and use
- *
- *
- * $object = new PaymentVarious($db);
- *
- * $search = array();
- * foreach ($object->fields as $key => $val)
- * {
- * if (GETPOST('search_'.$key, 'alpha')) $search[$key] = GETPOST('search_'.$key, 'alpha');
- * }
- * $fieldstosearchall = array();
- * foreach ($object->fields as $key => $val)
- * {
- * if ($val['searchall']) $fieldstosearchall['t.'.$key] = $val['label'];
- * }
- *
- */
- // List of fields to search into when doing a "search in all"
- $fieldstosearchall = array(
- 'v.rowid'=>"Ref",
- 'v.label'=>"Label",
- 'v.datep'=>"DatePayment",
- 'v.datev'=>"DateValue",
- 'v.amount'=>$langs->trans("Debit").", ".$langs->trans("Credit"),
- );
- // Definition of fields for lists
- $arrayfields = array(
- 'ref' =>array('label'=>"Ref", 'checked'=>1, 'position'=>100),
- 'label' =>array('label'=>"Label", 'checked'=>1, 'position'=>110),
- 'datep' =>array('label'=>"DatePayment", 'checked'=>1, 'position'=>120),
- 'datev' =>array('label'=>"DateValue", 'checked'=>-1, 'position'=>130),
- 'type' =>array('label'=>"PaymentMode", 'checked'=>1, 'position'=>140),
- 'project' =>array('label'=>"Project", 'checked'=>1, 'position'=>200, "enabled"=>!empty($conf->projet->enabled)),
- 'bank' =>array('label'=>"BankAccount", 'checked'=>1, 'position'=>300, "enabled"=>!empty($conf->banque->enabled)),
- 'entry' =>array('label'=>"BankTransactionLine", 'checked'=>1, 'position'=>310, "enabled"=>!empty($conf->banque->enabled)),
- 'account' =>array('label'=>"AccountAccountingShort", 'checked'=>1, 'position'=>400, "enabled"=>!empty($conf->accounting->enabled)),
- 'subledger' =>array('label'=>"SubledgerAccount", 'checked'=>1, 'position'=>410, "enabled"=>!empty($conf->accounting->enabled)),
- 'debit' =>array('label'=>"Debit", 'checked'=>1, 'position'=>500),
- 'credit' =>array('label'=>"Credit", 'checked'=>1, 'position'=>510),
- );
- $arrayfields = dol_sort_array($arrayfields, 'position');
- /*
- * Actions
- */
- $parameters = array();
- $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
- if ($reshook < 0) {
- setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
- }
- if (empty($reshook)) {
- // Selection of new fields
- include DOL_DOCUMENT_ROOT.'/core/actions_changeselectedfields.inc.php';
- }
- /*
- * View
- */
- $form = new Form($db);
- if ($arrayfields['account']['checked'] || $arrayfields['subledger']['checked']) {
- $formaccounting = new FormAccounting($db);
- }
- if ($arrayfields['bank']['checked'] && !empty($conf->accounting->enabled)) {
- $accountingjournal = new AccountingJournal($db);
- }
- if ($arrayfields['ref']['checked']) {
- $variousstatic = new PaymentVarious($db);
- }
- if ($arrayfields['bank']['checked']) {
- $accountstatic = new Account($db);
- }
- if ($arrayfields['project']['checked']) {
- $proj = new Project($db);
- }
- if ($arrayfields['entry']['checked']) {
- $bankline = new AccountLine($db);
- }
- if ($arrayfields['account']['checked']) {
- $accountingaccount = new AccountingAccount($db);
- }
- $sql = "SELECT v.rowid, v.sens, v.amount, v.label, v.datep as datep, v.datev as datev, v.fk_typepayment as type, v.num_payment, v.fk_bank, v.accountancy_code, v.subledger_account, v.fk_projet as fk_project,";
- $sql .= " ba.rowid as bid, ba.ref as bref, ba.number as bnumber, ba.account_number as bank_account_number, ba.fk_accountancy_journal as accountancy_journal, ba.label as blabel,";
- $sql .= " pst.code as payment_code";
- $sql .= " FROM ".MAIN_DB_PREFIX."payment_various as v";
- $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."c_paiement as pst ON v.fk_typepayment = pst.id";
- $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."bank as b ON v.fk_bank = b.rowid";
- $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."bank_account as ba ON b.fk_account = ba.rowid";
- $sql .= " WHERE v.entity IN (".getEntity('payment_various').")";
- // Search criteria
- if ($search_ref) {
- $sql .= " AND v.rowid = ".((int) $search_ref);
- }
- if ($search_label) {
- $sql .= natural_search(array('v.label'), $search_label);
- }
- if ($search_datep_start) {
- $sql .= " AND v.datep >= '".$db->idate($search_datep_start)."'";
- }
- if ($search_datep_end) {
- $sql .= " AND v.datep <= '".$db->idate($search_datep_end)."'";
- }
- if ($search_datev_start) {
- $sql .= " AND v.datev >= '".$db->idate($search_datev_start)."'";
- }
- if ($search_datev_end) {
- $sql .= " AND v.datev <= '".$db->idate($search_datev_end)."'";
- }
- if ($search_amount_deb) {
- $sql .= natural_search("v.amount", $search_amount_deb, 1);
- }
- if ($search_amount_cred) {
- $sql .= natural_search("v.amount", $search_amount_cred, 1);
- }
- if ($search_bank_account > 0) {
- $sql .= " AND b.fk_account = ".((int) $search_bank_account);
- }
- if ($search_bank_entry > 0) {
- $sql .= " AND b.fk_account = ".((int) $search_bank_account);
- }
- if ($search_accountancy_account > 0) {
- $sql .= " AND v.accountancy_code = ".((int) $search_accountancy_account);
- }
- if ($search_accountancy_subledger > 0) {
- $sql .= " AND v.subledger_account = ".((int) $search_accountancy_subledger);
- }
- if ($typeid > 0) {
- $sql .= " AND v.fk_typepayment=".((int) $typeid);
- }
- if ($search_all) {
- $sql .= natural_search(array_keys($fieldstosearchall), $search_all);
- }
- $sql .= $db->order($sortfield, $sortorder);
- $totalnboflines = 0;
- $result = $db->query($sql);
- if ($result) {
- $totalnboflines = $db->num_rows($result);
- }
- $sql .= $db->plimit($limit + 1, $offset);
- $result = $db->query($sql);
- if ($result) {
- $num = $db->num_rows($result);
- // Direct jump if only one record found
- if ($num == 1 && !empty($conf->global->MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE) && $search_all) {
- $obj = $db->fetch_object($result);
- $id = $obj->rowid;
- header("Location: ".DOL_URL_ROOT.'/compta/bank/various_payment/card.php?id='.$id);
- exit;
- }
- // must be place behind the last "header(...)" call
- llxHeader();
- $i = 0;
- $total = 0;
- $param = '';
- if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
- $param .= '&contextpage='.urlencode($contextpage);
- }
- if ($limit > 0 && $limit != $conf->liste_limit) {
- $param .= '&limit='.urlencode($limit);
- }
- if ($search_ref) {
- $param .= '&search_ref='.urlencode($search_ref);
- }
- if ($search_label) {
- $param .= '&search_label='.urlencode($search_label);
- }
- if ($search_datep_start) {
- $param .= '&search_datep_start='.urlencode($search_datep_start);
- }
- if ($search_datep_end) {
- $param .= '&search_datep_end='.urlencode($search_datep_end);
- }
- if ($search_datev_start) {
- $param .= '&search_datev_start='.urlencode($search_datev_start);
- }
- if ($search_datev_end) {
- $param .= '&search_datev_end='.urlencode($search_datev_end);
- }
- if ($typeid > 0) {
- $param .= '&typeid='.urlencode($typeid);
- }
- if ($search_amount_deb) {
- $param .= '&search_amount_deb='.urlencode($search_amount_deb);
- }
- if ($search_amount_cred) {
- $param .= '&search_amount_cred='.urlencode($search_amount_cred);
- }
- if ($search_bank_account > 0) {
- $param .= '&search_account='.urlencode($search_bank_account);
- }
- if ($search_accountancy_account > 0) {
- $param .= '&search_accountancy_account='.urlencode($search_accountancy_account);
- }
- if ($search_accountancy_subledger > 0) {
- $param .= '&search_accountancy_subledger='.urlencode($search_accountancy_subledger);
- }
- if ($optioncss != '') {
- $param .= '&optioncss='.urlencode($optioncss);
- }
- $url = DOL_URL_ROOT.'/compta/bank/various_payment/card.php?action=create';
- if (!empty($socid)) {
- $url .= '&socid='.urlencode($socid);
- }
- $newcardbutton = dolGetButtonTitle($langs->trans('MenuNewVariousPayment'), '', 'fa fa-plus-circle', $url, '', $user->rights->banque->modifier);
- print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">';
- if ($optioncss != '') {
- print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
- }
- print '<input type="hidden" name="token" value="'.newToken().'">';
- print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
- print '<input type="hidden" name="action" value="list">';
- print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
- print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
- print '<input type="hidden" name="contextpage" value="'.$contextpage.'">';
- print_barre_liste($langs->trans("MenuVariousPayment"), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, $totalnboflines, 'object_payment', 0, $newcardbutton, '', $limit, 0, 0, 1);
- if ($search_all) {
- foreach ($fieldstosearchall as $key => $val) {
- $fieldstosearchall[$key] = $langs->trans($val);
- }
- print '<div class="divsearchfieldfilter">'.$langs->trans("FilterOnInto", $search_all).join(', ', $fieldstosearchall).'</div>';
- }
- $varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage;
- $selectedfields = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage); // This also change content of $arrayfields
- print '<div class="div-table-responsive">';
- print '<table class="tagtable liste'.($moreforfilter ? " listwithfilterbefore" : "").'">';
- print '<tr class="liste_titre">';
- if (!empty($conf->global->MAIN_VIEW_LINE_NUMBER_IN_LIST)) {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // Ref
- if ($arrayfields['ref']['checked']) {
- print '<td class="liste_titre left">';
- print '<input class="flat" type="text" size="3" name="search_ref" value="'.dol_escape_htmltag($search_ref).'">';
- print '</td>';
- }
- // Label
- if ($arrayfields['label']['checked']) {
- print '<td class="liste_titre">';
- print '<input type="text" class="flat" size="10" name="search_label" value="'.dol_escape_htmltag($search_label).'">';
- print '</td>';
- }
- // Payment date
- if ($arrayfields['datep']['checked']) {
- print '<td class="liste_titre center">';
- print '<div class="nowrap">';
- print $form->selectDate($search_datep_start ? $search_datep_start : -1, 'search_date_start', 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('From'));
- print '</div>';
- print '<div class="nowrap">';
- print $form->selectDate($search_datep_end ? $search_datep_end : -1, 'search_date_end', 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('to'));
- print '</div>';
- print '</td>';
- }
- // Value date
- if ($arrayfields['datev']['checked']) {
- print '<td class="liste_titre center">';
- print '<div class="nowrap">';
- print $form->selectDate($search_datev_start ? $search_datev_start : -1, 'search_date_value_start', 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('From'));
- print '</div>';
- print '<div class="nowrap">';
- print $form->selectDate($search_datev_end ? $search_datev_end : -1, 'search_date_value_end', 0, 0, 1, '', 1, 0, 0, '', '', '', '', 1, '', $langs->trans('to'));
- print '</div>';
- print '</td>';
- }
- // Payment type
- if ($arrayfields['type']['checked']) {
- print '<td class="liste_titre center">';
- $form->select_types_paiements($typeid, 'typeid', '', 0, 1, 1, 16, 1, 'maxwidth100');
- print '</td>';
- }
- // Project
- if ($arrayfields['project']['checked']) {
- print '<td class="liste_titre">';
- // TODO
- print '</td>';
- }
- // Bank account
- if ($arrayfields['bank']['checked']) {
- print '<td class="liste_titre">';
- $form->select_comptes($search_bank_account, 'search_account', 0, '', 1, '', 0, 'maxwidth100');
- print '</td>';
- }
- // Bank entry
- if ($arrayfields['entry']['checked']) {
- print '<td class="liste_titre left">';
- print '<input name="search_bank_entry" class="flat maxwidth50" type="text" value="'.dol_escape_htmltag($search_bank_entry).'">';
- print '</td>';
- }
- // Accounting account
- if ($arrayfields['account']['checked']) {
- print '<td class="liste_titre">';
- print '<div class="nowrap">';
- print $formaccounting->select_account($search_accountancy_account, 'search_accountancy_account', 1, array(), 1, 1, 'maxwidth200');
- print '</div>';
- print '</td>';
- }
- // Subledger account
- if ($arrayfields['subledger']['checked']) {
- print '<td class="liste_titre">';
- print '<div class="nowrap">';
- print $formaccounting->select_auxaccount($search_accountancy_subledger, 'search_accountancy_subledger', 1, 'maxwidth200');
- print '</div>';
- print '</td>';
- }
- // Debit
- if ($arrayfields['debit']['checked']) {
- print '<td class="liste_titre right">';
- print '<input name="search_amount_deb" class="flat maxwidth50" type="text" value="'.dol_escape_htmltag($search_amount_deb).'">';
- print '</td>';
- }
- // Credit
- if ($arrayfields['credit']['checked']) {
- print '<td class="liste_titre right">';
- print '<input name="search_amount_cred" class="flat maxwidth50" type="text" size="8" value="'.dol_escape_htmltag($search_amount_cred).'">';
- print '</td>';
- }
- print '<td class="liste_titre maxwidthsearch">';
- $searchpicto = $form->showFilterAndCheckAddButtons(0);
- print $searchpicto;
- print '</td>';
- print '</tr>';
- print '<tr class="liste_titre">';
- if (!empty($conf->global->MAIN_VIEW_LINE_NUMBER_IN_LIST)) {
- print_liste_field_titre('#', $_SERVER['PHP_SELF'], '', '', $param, '', $sortfield, $sortorder);
- }
- if ($arrayfields['ref']['checked']) {
- print_liste_field_titre($arrayfields['ref']['label'], $_SERVER["PHP_SELF"], 'v.rowid', '', $param, '', $sortfield, $sortorder);
- }
- if ($arrayfields['label']['checked']) {
- print_liste_field_titre($arrayfields['label']['label'], $_SERVER["PHP_SELF"], 'v.label', '', $param, '', $sortfield, $sortorder);
- }
- if ($arrayfields['datep']['checked']) {
- print_liste_field_titre($arrayfields['datep']['label'], $_SERVER["PHP_SELF"], 'v.datep,v.rowid', '', $param, '', $sortfield, $sortorder, 'center ');
- }
- if ($arrayfields['datev']['checked']) {
- print_liste_field_titre($arrayfields['datev']['label'], $_SERVER["PHP_SELF"], 'v.datev,v.rowid', '', $param, '', $sortfield, $sortorder, 'center ');
- }
- if ($arrayfields['type']['checked']) {
- print_liste_field_titre($arrayfields['type']['label'], $_SERVER["PHP_SELF"], 'type', '', $param, '', $sortfield, $sortorder, 'center ');
- }
- if ($arrayfields['project']['checked']) {
- print_liste_field_titre($arrayfields['project']['label'], $_SERVER["PHP_SELF"], 'fk_project', '', $param, '', $sortfield, $sortorder);
- }
- if ($arrayfields['bank']['checked']) {
- print_liste_field_titre($arrayfields['bank']['label'], $_SERVER["PHP_SELF"], 'ba.label', '', $param, '', $sortfield, $sortorder);
- }
- if ($arrayfields['entry']['checked']) {
- print_liste_field_titre($arrayfields['entry']['label'], $_SERVER["PHP_SELF"], 'ba.label', '', $param, '', $sortfield, $sortorder);
- }
- if ($arrayfields['account']['checked']) {
- print_liste_field_titre($arrayfields['account']['label'], $_SERVER["PHP_SELF"], 'v.accountancy_code', '', $param, '', $sortfield, $sortorder, 'left ');
- }
- if ($arrayfields['subledger']['checked']) {
- print_liste_field_titre($arrayfields['subledger']['label'], $_SERVER["PHP_SELF"], 'v.subledger_account', '', $param, '', $sortfield, $sortorder, 'left ');
- }
- if ($arrayfields['debit']['checked']) {
- print_liste_field_titre($arrayfields['debit']['label'], $_SERVER["PHP_SELF"], 'v.amount', '', $param, '', $sortfield, $sortorder, 'right ');
- }
- if ($arrayfields['credit']['checked']) {
- print_liste_field_titre($arrayfields['credit']['label'], $_SERVER["PHP_SELF"], 'v.amount', '', $param, '', $sortfield, $sortorder, 'right ');
- }
- // Fields from hook
- $parameters = array('arrayfields'=>$arrayfields, 'param'=>$param, 'sortfield'=>$sortfield, 'sortorder'=>$sortorder);
- $reshook = $hookmanager->executeHooks('printFieldListOption', $parameters); // Note that $action and $object may have been modified by hook
- print $hookmanager->resPrint;
- print_liste_field_titre($selectedfields, $_SERVER["PHP_SELF"], '', '', '', '', $sortfield, $sortorder, 'maxwidthsearch ');
- print '</tr>';
- $totalarray = array();
- while ($i < min($num, $limit)) {
- $obj = $db->fetch_object($result);
- $variousstatic->id = $obj->rowid;
- $variousstatic->ref = $obj->rowid;
- $variousstatic->label = $obj->label;
- print '<tr class="oddeven">';
- // No
- if (!empty($conf->global->MAIN_VIEW_LINE_NUMBER_IN_LIST)) {
- print '<td>'.(($offset * $limit) + $i).'</td>';
- }
- // Ref
- if ($arrayfields['ref']['checked']) {
- print '<td>'.$variousstatic->getNomUrl(1)."</td>";
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Label payment
- if ($arrayfields['label']['checked']) {
- print '<td class="tdoverflowmax150" title="'.$variousstatic->label.'">'.$variousstatic->label."</td>";
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Date payment
- if ($arrayfields['datep']['checked']) {
- print '<td class="center">'.dol_print_date($obj->datep, 'day')."</td>";
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Date value
- if ($arrayfields['datev']['checked']) {
- print '<td class="center">'.dol_print_date($obj->datev, 'day')."</td>";
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Type
- if ($arrayfields['type']['checked']) {
- print '<td class="center">';
- if ($obj->payment_code) {
- print $langs->trans("PaymentTypeShort".$obj->payment_code);
- print ' ';
- }
- print $obj->num_payment;
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Project
- if ($arrayfields['project']['checked']) {
- print '<td class="nowraponall">';
- if ($obj->fk_project > 0) {
- $proj->fetch($obj->fk_project);
- print $proj->getNomUrl(1);
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Bank account
- if ($arrayfields['bank']['checked']) {
- print '<td class="nowraponall">';
- if ($obj->bid > 0) {
- $accountstatic->id = $obj->bid;
- $accountstatic->ref = $obj->bref;
- $accountstatic->number = $obj->bnumber;
- if (!empty($conf->accounting->enabled)) {
- $accountstatic->account_number = $obj->bank_account_number;
- $accountingjournal->fetch($obj->accountancy_journal);
- $accountstatic->accountancy_journal = $accountingjournal->getNomUrl(0, 1, 1, '', 1);
- }
- $accountstatic->label = $obj->blabel;
- print $accountstatic->getNomUrl(1);
- } else {
- print ' ';
- }
- print '</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Bank entry
- if ($arrayfields['entry']['checked']) {
- $bankline->fetch($obj->fk_bank);
- print '<td>'.$bankline->getNomUrl(1).'</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Accounting account
- if ($arrayfields['account']['checked']) {
- $accountingaccount->fetch('', $obj->accountancy_code, 1);
- print '<td>'.$accountingaccount->getNomUrl(0, 1, 1, '', 1).'</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Accounting subledger account
- if ($arrayfields['subledger']['checked']) {
- print '<td>'.length_accounta($obj->subledger_account).'</td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- }
- // Debit
- if ($arrayfields['debit']['checked']) {
- print '<td class="nowrap right">';
- if ($obj->sens == 0) {
- print '<span class="amount">'.price($obj->amount).'</span>';
- $totalarray['val']['total_deb'] += $obj->amount;
- }
- if (!$i) {
- $totalarray['nbfield']++;
- }
- if (!$i) {
- $totalarray['pos'][$totalarray['nbfield']] = 'total_deb';
- }
- print '</td>';
- }
- // Credit
- if ($arrayfields['credit']['checked']) {
- print '<td class="nowrap right">';
- if ($obj->sens == 1) {
- print '<span class="amount">'.price($obj->amount).'</span>';
- $totalarray['val']['total_cred'] += $obj->amount;
- }
- if (!$i) {
- $totalarray['nbfield']++;
- }
- if (!$i) {
- $totalarray['pos'][$totalarray['nbfield']] = 'total_cred';
- }
- print '</td>';
- }
- print '<td></td>';
- if (!$i) {
- $totalarray['nbfield']++;
- }
- print "</tr>";
- $i++;
- }
- // Show total line
- include DOL_DOCUMENT_ROOT.'/core/tpl/list_print_total.tpl.php';
- print "</table>";
- print '</div>';
- print '</form>';
- $db->free($result);
- } else {
- dol_print_error($db);
- }
- // End of page
- llxFooter();
- $db->close();
|