mirror of
https://github.com/YunoHost-Apps/dolibarr_ynh.git
synced 2024-09-03 18:35:53 +02:00
355 lines
13 KiB
PHP
355 lines
13 KiB
PHP
<?php
|
|
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2004-2015 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2005-2010 Regis Houssin <regis.houssin@capnetworks.com>
|
|
* Copyright (C) 2012 Vinícius Nogueira <viniciusvgn@gmail.com>
|
|
* Copyright (C) 2014 Florian Henry <florian.henry@open-cooncept.pro>
|
|
* Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/compta/bank/search.php
|
|
* \ingroup banque
|
|
* \brief List of bank transactions
|
|
*/
|
|
|
|
require('../../main.inc.php');
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/bank.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/bankcateg.class.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php';
|
|
|
|
$langs->load("banks");
|
|
$langs->load("categories");
|
|
$langs->load("companies");
|
|
$langs->load("margins");
|
|
|
|
// Security check
|
|
if ($user->societe_id) $socid=$user->societe_id;
|
|
$result=restrictedArea($user,'banque');
|
|
|
|
$description=GETPOST("description");
|
|
$debit=GETPOST("debit");
|
|
$credit=GETPOST("credit");
|
|
$type=GETPOST("type");
|
|
$account=GETPOST("account");
|
|
$bid=GETPOST("bid","int");
|
|
$search_dt_start = dol_mktime(0, 0, 0, GETPOST('search_start_dtmonth', 'int'), GETPOST('search_start_dtday', 'int'), GETPOST('search_start_dtyear', 'int'));
|
|
$search_dt_end = dol_mktime(0, 0, 0, GETPOST('search_end_dtmonth', 'int'), GETPOST('search_end_dtday', 'int'), GETPOST('search_end_dtyear', 'int'));
|
|
|
|
$param='';
|
|
if (!empty($description)) $param.='&description='.$description;
|
|
if (!empty($type)) $param.='&type='.$type;
|
|
if (!empty($debit)) $param.='&debit='.$debit;
|
|
if (!empty($credit)) $param.='&credit='.$credit;
|
|
if (!empty($account)) $param.='&account='.$account;
|
|
if (!empty($bid)) $param.='&bid='.$bid;
|
|
if (dol_strlen($search_dt_start) > 0)
|
|
$param .= '&search_start_dtmonth=' . GETPOST('search_start_dtmonth', 'int') . '&search_start_dtday=' . GETPOST('search_start_dtday', 'int') . '&search_start_dtyear=' . GETPOST('search_start_dtyear', 'int');
|
|
if (dol_strlen($search_dt_end) > 0)
|
|
$param .= '&search_end_dtmonth=' . GETPOST('search_end_dtmonth', 'int') . '&search_end_dtday=' . GETPOST('search_end_dtday', 'int') . '&search_end_dtyear=' . GETPOST('search_end_dtyear', 'int');
|
|
|
|
$sortfield = GETPOST("sortfield",'alpha');
|
|
$sortorder = GETPOST("sortorder",'alpha');
|
|
$page = GETPOST("page",'int');
|
|
if ($page == -1) { $page = 0; }
|
|
$offset = $conf->liste_limit * $page;
|
|
$pageprev = $page - 1;
|
|
$pagenext = $page + 1;
|
|
$limit = $conf->liste_limit;
|
|
if (! $sortorder) $sortorder='DESC';
|
|
if (! $sortfield) $sortfield='b.dateo';
|
|
|
|
if (GETPOST("button_removefilter_x") || GETPOST("button_removefilter")) // Both test are required to be compatible with all browsers
|
|
{
|
|
$description="";
|
|
$type="";
|
|
$debit="";
|
|
$credit="";
|
|
$account="";
|
|
$bid="";
|
|
}
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
$companystatic=new Societe($db);
|
|
$bankaccountstatic=new Account($db);
|
|
|
|
llxHeader();
|
|
|
|
$form = new Form($db);
|
|
$formother = new FormOther($db);
|
|
|
|
if ($vline) $viewline = $vline;
|
|
else $viewline = 50;
|
|
|
|
$sql = "SELECT b.rowid, b.dateo as do, b.datev as dv, b.amount, b.label, b.rappro, b.num_releve, b.num_chq,";
|
|
$sql.= " b.fk_account, b.fk_type,";
|
|
$sql.= " ba.rowid as bankid, ba.ref as bankref,";
|
|
$sql.= " bu.label as labelurl, bu.url_id";
|
|
$sql.= " FROM ";
|
|
if ($bid) $sql.= MAIN_DB_PREFIX."bank_class as l,";
|
|
$sql.= " ".MAIN_DB_PREFIX."bank_account as ba,";
|
|
$sql.= " ".MAIN_DB_PREFIX."bank as b";
|
|
$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."bank_url as bu ON bu.fk_bank = b.rowid AND type = 'company'";
|
|
$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON bu.url_id = s.rowid";
|
|
$sql.= " WHERE b.fk_account = ba.rowid";
|
|
$sql.= " AND ba.entity IN (".getEntity('bank_account', 1).")";
|
|
if (GETPOST("req_nb"))
|
|
{
|
|
$sql.= " AND b.num_chq LIKE '%".$db->escape(GETPOST("req_nb"))."%'";
|
|
$param.='&req_nb='.urlencode(GETPOST("req_nb"));
|
|
}
|
|
if (GETPOST("thirdparty"))
|
|
{
|
|
$sql.=" AND s.nom LIKE '%".$db->escape(GETPOST("thirdparty"))."%'";
|
|
$param.='&thirdparty='.urlencode(GETPOST("thirdparty"));
|
|
}
|
|
if ($bid)
|
|
{
|
|
$sql.= " AND b.rowid=l.lineid AND l.fk_categ=".$bid;
|
|
}
|
|
if (! empty($type))
|
|
{
|
|
$sql.= " AND b.fk_type = '".$db->escape($type)."' ";
|
|
}
|
|
// Search period criteria
|
|
if (dol_strlen($search_dt_start)>0) {
|
|
$sql .= " AND b.dateo >= '" . $db->idate($search_dt_start) . "'";
|
|
}
|
|
if (dol_strlen($search_dt_end)>0) {
|
|
$sql .= " AND b.dateo <= '" . $db->idate($search_dt_end) . "'";
|
|
}
|
|
// Search criteria amount
|
|
$si=0;
|
|
$debit = price2num(str_replace('-','',$debit));
|
|
$credit = price2num(str_replace('-','',$credit));
|
|
if (is_numeric($debit)) {
|
|
$si++;
|
|
$sqlw[$si] .= " b.amount = -" . $debit;
|
|
}
|
|
if (is_numeric($credit)) {
|
|
$si++;
|
|
$sqlw[$si] .= " b.amount = " . $credit;
|
|
}
|
|
// Other search criteria
|
|
for ($i = 1 ; $i <= $si; $i++) {
|
|
$sql .= " AND " . $sqlw[$i];
|
|
}
|
|
$sql.= $db->order($sortfield,$sortorder);
|
|
$sql.= $db->plimit($limit+1,$offset);
|
|
//print $sql;
|
|
|
|
dol_syslog('compta/bank/search.php::', LOG_DEBUG);
|
|
$resql = $db->query($sql);
|
|
if ($resql)
|
|
{
|
|
$var=True;
|
|
$num = $db->num_rows($resql);
|
|
$i = 0;
|
|
|
|
// Title
|
|
$bankcateg=new BankCateg($db);
|
|
if (GETPOST("bid"))
|
|
{
|
|
$result=$bankcateg->fetch(GETPOST("bid"));
|
|
print_barre_liste($langs->trans("BankTransactionForCategory",$bankcateg->label).' '.($socid?' '.$soc->name:''), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num,'', 'title_bank.png');
|
|
}
|
|
else
|
|
{
|
|
print_barre_liste($langs->trans("BankTransactions"), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, '', 'title_bank.png');
|
|
}
|
|
|
|
print '<form method="post" action="search.php" name="search_form">'."\n";
|
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">'."\n";
|
|
|
|
$moreforfilter .= $langs->trans('Period') . ' ('.$langs->trans('DateOperationShort').') : ' . $langs->trans('StartDate') . ' ';
|
|
$moreforfilter .= $form->select_date($search_dt_start, 'search_start_dt', 0, 0, 1, "search_form", 1, 0, 1);
|
|
$moreforfilter .= ' - ';
|
|
$moreforfilter .= $langs->trans('EndDate') . ' ' . $form->select_date($search_dt_end, 'search_end_dt', 0, 0, 1, "search_form", 1, 0, 1);
|
|
|
|
|
|
if ($moreforfilter) {
|
|
print '<div class="liste_titre">';
|
|
print $moreforfilter;
|
|
print '</div>'."\n";
|
|
}
|
|
|
|
print '<table class="liste" width="100%">'."\n";
|
|
print '<tr class="liste_titre">';
|
|
print_liste_field_titre($langs->trans('Ref'),$_SERVER['PHP_SELF'],'b.rowid','',$param,'',$sortfield,$sortorder);
|
|
print_liste_field_titre($langs->trans('DateOperationShort'),$_SERVER['PHP_SELF'],'b.dateo','',$param,'align="center"',$sortfield,$sortorder);
|
|
print_liste_field_titre($langs->trans('Value'),$_SERVER['PHP_SELF'],'b.datev','',$param,'align="center"',$sortfield,$sortorder);
|
|
print_liste_field_titre($langs->trans("Type"),$_SERVER['PHP_SELF'],'','',$param,'align="center"',$sortfield,$sortorder);
|
|
print_liste_field_titre($langs->trans("Numero"));
|
|
print_liste_field_titre($langs->trans("Description"));
|
|
print_liste_field_titre($langs->trans("ThirdParty"));
|
|
print_liste_field_titre($langs->trans("Debit"),$_SERVER['PHP_SELF'],'','',$param,'align="right"',$sortfield,$sortorder);
|
|
print_liste_field_titre($langs->trans("Credit"),$_SERVER['PHP_SELF'],'','',$param,'align="right"',$sortfield,$sortorder);
|
|
print_liste_field_titre($langs->trans("Account"),$_SERVER['PHP_SELF'],'','',$param,'align="right"',$sortfield,$sortorder);
|
|
print "</tr>\n";
|
|
|
|
print '<tr class="liste_titre">';
|
|
print '<td class="liste_titre"> </td>';
|
|
print '<td class="liste_titre"> </td>';
|
|
print '<td class="liste_titre"> </td>';
|
|
print '<td class="liste_titre" align="center">';
|
|
$form->select_types_paiements(empty($type)?'':$type, 'type', '', 2, 0, 1, 8);
|
|
print '</td>';
|
|
print '<td class="liste_titre"><input type="text" class="flat" name="req_nb" value="'.GETPOST("req_nb").'" size="2"></td>';
|
|
print '<td class="liste_titre">';
|
|
print '<input type="text" class="flat" name="description" size="10" value="'.$description.'">';
|
|
print '</td>';
|
|
print '<td class="liste_titre"><input type="text" class="flat" name="thirdparty" value="'.GETPOST("thirdparty").'" size="10"></td>';
|
|
print '<td class="liste_titre" align="right">';
|
|
print '<input type="text" class="flat" name="debit" size="4" value="'.$debit.'">';
|
|
print '</td>';
|
|
print '<td class="liste_titre" align="right">';
|
|
print '<input type="text" class="flat" name="credit" size="4" value="'.$credit.'">';
|
|
print '</td>';
|
|
print '<td class="liste_titre" align="right">';
|
|
print '<input type="hidden" name="action" value="search">';
|
|
if (! empty($_REQUEST['bid'])) print '<input type="hidden" name="bid" value="'.$_REQUEST["bid"].'">';
|
|
print '<input type="image" class="liste_titre" name="button_search" src="'.img_picto($langs->trans("Search"),'search.png','','',1).'" value="'.dol_escape_htmltag($langs->trans("Search")).'" title="'.dol_escape_htmltag($langs->trans("Search")).'">';
|
|
print '<input type="image" class="liste_titre" name="button_removefilter" src="'.img_picto($langs->trans("Search"),'searchclear.png','','',1).'" value="'.dol_escape_htmltag($langs->trans("RemoveFilter")).'" title="'.dol_escape_htmltag($langs->trans("RemoveFilter")).'">';
|
|
print "</td></tr>\n";
|
|
|
|
// Loop on each record
|
|
$total_debit=0;
|
|
$total_credit=0;
|
|
while ($i < min($num,$limit)) {
|
|
$objp = $db->fetch_object($resql);
|
|
$printline=false;
|
|
//Search Description
|
|
if ($description) {
|
|
preg_match('/\((.+)\)/i',$objp->label,$reg); // Si texte entoure de parenthese on tente recherche de traduction
|
|
if ($reg[1]) {
|
|
if ($langs->transnoentities($reg[1])==$description) {
|
|
$printline=true;
|
|
}
|
|
} elseif ($objp->label==$description) {
|
|
$printline=true;
|
|
}
|
|
} else {
|
|
$printline=true;
|
|
}
|
|
|
|
if ($printline) {
|
|
$var=!$var;
|
|
|
|
print "<tr ".$bc[$var].">";
|
|
|
|
// Ref
|
|
print '<td align="left" class="nowrap">';
|
|
print "<a href=\"ligne.php?rowid=".$objp->rowid.'">'.img_object($langs->trans("ShowPayment").': '.$objp->rowid, 'payment', 'class="classfortooltip"').' '.$objp->rowid."</a> ";
|
|
print '</td>';
|
|
|
|
// Date ope
|
|
print '<td align="center" class="nowrap">'.dol_print_date($db->jdate($objp->do),"day")."</td>\n";
|
|
|
|
// Date value
|
|
print '<td align="center" class="nowrap">'.dol_print_date($db->jdate($objp->dv),"day")."</td>\n";
|
|
|
|
// Payment type
|
|
print '<td align="center" class="nowrap">';
|
|
$labeltype=($langs->trans("PaymentTypeShort".$objp->fk_type)!="PaymentTypeShort".$objp->fk_type)?$langs->trans("PaymentTypeShort".$objp->fk_type):$langs->getLabelFromKey($db,$objp->fk_type,'c_paiement','code','libelle');
|
|
if ($labeltype == 'SOLD') print ' '; //$langs->trans("InitialBankBalance");
|
|
else print $labeltype;
|
|
print "</td>\n";
|
|
|
|
// Num
|
|
print '<td class="nowrap">'.($objp->num_chq?$objp->num_chq:"")."</td>\n";
|
|
|
|
// Description
|
|
print "<td>";
|
|
|
|
print "<a href=\"ligne.php?rowid=".$objp->rowid."&account=".$objp->fk_account."\">";
|
|
$reg=array();
|
|
preg_match('/\((.+)\)/i',$objp->label,$reg); // Si texte entoure de parenthee on tente recherche de traduction
|
|
if ($reg[1] && $langs->trans($reg[1])!=$reg[1]) print $langs->trans($reg[1]);
|
|
else print dol_trunc($objp->label,40);
|
|
print "</a> ";
|
|
|
|
print '</td>';
|
|
|
|
// Third party
|
|
print "<td>";
|
|
if ($objp->url_id)
|
|
{
|
|
$companystatic->id=$objp->url_id;
|
|
$companystatic->name=$objp->labelurl;
|
|
print $companystatic->getNomUrl(1);
|
|
}
|
|
else
|
|
{
|
|
print ' ';
|
|
}
|
|
print '</td>';
|
|
|
|
// Debit/Credit
|
|
if ($objp->amount < 0)
|
|
{
|
|
print '<td align="right">'.price($objp->amount * -1)."</td><td> </td>\n";
|
|
$total_debit+=$objp->amount;
|
|
}
|
|
else
|
|
{
|
|
print "<td> </td><td align=\"right\">".price($objp->amount)."</td>\n";
|
|
$total_credit+=$objp->amount;
|
|
}
|
|
|
|
// Bank account
|
|
print '<td align="right" class="nowrap">';
|
|
$bankaccountstatic->id=$objp->bankid;
|
|
$bankaccountstatic->label=$objp->bankref;
|
|
print $bankaccountstatic->getNomUrl(1);
|
|
print "</td>\n";
|
|
print "</tr>";
|
|
}
|
|
$i++;
|
|
}
|
|
if ($num>0) {
|
|
print '<tr class="liste_total">';
|
|
print '<td>' . $langs->trans('Total') . '</td>';
|
|
print '<td colspan="6"></td>';
|
|
print '<td align="right">' . price($total_debit * - 1) . '</td>';
|
|
print '<td align="right">' . price($total_credit) . '</td>';
|
|
print '<td></td>';
|
|
print '</tr>';
|
|
}
|
|
|
|
print "</table>";
|
|
print '</form>';
|
|
$db->free($resql);
|
|
}
|
|
else
|
|
{
|
|
dol_print_error($db);
|
|
}
|
|
|
|
// If no data to display after a search
|
|
if ($_POST["action"] == "search" && ! $num)
|
|
{
|
|
print $langs->trans("NoRecordFound");
|
|
}
|
|
|
|
|
|
$db->close();
|
|
|
|
llxFooter();
|