2004-10-19 22:35:36 +02:00
|
|
|
|
<?php
|
2003-06-20 16:30:08 +02:00
|
|
|
|
/* Copyright (C) 2001-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
2007-10-07 05:43:15 +02:00
|
|
|
|
* Copyright (C) 2004-2007 Laurent Destailleur <eldy@users.sourceforge.net>
|
2002-06-19 13:16:45 +02: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
|
|
|
|
|
|
* 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.
|
|
|
|
|
|
*/
|
2004-11-23 20:17:49 +01:00
|
|
|
|
|
2005-05-03 03:03:58 +02:00
|
|
|
|
/**
|
2008-10-18 16:01:55 +02:00
|
|
|
|
* \file htdocs/compta/charges/index.php
|
|
|
|
|
|
* \ingroup compta
|
|
|
|
|
|
* \brief Page liste des charges
|
|
|
|
|
|
* \version $Id$
|
|
|
|
|
|
*/
|
2004-11-23 20:17:49 +01:00
|
|
|
|
|
2003-09-11 22:18:51 +02:00
|
|
|
|
require("./pre.inc.php");
|
2008-04-03 21:35:46 +02:00
|
|
|
|
require_once(DOL_DOCUMENT_ROOT."/compta/tva/tva.class.php");
|
2002-06-19 13:16:45 +02:00
|
|
|
|
|
2008-10-18 16:01:55 +02:00
|
|
|
|
// Security check
|
2006-08-17 00:06:10 +02:00
|
|
|
|
if (!$user->admin && !$user->rights->tax->charges->lire)
|
2003-11-08 20:05:47 +01:00
|
|
|
|
accessforbidden();
|
|
|
|
|
|
|
2004-05-02 17:58:38 +02:00
|
|
|
|
$year=$_GET["year"];
|
|
|
|
|
|
$filtre=$_GET["filtre"];
|
2004-06-08 13:09:10 +02:00
|
|
|
|
if (! $year) { $year=date("Y", time()); }
|
2004-05-02 17:58:38 +02:00
|
|
|
|
|
2006-08-17 00:06:10 +02:00
|
|
|
|
|
2008-10-18 16:01:55 +02:00
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
* View
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
llxHeader('',$langs->trans("TaxAndDividendsArea"));
|
2006-08-17 00:06:10 +02:00
|
|
|
|
|
2007-10-07 05:43:15 +02:00
|
|
|
|
print_fiche_titre($langs->trans("TaxAndDividendsArea"),($year?"<a href='index.php?year=".($year-1)."'>".img_previous()."</a> ".$langs->trans("Year")." $year <a href='index.php?year=".($year+1)."'>".img_next()."</a>":""));
|
2002-06-19 13:16:45 +02:00
|
|
|
|
|
2004-05-02 17:58:38 +02:00
|
|
|
|
print "<br>";
|
2007-10-07 05:43:15 +02:00
|
|
|
|
|
|
|
|
|
|
|
2008-10-18 16:01:55 +02:00
|
|
|
|
// Social contributions
|
|
|
|
|
|
|
2007-10-07 05:43:15 +02:00
|
|
|
|
print_titre($langs->trans("SocialContributions"));
|
2004-11-23 20:17:49 +01:00
|
|
|
|
print '<table class="noborder" width="100%">';
|
2004-05-02 17:58:38 +02:00
|
|
|
|
print "<tr class=\"liste_titre\">";
|
2007-10-07 05:43:15 +02:00
|
|
|
|
print "<td>".$langs->trans("Type")."</td>";
|
2004-11-23 20:17:49 +01:00
|
|
|
|
print "<td align=\"right\">".$langs->trans("Nb")."</td>";
|
2007-10-07 05:43:15 +02:00
|
|
|
|
print "<td align=\"right\">".$langs->trans("Amount")."</td>";
|
2005-05-23 13:18:28 +02:00
|
|
|
|
print "<td align=\"right\">".$langs->trans("AlreadyPayed")."</td>";
|
2004-05-02 17:58:38 +02:00
|
|
|
|
print "</tr>\n";
|
2002-06-19 13:16:45 +02:00
|
|
|
|
|
2007-10-07 05:43:15 +02:00
|
|
|
|
$sql = "SELECT c.libelle as lib, s.fk_type as type,";
|
|
|
|
|
|
$sql.=" count(s.rowid) as nb, sum(s.amount) as total, sum(IF(paye=1,s.amount,0)) as totalpaye";
|
|
|
|
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."c_chargesociales as c, ".MAIN_DB_PREFIX."chargesociales as s";
|
|
|
|
|
|
$sql.= " WHERE s.fk_type = c.id";
|
2004-05-02 17:58:38 +02:00
|
|
|
|
if ($year > 0)
|
|
|
|
|
|
{
|
2007-10-07 05:43:15 +02:00
|
|
|
|
$sql .= " AND (";
|
|
|
|
|
|
// Si period renseign<67> on l'utilise comme critere de date, sinon on prend date <20>ch<63>ance,
|
|
|
|
|
|
// ceci afin d'etre compatible avec les cas ou la p<>riode n'etait pas obligatoire
|
|
|
|
|
|
$sql .= " (s.periode is not null and date_format(s.periode, '%Y') = $year) ";
|
|
|
|
|
|
$sql .= "or (s.periode is null and date_format(s.date_ech, '%Y') = $year)";
|
|
|
|
|
|
$sql .= ")";
|
2004-05-02 17:58:38 +02:00
|
|
|
|
}
|
2007-10-07 05:43:15 +02:00
|
|
|
|
$sql .= " GROUP BY c.libelle ASC";
|
2002-06-19 13:16:45 +02:00
|
|
|
|
|
2007-10-07 05:43:15 +02:00
|
|
|
|
$resql=$db->query($sql);
|
|
|
|
|
|
if ($resql)
|
|
|
|
|
|
{
|
|
|
|
|
|
$num = $db->num_rows($resql);
|
|
|
|
|
|
$i = 0;
|
|
|
|
|
|
$total = 0;
|
|
|
|
|
|
$totalpaye = 0;
|
|
|
|
|
|
$var=true;
|
|
|
|
|
|
|
|
|
|
|
|
while ($i < $num)
|
|
|
|
|
|
{
|
|
|
|
|
|
$obj = $db->fetch_object($resql);
|
|
|
|
|
|
$var = !$var;
|
|
|
|
|
|
print "<tr $bc[$var]>";
|
|
|
|
|
|
print '<td><a href="../sociales/index.php?filtre=s.fk_type:'.$obj->type.'">'.$obj->lib.'</a></td>';
|
|
|
|
|
|
print '<td align="right">'.$obj->nb.'</td>';
|
|
|
|
|
|
print '<td align="right">'.price($obj->total).'</td>';
|
|
|
|
|
|
print '<td align="right">'.price($obj->totalpaye).'</td>';
|
|
|
|
|
|
print '</tr>';
|
|
|
|
|
|
$total = $total + $obj->total;
|
|
|
|
|
|
$totalpaye = $totalpaye + $obj->totalpaye;
|
|
|
|
|
|
$i++;
|
|
|
|
|
|
}
|
|
|
|
|
|
print '<tr class="liste_total"><td align="right" colspan="2">'.$langs->trans("Total").'</td>';
|
|
|
|
|
|
print '<td align="right"><b>'.price($total)."</b></td>";
|
|
|
|
|
|
print '<td align="right"><b>'.price($totalpaye)."</b></td>";
|
|
|
|
|
|
print "</tr>";
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
2003-06-20 16:30:08 +02:00
|
|
|
|
{
|
2007-10-07 05:43:15 +02:00
|
|
|
|
dolibarr_print_error($db);
|
2002-06-19 13:16:45 +02:00
|
|
|
|
}
|
2007-10-07 05:43:15 +02:00
|
|
|
|
print '</table>';
|
2004-05-02 17:58:38 +02:00
|
|
|
|
|
2007-10-07 05:43:15 +02:00
|
|
|
|
|
2008-10-18 16:01:55 +02:00
|
|
|
|
// VAT
|
2002-06-19 13:16:45 +02:00
|
|
|
|
|
2008-10-18 16:01:55 +02:00
|
|
|
|
if (empty($_GET["mode"]) || $_GET["mode"] != 'sconly')
|
2007-10-07 05:43:15 +02:00
|
|
|
|
{
|
2008-10-18 16:01:55 +02:00
|
|
|
|
print "<br>";
|
|
|
|
|
|
|
|
|
|
|
|
$tva = new Tva($db);
|
|
|
|
|
|
|
|
|
|
|
|
print_titre($langs->trans("VATPayments"));
|
|
|
|
|
|
|
|
|
|
|
|
$sql = "SELECT rowid, amount, label, ".$db->pdate("f.datev")." as dm";
|
|
|
|
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."tva as f ";
|
|
|
|
|
|
if ($year > 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
// Si period renseign<67> on l'utilise comme critere de date, sinon on prend date <20>ch<63>ance,
|
|
|
|
|
|
// ceci afin d'etre compatible avec les cas ou la p<>riode n'etait pas obligatoire
|
|
|
|
|
|
$sql .= " WHERE date_format(f.datev, '%Y') = ".$year;
|
|
|
|
|
|
}
|
|
|
|
|
|
$sql .= " ORDER BY dm DESC";
|
|
|
|
|
|
|
|
|
|
|
|
$result = $db->query($sql);
|
|
|
|
|
|
if ($result)
|
|
|
|
|
|
{
|
|
|
|
|
|
$num = $db->num_rows($result);
|
|
|
|
|
|
$i = 0;
|
|
|
|
|
|
$total = 0 ;
|
|
|
|
|
|
print '<table class="noborder" width="100%">';
|
|
|
|
|
|
print '<tr class="liste_titre">';
|
|
|
|
|
|
print '<td nowrap>'.$langs->trans("Date").'</td>';
|
|
|
|
|
|
print "<td>".$langs->trans("Label")."</td>";
|
|
|
|
|
|
print '<td align="right">'.$langs->trans("Amount")."</td>";
|
|
|
|
|
|
print "</tr>\n";
|
|
|
|
|
|
$var=1;
|
|
|
|
|
|
while ($i < $num)
|
|
|
|
|
|
{
|
|
|
|
|
|
$obj = $db->fetch_object($result);
|
|
|
|
|
|
$var=!$var;
|
|
|
|
|
|
print "<tr $bc[$var]>";
|
|
|
|
|
|
print '<td align="left">'.dolibarr_print_date($obj->dm,'day')."</td>\n";
|
|
|
|
|
|
print "<td>".$obj->label."</td>\n";
|
|
|
|
|
|
$total = $total + $obj->amount;
|
|
|
|
|
|
|
|
|
|
|
|
print "<td align=\"right\">".price($obj->amount)."</td>";
|
|
|
|
|
|
print "</tr>\n";
|
|
|
|
|
|
|
|
|
|
|
|
$i++;
|
|
|
|
|
|
}
|
|
|
|
|
|
print '<tr class="liste_total"><td align="right" colspan="2">'.$langs->trans("Total").'</td>';
|
|
|
|
|
|
print '<td align="right"><b>'.price($total)."</b></td></tr>";
|
|
|
|
|
|
|
|
|
|
|
|
print "</table>";
|
|
|
|
|
|
$db->free($result);
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
dolibarr_print_error($db);
|
|
|
|
|
|
}
|
2002-06-20 15:23:17 +02:00
|
|
|
|
}
|
2002-06-19 13:16:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$db->close();
|
|
|
|
|
|
|
2006-08-20 23:22:48 +02:00
|
|
|
|
llxFooter('$Date$ - $Revision$');
|
2002-06-19 13:16:45 +02:00
|
|
|
|
?>
|