2012-08-22 23:27:53 +02:00
|
|
|
<?php
|
2009-04-27 22:37:50 +02:00
|
|
|
/* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
2012-12-30 15:13:49 +01:00
|
|
|
* Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.com>
|
2013-06-05 15:09:30 +02:00
|
|
|
* Copyright (C) 2010-2013 Juanjo Menent <jmenent@2byte.es>
|
2012-08-05 14:37:45 +02:00
|
|
|
* Copyright (C) 2005-2012 Laurent Destailleur <eldy@users.sourceforge.net>
|
2005-01-24 16:36:05 +01:00
|
|
|
*
|
|
|
|
|
* 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
|
2013-01-16 15:36:08 +01:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2005-01-24 16:36:05 +01:00
|
|
|
* (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
|
2011-08-01 00:21:57 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2008-11-04 17:58:26 +01:00
|
|
|
*/
|
|
|
|
|
|
2011-08-27 17:14:31 +02:00
|
|
|
/**
|
2012-08-05 14:37:45 +02:00
|
|
|
* \file htdocs/compta/prelevement/rejets.php
|
|
|
|
|
* \ingroup prelevement
|
|
|
|
|
* \brief Reject page
|
2005-01-24 16:36:05 +01:00
|
|
|
*/
|
2005-09-10 16:24:10 +02:00
|
|
|
|
2013-05-07 15:34:40 +02:00
|
|
|
require('../../main.inc.php');
|
2012-08-22 23:11:24 +02:00
|
|
|
require_once DOL_DOCUMENT_ROOT.'/compta/prelevement/class/rejetprelevement.class.php';
|
2013-05-01 20:54:45 +02:00
|
|
|
require_once DOL_DOCUMENT_ROOT.'/compta/prelevement/class/ligneprelevement.class.php';
|
2012-08-22 23:11:24 +02:00
|
|
|
require_once DOL_DOCUMENT_ROOT.'/compta/paiement/class/paiement.class.php';
|
2013-06-05 16:24:32 +02:00
|
|
|
require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
|
|
|
|
|
|
2018-05-27 09:27:09 +02:00
|
|
|
// Load translation files required by the page
|
|
|
|
|
$langs->loadLangs(array('banks', 'categories', 'withdrawals', 'companies'));
|
2008-11-04 17:58:26 +01:00
|
|
|
|
2009-04-27 22:37:50 +02:00
|
|
|
// Security check
|
2012-02-27 22:26:22 +01:00
|
|
|
$socid = GETPOST('socid','int');
|
2009-04-27 22:37:50 +02:00
|
|
|
if ($user->societe_id) $socid=$user->societe_id;
|
|
|
|
|
$result = restrictedArea($user, 'prelevement','','','bons');
|
2008-11-04 17:58:26 +01:00
|
|
|
|
2011-05-12 17:57:38 +02:00
|
|
|
// Get supervariables
|
2012-02-29 18:56:54 +01:00
|
|
|
$page = GETPOST('page','int');
|
|
|
|
|
$sortorder = GETPOST('sortorder','alpha');
|
|
|
|
|
$sortfield = GETPOST('sortfield','alpha');
|
2005-01-24 16:36:05 +01:00
|
|
|
|
2008-11-04 17:58:26 +01:00
|
|
|
/*
|
|
|
|
|
* View
|
|
|
|
|
*/
|
2005-09-10 16:24:10 +02:00
|
|
|
|
2009-04-27 22:37:50 +02:00
|
|
|
llxHeader('',$langs->trans("WithdrawsRefused"));
|
2005-01-24 16:36:05 +01:00
|
|
|
|
|
|
|
|
$offset = $conf->liste_limit * $page ;
|
|
|
|
|
$pageprev = $page - 1;
|
|
|
|
|
$pagenext = $page + 1;
|
|
|
|
|
|
2005-03-02 10:42:48 +01:00
|
|
|
if ($sortorder == "") $sortorder="DESC";
|
|
|
|
|
if ($sortfield == "") $sortfield="p.datec";
|
|
|
|
|
|
|
|
|
|
$rej = new RejetPrelevement($db, $user);
|
2013-06-05 15:09:30 +02:00
|
|
|
$ligne = new LignePrelevement($db, $user);
|
2005-01-24 16:36:05 +01:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Liste des factures
|
|
|
|
|
*
|
|
|
|
|
*/
|
2005-03-03 14:47:06 +01:00
|
|
|
$sql = "SELECT pl.rowid, pr.motif, p.ref, pl.statut";
|
2009-04-27 22:37:50 +02:00
|
|
|
$sql.= " , s.rowid as socid, s.nom";
|
|
|
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."prelevement_bons as p";
|
|
|
|
|
$sql.= " , ".MAIN_DB_PREFIX."prelevement_rejet as pr";
|
|
|
|
|
$sql.= " , ".MAIN_DB_PREFIX."prelevement_lignes as pl";
|
|
|
|
|
$sql.= " , ".MAIN_DB_PREFIX."societe as s";
|
|
|
|
|
$sql.= " WHERE pr.fk_prelevement_lignes = pl.rowid";
|
|
|
|
|
$sql.= " AND pl.fk_prelevement_bons = p.rowid";
|
|
|
|
|
$sql.= " AND pl.fk_soc = s.rowid";
|
2009-05-08 16:40:28 +02:00
|
|
|
$sql.= " AND p.entity = ".$conf->entity;
|
2009-04-27 22:37:50 +02:00
|
|
|
if ($socid) $sql.= " AND s.rowid = ".$socid;
|
2014-09-13 19:04:25 +02:00
|
|
|
$sql.= " ".$db->order($sortfield, $sortorder);
|
|
|
|
|
$sql.= " ".$db->plimit($conf->liste_limit+1, $offset);
|
2005-01-24 16:36:05 +01:00
|
|
|
|
|
|
|
|
$result = $db->query($sql);
|
|
|
|
|
if ($result)
|
|
|
|
|
{
|
2010-11-18 18:10:31 +01:00
|
|
|
$num = $db->num_rows($result);
|
|
|
|
|
$i = 0;
|
2010-03-27 15:40:39 +01:00
|
|
|
|
2014-09-18 20:13:38 +02:00
|
|
|
print_barre_liste($langs->trans("WithdrawsRefused"), $page, $_SERVER["PHP_SELF"], $urladd, $sortfield, $sortorder, '', $num);
|
2010-11-18 18:10:31 +01:00
|
|
|
print"\n<!-- debut table -->\n";
|
|
|
|
|
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="4">';
|
|
|
|
|
print '<tr class="liste_titre">';
|
2017-08-02 13:31:53 +02:00
|
|
|
print_liste_field_titre("Line",$_SERVER["PHP_SELF"],"p.ref",'',$urladd);
|
|
|
|
|
print_liste_field_titre("ThirdParty",$_SERVER["PHP_SELF"],"s.nom",'',$urladd);
|
|
|
|
|
print_liste_field_titre("Reason",$_SERVER["PHP_SELF"],"pr.motif","",$urladd);
|
2015-06-26 06:23:29 +02:00
|
|
|
print "</tr>\n";
|
2005-01-24 16:36:05 +01:00
|
|
|
|
2010-11-18 18:10:31 +01:00
|
|
|
$total = 0;
|
2005-01-24 16:36:05 +01:00
|
|
|
|
2010-11-18 18:10:31 +01:00
|
|
|
while ($i < min($num,$conf->liste_limit))
|
|
|
|
|
{
|
|
|
|
|
$obj = $db->fetch_object($result);
|
2005-01-24 16:36:05 +01:00
|
|
|
|
2017-05-10 16:41:19 +02:00
|
|
|
print '<tr class="oddeven"><td>';
|
2013-05-01 20:54:45 +02:00
|
|
|
print $ligne->LibStatut($obj->statut,2).' ';
|
2010-11-18 18:10:31 +01:00
|
|
|
print '<a href="'.DOL_URL_ROOT.'/compta/prelevement/ligne.php?id='.$obj->rowid.'">';
|
2005-01-24 16:36:05 +01:00
|
|
|
|
2010-11-18 18:10:31 +01:00
|
|
|
print substr('000000'.$obj->rowid, -6)."</a></td>";
|
2005-01-24 16:36:05 +01:00
|
|
|
|
2014-09-18 21:18:25 +02:00
|
|
|
print '<td><a href="'.DOL_URL_ROOT.'/comm/card.php?socid='.$obj->socid.'">'.stripslashes($obj->nom)."</a></td>\n";
|
2005-01-24 16:36:05 +01:00
|
|
|
|
2010-11-18 18:10:31 +01:00
|
|
|
print '<td>'.$rej->motifs[$obj->motif].'</td>';
|
|
|
|
|
print "</tr>\n";
|
2017-08-02 13:31:53 +02:00
|
|
|
|
2010-11-18 18:10:31 +01:00
|
|
|
$i++;
|
|
|
|
|
}
|
2005-01-24 16:36:05 +01:00
|
|
|
|
2010-11-18 18:10:31 +01:00
|
|
|
print "</table>";
|
|
|
|
|
$db->free($result);
|
2005-01-24 16:36:05 +01:00
|
|
|
}
|
2010-03-27 15:40:39 +01:00
|
|
|
else
|
2005-01-24 16:36:05 +01:00
|
|
|
{
|
2010-11-18 18:10:31 +01:00
|
|
|
dol_print_error($db);
|
2005-01-24 16:36:05 +01:00
|
|
|
}
|
|
|
|
|
|
2011-08-27 16:24:16 +02:00
|
|
|
llxFooter();
|
2015-12-11 14:19:38 +01:00
|
|
|
$db->close();
|