mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-18 07:21:30 +01:00
106 lines
2.6 KiB
PHP
106 lines
2.6 KiB
PHP
<?PHP
|
|
/* Copyright (C) 2001-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2004 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$
|
|
*
|
|
*/
|
|
require("./pre.inc.php");
|
|
|
|
llxHeader();
|
|
|
|
$user->getrights('compta');
|
|
|
|
if (!$user->admin && !$user->rights->compta->charges)
|
|
accessforbidden();
|
|
|
|
function valeur($sql)
|
|
{
|
|
global $db;
|
|
if ( $db->query($sql) )
|
|
{
|
|
if ( $db->num_rows() )
|
|
{
|
|
$valeur = $db->result(0,0);
|
|
}
|
|
$db->free();
|
|
}
|
|
return $valeur;
|
|
}
|
|
/*
|
|
*
|
|
*/
|
|
|
|
print_titre("Charges");
|
|
|
|
print '<TABLE border="0" cellspacing="0" cellpadding="4" width="100%">';
|
|
print "<TR class=\"liste_titre\">";
|
|
print "<td colspan=\"2\">Factures</td>";
|
|
print "</TR>\n";
|
|
|
|
$sql = "SELECT c.libelle as nom, sum(s.amount) as total";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."c_chargesociales as c, ".MAIN_DB_PREFIX."chargesociales as s";
|
|
$sql .= " WHERE s.fk_type = c.id AND s.paye = 1";
|
|
$sql .= " GROUP BY lower(c.libelle) ASC";
|
|
|
|
if ( $db->query($sql) )
|
|
{
|
|
$num = $db->num_rows();
|
|
$i = 0;
|
|
|
|
while ($i < $num) {
|
|
$obj = $db->fetch_object( $i);
|
|
$var = !$var;
|
|
print "<tr $bc[$var]>";
|
|
print '<td>'.$obj->nom.'</td><td align="right">'.price($obj->total).'</td>';
|
|
print '</tr>';
|
|
$i++;
|
|
}
|
|
} else {
|
|
print "<tr><td>".$db->error()."</td></tr>";
|
|
}
|
|
/*
|
|
* Factures fournisseurs
|
|
*/
|
|
$sql = "SELECT sum(f.amount) as total";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."facture_fourn as f";
|
|
|
|
if ( $db->query($sql) ) {
|
|
$num = $db->num_rows();
|
|
$i = 0;
|
|
|
|
while ($i < $num) {
|
|
$obj = $db->fetch_object( $i);
|
|
$var = !$var;
|
|
print "<tr $bc[$var]>";
|
|
print '<td>Factures founisseurs</td><td align="right">'.price($obj->total).'</td>';
|
|
print '</tr>';
|
|
$i++;
|
|
}
|
|
} else {
|
|
print "<tr><td>".$db->error()."</td></tr>";
|
|
}
|
|
|
|
print "</table><br>";
|
|
|
|
|
|
$db->close();
|
|
|
|
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
|
?>
|