* Copyright (C) 2004-2009 Laurent Destailleur * Copyright (C) 2005-2009 Regis Houssin * * 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. */ /** * \file htdocs/compta/sociales/index.php * \ingroup tax * \brief Ecran des charges sociales * \version $Id$ */ require("./pre.inc.php"); require(DOL_DOCUMENT_ROOT."/chargesociales.class.php"); // Security check $socid = isset($_GET["socid"])?$_GET["socid"]:''; if ($user->societe_id) $socid=$user->societe_id; $result = restrictedArea($user, 'tax', '', '', 'charges'); $sortfield = isset($_GET["sortfield"])?$_GET["sortfield"]:$_POST["sortfield"]; $sortorder = isset($_GET["sortorder"])?$_GET["sortorder"]:$_POST["sortorder"]; $page = $_GET["page"]; if ($page < 0) $page = 0; $limit = $conf->liste_limit; $offset = $limit * $page ; if (! $sortfield) $sortfield="c.id"; if (! $sortorder) $sortorder="DESC"; $year=$_GET["year"]; $filtre=$_GET["filtre"]; $limit = $conf->liste_limit; $offset = $limit * $page ; //if (! $year) { $year=date("Y", time()); } if (empty($_REQUEST['typeid'])) { $newfiltre=eregi_replace('filtre=','',$filtre); $filterarray=split('-',$newfiltre); foreach($filterarray as $val) { $part=split(':',$val); if ($part[0] == 's.fk_type') $typeid=$part[1]; } } else { $typeid=$_REQUEST['typeid']; } /* * View */ llxHeader(); $html = new Form($db); $sql = "SELECT s.rowid as id, s.fk_type as type, "; $sql.= " s.amount,".$db->pdate("s.date_ech")." as de, s.libelle, s.paye,".$db->pdate("s.periode")." as periode,"; $sql.= " c.libelle as type_lib"; $sql.= " FROM ".MAIN_DB_PREFIX."c_chargesociales as c"; $sql.= ", ".MAIN_DB_PREFIX."chargesociales as s"; $sql.= " WHERE s.fk_type = c.id"; $sql.= " AND s.entity = ".$conf->entity; if ($year > 0) { $sql .= " AND ("; // Si period renseignee on l'utilise comme critere de date, sinon on prend date echeance, // ceci afin d'etre compatible avec les cas ou la periode 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 .= ")"; } if ($filtre) { $filtre=ereg_replace(":","=",$filtre); $sql .= " AND ".$filtre; } if ($typeid) { $sql .= " AND s.fk_type=".$typeid; } if ($_GET["sortfield"]) { $sql .= " ORDER BY ".$_GET["sortfield"]; } else { $sql .= " ORDER BY lower(s.date_ech)"; } if ($_GET["sortorder"]) { $sql .= " ".$_GET["sortorder"]; } else { $sql .= " DESC"; } $sql .= $db->plimit($limit+1,$offset); $chargesociale_static=new ChargeSociales($db); $resql=$db->query($sql); if ($resql) { $num = $db->num_rows($resql); $i = 0; $var=true; $param=''; if ($year) $param.='&year='.$year; if ($typeid) $param.='&typeid='.$typeid; if ($year) { print_fiche_titre($langs->trans("SocialContributions"),($year?"".img_previous()." ".$langs->trans("Year")." $year ".img_next()."":"")); } else { print_barre_liste($langs->trans("SocialContributions"),$page,$_SERVER["PHP_SELF"],$param,$sortfield,$sortorder,'',$num,$totalnboflines); } if ($mesg) { print $mesg."
"; } print '
'; print ""; print ""; print_liste_field_titre($langs->trans("Ref"),"index.php","id","",$param,"",$sortfield,$sortorder); print_liste_field_titre($langs->trans("Label"),"index.php","s.libelle","",$param,'align="left"',$sortfield,$sortorder); print_liste_field_titre($langs->trans("Type"),"index.php","type","",$param,'align="left"',$sortfield,$sortorder); print_liste_field_titre($langs->trans("PeriodEndDate"),"index.php","periode","",$param,'align="center"',$sortfield,$sortorder); print_liste_field_titre($langs->trans("Amount"),"index.php","s.amount","",$param,'align="right"',$sortfield,$sortorder); print_liste_field_titre($langs->trans("DateDue"),"index.php","de","",$param,'align="center"',$sortfield,$sortorder); print_liste_field_titre($langs->trans("Status"),"index.php","s.paye","",$param,'align="right"',$sortfield,$sortorder); print "\n"; print ""; print ''; print ''; // Type print ''; // Period end date print ''; print ''; print ''; print ''; print "\n"; while ($i < min($num,$limit)) { $obj = $db->fetch_object($resql); $var = !$var; print ""; // Ref print ''; // Label print ''; // Type print ''; // Date end period print ''; print ''; // Due date print ''; print ''; print ''; $i++; } print '
  '; $html->select_type_socialcontrib($typeid,'typeid',1,16,0); print '   '; print ''; print '
'; print ''.img_file().' '.$obj->id.''; print ''.dol_trunc($obj->libelle,42).''.dol_trunc($obj->type_lib,16).''; if ($obj->periode) { print 'periode).'">'.dol_print_date($obj->periode,'day').''; } else { print ' '; } print ''.price($obj->amount).''.dol_print_date($obj->de, 'day').''.$chargesociale_static->LibStatut($obj->paye,5).'
'; print '
'; } else { dol_print_error($db); } $db->close(); llxFooter('$Date$ - $Revision$'); ?>