forked from Wavyzz/dolibarr
209 lines
5.6 KiB
PHP
209 lines
5.6 KiB
PHP
<?PHP
|
|
/* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2005 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
*
|
|
* 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 2 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, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* $Id$
|
|
* $Source$
|
|
*/
|
|
|
|
/**
|
|
\file htdocs/compta/prelevement/factures.php
|
|
\ingroup prelevement
|
|
\brief Page liste des factures prélevées
|
|
\version $Revision$
|
|
*/
|
|
|
|
require("./pre.inc.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/compta/prelevement/rejet-prelevement.class.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/paiement.class.php");
|
|
|
|
// Sécurité accés client
|
|
if ($user->societe_id > 0) accessforbidden();
|
|
|
|
llxHeader('','Bon de prélèvement');
|
|
|
|
$h = 0;
|
|
$head[$h][0] = DOL_URL_ROOT.'/compta/prelevement/fiche.php?id='.$_GET["id"];
|
|
$head[$h][1] = $langs->trans("Card");
|
|
$h++;
|
|
|
|
if ($conf->use_preview_tabs)
|
|
{
|
|
$head[$h][0] = DOL_URL_ROOT.'/compta/prelevement/bon.php?id='.$_GET["id"];
|
|
$head[$h][1] = $langs->trans("Preview");
|
|
$h++;
|
|
}
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/compta/prelevement/lignes.php?id='.$_GET["id"];
|
|
$head[$h][1] = $langs->trans("Lines");
|
|
$h++;
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/compta/prelevement/factures.php?id='.$_GET["id"];
|
|
$head[$h][1] = $langs->trans("Bills");
|
|
$hselected = $h;
|
|
$h++;
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/compta/prelevement/fiche-rejet.php?id='.$_GET["id"];
|
|
$head[$h][1] = $langs->trans("Rejects");
|
|
$h++;
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/compta/prelevement/fiche-stat.php?id='.$_GET["id"];
|
|
$head[$h][1] = $langs->trans("Statistics");
|
|
$h++;
|
|
|
|
|
|
if ($_GET["id"])
|
|
{
|
|
$prev_id = $_GET["id"];
|
|
|
|
$bon = new BonPrelevement($db,"");
|
|
|
|
if ($bon->fetch($_GET["id"]) == 0)
|
|
{
|
|
dolibarr_fiche_head($head, $hselected, 'Prélèvement : '. $bon->ref);
|
|
|
|
print '<table class="border" width="100%">';
|
|
print '<tr><td width="20%">'.$langs->trans("Ref").'</td><td>'.$bon->ref.'</td></tr>';
|
|
print '</table><br />';
|
|
}
|
|
else
|
|
{
|
|
print "Erreur";
|
|
}
|
|
}
|
|
|
|
|
|
$page = $_GET["page"];
|
|
$sortorder = (empty($_GET["sortorder"])) ? "DESC" : $_GET["sortorder"];
|
|
$sortfield = (empty($_GET["sortfield"])) ? "p.datec" : $_GET["sortfield"];
|
|
$offset = $conf->liste_limit * $page ;
|
|
|
|
/*
|
|
* Liste des factures
|
|
*/
|
|
$sql = "SELECT pf.rowid";
|
|
$sql .= " ,f.rowid as facid, f.facnumber as ref, f.total_ttc";
|
|
$sql .= " , s.idp, s.nom";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."prelevement_bons as p";
|
|
$sql .= " , ".MAIN_DB_PREFIX."prelevement_lignes as pl";
|
|
$sql .= " , ".MAIN_DB_PREFIX."prelevement_facture as pf";
|
|
$sql .= " , ".MAIN_DB_PREFIX."facture as f";
|
|
$sql .= " , ".MAIN_DB_PREFIX."societe as s";
|
|
$sql .= " WHERE pf.fk_prelevement_lignes = pl.rowid";
|
|
$sql .= " AND pl.fk_prelevement_bons = p.rowid";
|
|
$sql .= " AND f.fk_soc = s.idp";
|
|
$sql .= " AND pf.fk_facture = f.rowid";
|
|
if ($_GET["id"])
|
|
{
|
|
$sql .= " AND p.rowid=".$_GET["id"];
|
|
}
|
|
|
|
if ($_GET["socid"])
|
|
{
|
|
$sql .= " AND s.idp = ".$_GET["socid"];
|
|
}
|
|
|
|
$sql .= " ORDER BY $sortfield $sortorder " . $db->plimit($conf->liste_limit+1, $offset);
|
|
|
|
$result = $db->query($sql);
|
|
|
|
if ($result)
|
|
{
|
|
$num = $db->num_rows($result);
|
|
$i = 0;
|
|
|
|
$urladd = "&id=".$_GET["id"];
|
|
|
|
print_barre_liste($langs->trans("Bills"), $page, "factures.php", $urladd, $sortfield, $sortorder, '', $num);
|
|
|
|
print"\n<!-- debut table -->\n";
|
|
print '<table class="liste" width="100%">';
|
|
print '<tr class="liste_titre">';
|
|
print_liste_field_titre($langs->trans("Bill"),"factures.php","p.ref",'',$urladd,'class="liste_titre"');
|
|
print_liste_field_titre($langs->trans("Company"),"factures.php","s.nom",'',$urladd,'class="liste_titre"');
|
|
print_liste_field_titre($langs->trans("Amount"),"factures.php","f.total_ttc","",$urladd,'class="liste_titre" align="center"');
|
|
print '<td class="liste_titre" colspan="2"> </td></tr>';
|
|
|
|
$var=True;
|
|
|
|
$total = 0;
|
|
|
|
while ($i < min($num,$conf->liste_limit))
|
|
{
|
|
$obj = $db->fetch_object($result);
|
|
|
|
print "<tr $bc[$var]><td>";
|
|
|
|
print '<a href="'.DOL_URL_ROOT.'/compta/facture.php?facid='.$obj->facid.'">';
|
|
print img_object($langs->trans("ShowBill"),"bill");
|
|
print '</a> ';
|
|
|
|
print '<a href="'.DOL_URL_ROOT.'/compta/facture.php?facid='.$obj->facid.'">'.$obj->ref."</a></td>\n";
|
|
|
|
print '<td><a href="'.DOL_URL_ROOT.'/compta/fiche.php?socid='.$obj->idp.'">';
|
|
print img_object($langs->trans("ShowCompany"),"company"). ' '.stripslashes($obj->nom)."</a></td>\n";
|
|
|
|
print '<td align="center">'.price($obj->total_ttc)."</td>\n";
|
|
|
|
print '<td>';
|
|
|
|
if ($obj->statut == 0)
|
|
{
|
|
print '-';
|
|
}
|
|
elseif ($obj->statut == 1)
|
|
{
|
|
print 'Crédité';
|
|
}
|
|
elseif ($obj->statut == 2)
|
|
{
|
|
print '<b>Rejeté</b>';
|
|
}
|
|
|
|
print "</td></tr>\n";
|
|
|
|
$total += $obj->total_ttc;
|
|
$var=!$var;
|
|
$i++;
|
|
}
|
|
|
|
if($_GET["socid"])
|
|
{
|
|
print "<tr $bc[$var]><td>";
|
|
|
|
print '<td>Total</td>';
|
|
|
|
print '<td align="center">'.price($total)."</td>\n";
|
|
|
|
print '<td> </td>';
|
|
|
|
print "</tr>\n";
|
|
}
|
|
|
|
print "</table>";
|
|
$db->free($result);
|
|
}
|
|
else
|
|
{
|
|
dolibarr_print_error($db);
|
|
}
|
|
|
|
$db->close();
|
|
|
|
llxFooter('$Date$ - $Revision$');
|
|
?>
|