dolibarr/htdocs/compta/paiement/cheque/list.php

258 lines
8.7 KiB
PHP
Raw Normal View History

<?php
/* Copyright (C) 2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2007-2016 Laurent Destailleur <eldy@users.sourceforge.net>
2018-10-27 14:43:12 +02:00
* Copyright (C) 2009-2012 Regis Houssin <regis.houssin@inodbox.com>
2019-01-28 21:39:22 +01:00
* Copyright (C) 2014 Alexandre Spangaro <aspangaro@open-dsi.fr>
2016-04-03 11:56:31 +02:00
* Copyright (C) 2016 Juanjo Menent <jmenent@2byte.es>
*
* 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
2019-09-23 21:55:30 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2009-07-15 17:04:58 +02:00
/**
* \file htdocs/compta/paiement/cheque/list.php
2009-07-15 17:04:58 +02:00
* \ingroup compta
* \brief Page list of cheque deposits
2009-07-15 17:04:58 +02:00
*/
2018-07-26 11:57:25 +02:00
require '../../../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/compta/paiement/cheque/class/remisecheque.class.php';
require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
2013-06-05 16:24:32 +02:00
2018-05-27 09:27:09 +02:00
// Load translation files required by the page
$langs->loadLangs(array('banks', 'categories', 'bills'));
2008-02-25 17:30:43 +01:00
// Security check
2021-02-23 21:09:01 +01:00
if ($user->socid) {
$socid = $user->socid;
}
$result = restrictedArea($user, 'banque', '', '');
$search_ref = GETPOST('search_ref', 'alpha');
$search_account = GETPOST('search_account', 'int');
$search_amount = GETPOST('search_amount', 'alpha');
$limit = GETPOST('limit', 'int') ?GETPOST('limit', 'int') : $conf->liste_limit;
2022-01-13 11:09:37 +01:00
$sortfield = GETPOST('sortfield', 'aZ09comma');
$sortorder = GETPOST('sortorder', 'aZ09comma');
$page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
2021-02-23 21:09:01 +01:00
if (empty($page) || $page == -1) {
$page = 0;
} // If $page is not defined, or '' or -1
$offset = $limit * $page;
2010-11-20 14:08:44 +01:00
$pageprev = $page - 1;
$pagenext = $page + 1;
2021-02-23 21:09:01 +01:00
if (!$sortorder) {
$sortorder = "DESC";
}
if (!$sortfield) {
$sortfield = "dp";
}
$year = GETPOST("year");
$month = GETPOST("month");
$form = new Form($db);
$formother = new FormOther($db);
$checkdepositstatic = new RemiseCheque($db);
$accountstatic = new Account($db);
/*
* Actions
*/
2014-11-01 14:28:28 +01:00
// If click on purge search criteria ?
2021-02-23 21:09:01 +01:00
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
$search_ref = '';
$search_amount = '';
$search_account = '';
$year = '';
$month = '';
2014-11-01 14:28:28 +01:00
}
/*
2009-07-15 17:04:58 +02:00
* View
*/
llxHeader('', $langs->trans("ChequesReceipts"));
2016-04-03 11:56:31 +02:00
$sql = "SELECT bc.rowid, bc.ref as ref, bc.date_bordereau as dp,";
$sql .= " bc.nbcheque, bc.amount, bc.statut,";
$sql .= " ba.rowid as bid, ba.label";
$sql .= " FROM ".MAIN_DB_PREFIX."bordereau_cheque as bc,";
$sql .= " ".MAIN_DB_PREFIX."bank_account as ba";
$sql .= " WHERE bc.fk_bank_account = ba.rowid";
$sql .= " AND bc.entity = ".$conf->entity;
// Search criteria
2021-02-23 21:09:01 +01:00
if ($search_ref) {
$sql .= natural_search("bc.ref", $search_ref);
}
if ($search_account > 0) {
2021-06-09 15:36:47 +02:00
$sql .= " AND bc.fk_bank_account = ".((int) $search_account);
2021-02-23 21:09:01 +01:00
}
if ($search_amount) {
$sql .= natural_search("bc.amount", price2num($search_amount));
}
$sql .= dolSqlDateFilter('bc.date_bordereau', 0, $month, $year);
$sql .= $db->order($sortfield, $sortorder);
$nbtotalofrecords = '';
2021-02-23 21:09:01 +01:00
if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST)) {
2016-01-19 12:15:37 +01:00
$result = $db->query($sql);
$nbtotalofrecords = $db->num_rows($result);
2021-02-23 21:09:01 +01:00
if (($page * $limit) > $nbtotalofrecords) { // if total resultset is smaller then paging size (filtering), goto and load page 0
$page = 0;
$offset = 0;
}
2016-01-19 12:15:37 +01:00
}
$sql .= $db->plimit($limit + 1, $offset);
//print "$sql";
$resql = $db->query($sql);
2021-02-23 21:09:01 +01:00
if ($resql) {
2009-07-15 17:04:58 +02:00
$num = $db->num_rows($resql);
$i = 0;
$param = '';
2021-02-23 21:09:01 +01:00
if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
$param .= '&contextpage='.$contextpage;
}
if ($limit > 0 && $limit != $conf->liste_limit) {
$param .= '&limit='.$limit;
}
$url = DOL_URL_ROOT.'/compta/paiement/cheque/card.php?action=new';
2021-02-23 21:09:01 +01:00
if (!empty($socid)) {
$url .= '&socid='.$socid;
}
2020-09-18 10:52:17 +02:00
$newcardbutton = dolGetButtonTitle($langs->trans('NewCheckDeposit'), '', 'fa fa-plus-circle', $url, '', $user->rights->banque->cheque);
print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">';
2021-02-23 21:09:01 +01:00
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="view" value="'.dol_escape_htmltag($view).'">';
print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
2017-05-21 02:43:51 +02:00
print '<input type="hidden" name="page" value="'.$page.'">';
2017-06-11 16:18:21 +02:00
2020-04-09 16:36:39 +02:00
print_barre_liste($langs->trans("MenuChequeDeposits"), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, $nbtotalofrecords, 'bank_account', 0, $newcardbutton, '', $limit);
2017-06-11 16:18:21 +02:00
$moreforfilter = '';
2017-06-11 16:18:21 +02:00
print '<div class="div-table-responsive">';
print '<table class="tagtable liste'.($moreforfilter ? " listwithfilterbefore" : "").'">'."\n";
2019-07-05 21:37:25 +02:00
// Fields title search
2009-07-15 17:04:58 +02:00
print '<tr class="liste_titre">';
print '<td class="liste_titre" align="left">';
2014-11-02 14:19:28 +01:00
print '<input class="flat" type="text" size="4" name="search_ref" value="'.$search_ref.'">';
print '</td>';
print '<td class="liste_titre" align="center">';
2021-02-23 21:09:01 +01:00
if (!empty($conf->global->MAIN_LIST_FILTER_ON_DAY)) {
print '<input class="flat" type="text" size="1" maxlength="2" name="day" value="'.$day.'">';
}
print '<input class="flat" type="text" size="1" maxlength="2" name="month" value="'.$month.'">';
2022-05-18 11:38:56 +02:00
print $formother->selectyear($year ? $year : -1, 'year', 1, 20, 5);
print '</td>';
print '<td class="liste_titre">';
$form->select_comptes($search_account, 'search_account', 0, '', 1);
print '</td>';
2009-07-15 17:04:58 +02:00
print '<td class="liste_titre">&nbsp;</td>';
2019-02-10 11:01:23 +01:00
print '<td class="liste_titre right">';
2016-12-03 15:22:26 +01:00
print '<input class="flat maxwidth50" type="text" name="search_amount" value="'.$search_amount.'">';
2009-07-15 17:04:58 +02:00
print '</td>';
print '<td class="liste_titre"></td>';
print '<td class="liste_titre maxwidthsearch">';
$searchpicto = $form->showFilterAndCheckAddButtons(0);
print $searchpicto;
print '</td>';
print "</tr>\n";
2009-07-15 17:04:58 +02:00
print '<tr class="liste_titre">';
print_liste_field_titre("Ref", $_SERVER["PHP_SELF"], "bc.ref", "", $param, "", $sortfield, $sortorder);
print_liste_field_titre("DateCreation", $_SERVER["PHP_SELF"], "dp", "", $param, 'align="center"', $sortfield, $sortorder);
print_liste_field_titre("Account", $_SERVER["PHP_SELF"], "ba.label", "", $param, "", $sortfield, $sortorder);
2019-02-10 11:01:23 +01:00
print_liste_field_titre("NbOfCheques", $_SERVER["PHP_SELF"], "bc.nbcheque", "", $param, 'class="right"', $sortfield, $sortorder);
print_liste_field_titre("Amount", $_SERVER["PHP_SELF"], "bc.amount", "", $param, 'class="right"', $sortfield, $sortorder);
print_liste_field_titre("Status", $_SERVER["PHP_SELF"], "bc.statut", "", $param, 'class="right"', $sortfield, $sortorder);
2017-06-11 16:18:21 +02:00
print_liste_field_titre('');
print "</tr>\n";
2021-02-23 21:09:01 +01:00
if ($num > 0) {
while ($i < min($num, $limit)) {
$objp = $db->fetch_object($resql);
print '<tr class="oddeven">';
// Num ref cheque
print '<td>';
$checkdepositstatic->id = $objp->rowid;
$checkdepositstatic->ref = ($objp->ref ? $objp->ref : $objp->rowid);
$checkdepositstatic->statut = $objp->statut;
print $checkdepositstatic->getNomUrl(1);
print '</td>';
// Date
print '<td class="center">'.dol_print_date($db->jdate($objp->dp), 'day').'</td>'; // TODO Use date hour
// Bank
print '<td>';
2021-02-23 21:09:01 +01:00
if ($objp->bid) {
print '<a href="'.DOL_URL_ROOT.'/compta/bank/bankentries_list.php?account='.$objp->bid.'">'.img_object($langs->trans("ShowAccount"), 'account').' '.$objp->label.'</a>';
} else {
print '&nbsp;';
}
print '</td>';
// Number of cheques
print '<td class="right">'.$objp->nbcheque.'</td>';
// Amount
2021-03-29 13:00:17 +02:00
print '<td class="right"><span class="amount">'.price($objp->amount).'</span></td>';
// Statut
print '<td class="right">';
print $checkdepositstatic->LibStatut($objp->statut, 5);
print '</td>';
print '<td></td>';
print "</tr>\n";
$i++;
}
} else {
2021-02-23 21:09:01 +01:00
print '<tr class="oddeven">';
print '<td colspan="7" class="opacitymedium">'.$langs->trans("None")."</td>";
print '</tr>';
}
2009-07-15 17:04:58 +02:00
print "</table>";
print "</div>";
2009-07-15 17:04:58 +02:00
print "</form>\n";
2020-05-21 15:05:19 +02:00
} else {
2009-07-15 17:04:58 +02:00
dol_print_error($db);
}
2018-08-08 12:29:36 +02:00
// End of page
llxFooter();
$db->close();