dolibarr/htdocs/compta/sociales/index.php

233 lines
7.2 KiB
PHP
Raw Normal View History

<?php
2003-06-20 16:30:08 +02:00
/* Copyright (C) 2001-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
2012-12-30 15:13:49 +01:00
* Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.com>
2002-06-18 22:58:44 +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 3 of the License, or
2002-06-18 22:58:44 +02: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/>.
2002-06-18 22:58:44 +02:00
*/
2006-07-13 17:40:29 +02:00
/**
* \file htdocs/compta/sociales/index.php
* \ingroup tax
2010-07-29 15:33:29 +02:00
* \brief Page to list all social contributions
*/
require '../../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/compta/sociales/class/chargesociales.class.php';
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formsocialcontrib.class.php';
2006-07-13 17:40:29 +02:00
2014-02-05 12:52:00 +01:00
$langs->load("compta");
$langs->load("banks");
$langs->load("bills");
2014-02-05 12:52:00 +01:00
// Security check
$socid = isset($_GET["socid"])?$_GET["socid"]:'';
if ($user->societe_id) $socid=$user->societe_id;
$result = restrictedArea($user, 'tax', '', '', 'charges');
2010-11-20 14:08:44 +01:00
$sortfield = GETPOST("sortfield",'alpha');
$sortorder = GETPOST("sortorder",'alpha');
$page = GETPOST("page",'int');
if ($page == -1) { $page = 0; }
$offset = $conf->liste_limit * $page;
$pageprev = $page - 1;
$pagenext = $page + 1;
$limit = $conf->liste_limit;
2012-02-01 11:32:55 +01:00
if (! $sortfield) $sortfield="cs.date_ech";
if (! $sortorder) $sortorder="DESC";
$year=$_GET["year"];
$filtre=$_GET["filtre"];
if (empty($_REQUEST['typeid']))
{
$newfiltre=str_replace('filtre=','',$filtre);
$filterarray=explode('-',$newfiltre);
foreach($filterarray as $val)
{
$part=explode(':',$val);
2012-02-01 11:32:55 +01:00
if ($part[0] == 'cs.fk_type') $typeid=$part[1];
}
}
else
{
$typeid=$_REQUEST['typeid'];
}
2002-06-18 22:58:44 +02:00
/*
2008-06-09 22:20:19 +02:00
* View
2002-06-18 22:58:44 +02:00
*/
$form = new Form($db);
$formsocialcontrib = new FormSocialContrib($db);
$chargesociale_static=new ChargeSociales($db);
llxHeader();
2002-06-18 22:58:44 +02:00
2012-02-01 11:32:55 +01:00
$sql = "SELECT cs.rowid as id, cs.fk_type as type, ";
$sql.= " cs.amount, cs.date_ech, cs.libelle, cs.paye, cs.periode,";
$sql.= " c.libelle as type_lib";
$sql.= " FROM ".MAIN_DB_PREFIX."c_chargesociales as c";
2012-02-01 11:32:55 +01:00
$sql.= ", ".MAIN_DB_PREFIX."chargesociales as cs";
$sql.= " WHERE cs.fk_type = c.id";
$sql.= " AND cs.entity = ".$conf->entity;
if (GETPOST("search_label")) $sql.=" AND cs.libelle LIKE '%".GETPOST("search_label")."%'";
2003-06-20 16:30:08 +02:00
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
2012-02-01 11:32:55 +01:00
$sql .= " (cs.periode IS NOT NULL AND date_format(cs.periode, '%Y') = '".$year."') ";
$sql .= "OR (cs.periode IS NULL AND date_format(cs.date_ech, '%Y') = '".$year."')";
$sql .= ")";
}
if ($filtre) {
$filtre=str_replace(":","=",$filtre);
$sql .= " AND ".$filtre;
}
if ($typeid) {
2012-02-01 11:32:55 +01:00
$sql .= " AND cs.fk_type=".$typeid;
2002-06-19 00:34:04 +02:00
}
$sql.= $db->order($sortfield,$sortorder);
$sql.= $db->plimit($limit+1,$offset);
2006-07-13 17:40:29 +02:00
$resql=$db->query($sql);
if ($resql)
2003-06-20 16:30:08 +02:00
{
2006-07-13 17:40:29 +02:00
$num = $db->num_rows($resql);
$i = 0;
$var=true;
2002-06-18 22:58:44 +02:00
2008-10-26 18:01:25 +01:00
$param='';
if ($year) $param.='&amp;year='.$year;
if ($typeid) $param.='&amp;typeid='.$typeid;
if ($year)
{
print_fiche_titre($langs->trans("SocialContributions"),($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>":""));
}
else
{
print_barre_liste($langs->trans("SocialContributions"),$page,$_SERVER["PHP_SELF"],$param,$sortfield,$sortorder,'',$num,$totalnboflines);
}
2011-09-25 00:25:01 +02:00
dol_htmloutput_mesg($mesg);
2010-07-29 15:33:29 +02:00
2011-09-25 00:25:01 +02:00
if (empty($mysoc->country_id) && empty($mysoc->country_code))
2010-07-29 15:33:29 +02:00
{
print '<div class="error">';
$langs->load("errors");
$countrynotdefined=$langs->trans("ErrorSetACountryFirst");
print $countrynotdefined;
print '</div>';
}
else
2003-06-20 16:30:08 +02:00
{
2006-07-13 17:40:29 +02:00
2010-07-29 15:33:29 +02:00
print '<form method="GET" action="'.$_SERVER["PHP_SELF"].'">';
2010-07-29 15:33:29 +02:00
print "<table class=\"noborder\" width=\"100%\">";
2006-07-13 17:40:29 +02:00
2010-07-29 15:33:29 +02:00
print "<tr class=\"liste_titre\">";
print_liste_field_titre($langs->trans("Ref"),"index.php","id","",$param,"",$sortfield,$sortorder);
2012-02-01 11:32:55 +01:00
print_liste_field_titre($langs->trans("Label"),"index.php","cs.libelle","",$param,'align="left"',$sortfield,$sortorder);
2010-07-29 15:33:29 +02:00
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);
2012-02-01 11:32:55 +01:00
print_liste_field_titre($langs->trans("Amount"),"index.php","cs.amount","",$param,'align="right"',$sortfield,$sortorder);
print_liste_field_titre($langs->trans("DateDue"),"index.php","cs.date_ech","",$param,'align="center"',$sortfield,$sortorder);
print_liste_field_titre($langs->trans("Status"),"index.php","cs.paye","",$param,'align="right"',$sortfield,$sortorder);
2010-07-29 15:33:29 +02:00
print "</tr>\n";
2010-07-29 15:33:29 +02:00
print '<tr class="liste_titre">';
print '<td class="liste_titre">&nbsp;</td>';
print '<td class="liste_titre"><input type="text" class="flat" size="8" name="search_label" value="'.GETPOST("search_label").'"></td>';
// Type
2010-07-29 15:33:29 +02:00
print '<td class="liste_titre" align="left">';
$formsocialcontrib->select_type_socialcontrib($typeid,'typeid',1,16,0);
2010-07-29 15:33:29 +02:00
print '</td>';
// Period end date
print '<td class="liste_titre">&nbsp;</td>';
print '<td class="liste_titre">&nbsp;</td>';
print '<td class="liste_titre">&nbsp;</td>';
print '<td class="liste_titre" align="right">';
print '<input type="image" class="liste_titre" src="'.img_picto($langs->trans("Search"),'search.png','','',1).'" name="button_search" value="'.dol_escape_htmltag($langs->trans("Search")).'" title="'.dol_escape_htmltag($langs->trans("Search")).'">';
2010-07-29 15:33:29 +02:00
print '</td>';
print "</tr>\n";
2010-07-29 15:33:29 +02:00
while ($i < min($num,$limit))
2008-06-09 22:20:19 +02:00
{
2010-07-29 15:33:29 +02:00
$obj = $db->fetch_object($resql);
$var = !$var;
2013-06-20 09:18:12 +02:00
print "<tr ".$bc[$var].">";
2010-07-29 15:33:29 +02:00
// Ref
print '<td width="60">';
$chargesociale_static->id=$obj->id;
$chargesociale_static->lib=$obj->id;
$chargesociale_static->ref=$obj->id;
print $chargesociale_static->getNomUrl(1,'20');
print '</td>';
// Label
print '<td>'.dol_trunc($obj->libelle,42).'</td>';
// Type
print '<td>'.dol_trunc($obj->type_lib,16).'</td>';
// Date end period
print '<td align="center">';
if ($obj->periode)
{
print '<a href="index.php?year='.strftime("%Y",$db->jdate($obj->periode)).'">'.dol_print_date($db->jdate($obj->periode),'day').'</a>';
}
else
{
print '&nbsp;';
}
print '</td>';
print '<td align="right" width="100">'.price($obj->amount).'</td>';
// Due date
2010-09-06 07:47:44 +02:00
print '<td width="110" align="center">'.dol_print_date($db->jdate($obj->date_ech), 'day').'</td>';
2010-07-29 15:33:29 +02:00
print '<td align="right" class="nowrap">'.$chargesociale_static->LibStatut($obj->paye,5).'</a></td>';
2010-07-29 15:33:29 +02:00
print '</tr>';
$i++;
2008-06-09 22:20:19 +02:00
}
2006-07-13 17:40:29 +02:00
2010-07-29 15:33:29 +02:00
print '</table>';
2010-07-29 15:33:29 +02:00
print '</form>';
2003-06-20 16:30:08 +02:00
}
2008-06-09 22:20:19 +02:00
}
else
{
dol_print_error($db);
2008-06-09 22:20:19 +02:00
}
2002-06-18 22:58:44 +02:00
$db->close();
2006-07-13 17:40:29 +02:00
llxFooter();
2002-06-18 22:58:44 +02:00
?>