123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- <?php
- /* Copyright (C) 2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2007-2016 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2009-2012 Regis Houssin <regis.houssin@inodbox.com>
- * Copyright (C) 2014 Alexandre Spangaro <aspangaro@open-dsi.fr>
- * 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
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/compta/paiement/cheque/list.php
- * \ingroup compta
- * \brief Page list of cheque deposits
- */
- 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';
- // Load translation files required by the page
- $langs->loadLangs(array('banks', 'categories', 'bills'));
- // Security check
- if ($user->societe_id) $socid=$user->societe_id;
- $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;
- $sortfield = GETPOST("sortfield",'alpha');
- $sortorder = GETPOST("sortorder",'alpha');
- $page = 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 (! $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
- */
- // If click on purge search criteria ?
- 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='';
- }
- /*
- * View
- */
- llxHeader('',$langs->trans("ChequesReceipts"));
- $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
- if ($search_ref) $sql.=natural_search("bc.ref",$search_ref);
- if ($search_account > 0) $sql.=" AND bc.fk_bank_account=".$search_account;
- if ($search_amount) $sql.=natural_search("bc.amount", price2num($search_amount));
- if ($month > 0)
- {
- if ($year > 0 && empty($day))
- $sql.= " AND bc.date_bordereau BETWEEN '".$db->idate(dol_get_first_day($year,$month,false))."' AND '".$db->idate(dol_get_last_day($year,$month,false))."'";
- elseif ($year > 0 && ! empty($day))
- $sql.= " AND bc.date_bordereau BETWEEN '".$db->idate(dol_mktime(0, 0, 0, $month, $day, $year))."' AND '".$db->idate(dol_mktime(23, 59, 59, $month, $day, $year))."'";
- else
- $sql.= " AND date_format(bc.date_bordereau, '%m') = '".$month."'";
- }
- elseif ($year > 0)
- {
- $sql.= " AND bc.date_bordereau BETWEEN '".$db->idate(dol_get_first_day($year,1,false))."' AND '".$db->idate(dol_get_last_day($year,12,false))."'";
- }
- $sql.= $db->order($sortfield,$sortorder);
- $nbtotalofrecords = '';
- if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST))
- {
- $result = $db->query($sql);
- $nbtotalofrecords = $db->num_rows($result);
- if (($page * $limit) > $nbtotalofrecords) // if total resultset is smaller then paging size (filtering), goto and load page 0
- {
- $page = 0;
- $offset = 0;
- }
- }
- $sql.= $db->plimit($limit+1, $offset);
- //print "$sql";
- $resql = $db->query($sql);
- if ($resql)
- {
- $num = $db->num_rows($resql);
- $i = 0;
- $param='';
- if (! empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) $param.='&contextpage='.$contextpage;
- if ($limit > 0 && $limit != $conf->liste_limit) $param.='&limit='.$limit;
- $newcardbutton='';
- if ($user->rights->banque->cheque)
- {
- $newcardbutton = '<a class="butActionNew" href="'.DOL_URL_ROOT.'/compta/paiement/cheque/card.php?action=new"><span class="valignmiddle">'.$langs->trans('NewCheckDeposit').'</span>';
- $newcardbutton.= '<span class="fa fa-plus-circle valignmiddle"></span>';
- $newcardbutton.= '</a>';
- }
- 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="'.$_SESSION['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.'">';
- print '<input type="hidden" name="page" value="'.$page.'">';
- print_barre_liste($langs->trans("MenuChequeDeposits"), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, $nbtotalofrecords, 'title_bank.png', 0, $newcardbutton, '', $limit);
- $moreforfilter='';
- print '<div class="div-table-responsive">';
- print '<table class="tagtable liste'.($moreforfilter?" listwithfilterbefore":"").'">'."\n";
- // Lignes des champs de filtre
- print '<tr class="liste_titre">';
- print '<td class="liste_titre" align="left">';
- print '<input class="flat" type="text" size="4" name="search_ref" value="'.$search_ref.'">';
- print '</td>';
- print '<td class="liste_titre" align="center">';
- 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.'">';
- $formother->select_year($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>';
- print '<td class="liste_titre"> </td>';
- print '<td class="liste_titre" align="right">';
- print '<input class="flat maxwidth50" type="text" name="search_amount" value="'.$search_amount.'">';
- print '</td>';
- print '<td class="liste_titre"></td>';
- print '<td class="liste_titre" align="right">';
- $searchpicto=$form->showFilterAndCheckAddButtons(0);
- print $searchpicto;
- print '</td>';
- print "</tr>\n";
- 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);
- print_liste_field_titre("NbOfCheques",$_SERVER["PHP_SELF"],"bc.nbcheque","",$param,'align="right"',$sortfield,$sortorder);
- print_liste_field_titre("Amount",$_SERVER["PHP_SELF"],"bc.amount","",$param,'align="right"',$sortfield,$sortorder);
- print_liste_field_titre("Status",$_SERVER["PHP_SELF"],"bc.statut","",$param,'align="right"',$sortfield,$sortorder);
- print_liste_field_titre('');
- print "</tr>\n";
- 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 align="center">'.dol_print_date($db->jdate($objp->dp),'day').'</td>'; // TODO Use date hour
- // Bank
- print '<td>';
- 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 ' ';
- print '</td>';
- // Number of cheques
- print '<td align="right">'.$objp->nbcheque.'</td>';
- // Amount
- print '<td align="right">'.price($objp->amount).'</td>';
- // Statut
- print '<td align="right">';
- print $checkdepositstatic->LibStatut($objp->statut,5);
- print '</td>';
- print '<td></td>';
- print "</tr>\n";
- $i++;
- }
- }
- else
- {
- print '<tr class="oddeven">';
- print '<td colspan="7" class="opacitymedium">'.$langs->trans("None")."</td>";
- print '</tr>';
- }
- print "</table>";
- print "</div>";
- print "</form>\n";
- }
- else
- {
- dol_print_error($db);
- }
- // End of page
- llxFooter();
- $db->close();
|