*
* 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
* (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, see .
*/
/**
* \file htdocs/compta/localtax/reglement.php
* \ingroup tax
* \brief List of IRPF payments
*/
require '../../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/compta/localtax/class/localtax.class.php';
$langs->load("compta");
$langs->load("compta");
// Security check
$socid = isset($_GET["socid"])?$_GET["socid"]:'';
if ($user->societe_id) $socid=$user->societe_id;
$result = restrictedArea($user, 'tax', '', '', 'charges');
$ltt=$_REQUEST["localTaxType"];
/*
* View
*/
llxHeader();
$localtax_static = new Localtax($db);
print_fiche_titre($langs->transcountry($ltt==2?"LT2Payments":"LT1Payments",$mysoc->country_code));
$sql = "SELECT rowid, amount, label, f.datev as dm";
$sql.= " FROM ".MAIN_DB_PREFIX."localtax as f ";
$sql.= " WHERE f.entity = ".$conf->entity." AND localtaxtype=".$ltt;
$sql.= " ORDER BY dm DESC";
$result = $db->query($sql);
if ($result)
{
$num = $db->num_rows($result);
$i = 0;
$total = 0 ;
print '
';
print '';
print ''.$langs->trans("Ref").' | ';
print "".$langs->trans("Label")." | ";
print ''.$langs->trans("DatePayment").' | ';
print "".$langs->trans("PayedByThisPayment")." | ";
print "
\n";
$var=1;
while ($i < $num)
{
$obj = $db->fetch_object($result);
$var=!$var;
print "";
$localtax_static->id=$obj->rowid;
$localtax_static->ref=$obj->rowid;
print "".$localtax_static->getNomUrl(1)." | \n";
print "".dol_trunc($obj->label,40)." | \n";
print ''.dol_print_date($db->jdate($obj->dm),'day')." | \n";
$total = $total + $obj->amount;
print "".price($obj->amount)." | ";
print "
\n";
$i++;
}
print ''.$langs->trans("Total").' | ';
print "".price($total)." |
";
print "
";
$db->free($result);
}
else
{
dol_print_error($db);
}
$db->close();
llxFooter();