2004-10-19 20:58:50 +02:00
|
|
|
|
<?php
|
2002-12-30 16:13:28 +01:00
|
|
|
|
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
2004-07-31 15:34:32 +02:00
|
|
|
|
* Copyright (C) 2003 Jean-Louis Bergamo <jlb@j1b.org>
|
2008-08-17 23:50:27 +02:00
|
|
|
|
* Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
|
2002-12-30 16:13:28 +01: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-08-14 14:37:59 +02:00
|
|
|
|
|
2005-04-02 22:36:17 +02:00
|
|
|
|
/**
|
2008-08-17 23:50:27 +02:00
|
|
|
|
* \file htdocs/adherents/cotisations.php
|
|
|
|
|
|
* \ingroup adherent
|
|
|
|
|
|
* \brief Page de consultation et insertion d'une cotisation
|
|
|
|
|
|
* \version $Id$
|
|
|
|
|
|
*/
|
2004-08-14 14:37:59 +02:00
|
|
|
|
|
2002-12-30 16:13:28 +01:00
|
|
|
|
require("./pre.inc.php");
|
2006-11-26 19:24:53 +01:00
|
|
|
|
require_once(DOL_DOCUMENT_ROOT."/adherents/adherent.class.php");
|
|
|
|
|
|
require_once(DOL_DOCUMENT_ROOT."/adherents/cotisation.class.php");
|
2005-01-12 21:53:29 +01:00
|
|
|
|
require_once(DOL_DOCUMENT_ROOT."/compta/bank/account.class.php");
|
|
|
|
|
|
|
2007-05-28 15:14:50 +02:00
|
|
|
|
$langs->load("members");
|
|
|
|
|
|
|
2005-08-11 20:24:58 +02:00
|
|
|
|
$sortorder=$_GET["sortorder"];
|
|
|
|
|
|
$sortfield=$_GET["sortfield"];
|
|
|
|
|
|
$page=$_GET["page"];
|
|
|
|
|
|
$filter=$_GET["filter"];
|
|
|
|
|
|
$statut=isset($_GET["statut"])?$_GET["statut"]:1;
|
2002-12-30 16:13:28 +01:00
|
|
|
|
|
2005-08-11 20:24:58 +02:00
|
|
|
|
if (! $sortorder) { $sortorder="DESC"; }
|
|
|
|
|
|
if (! $sortfield) { $sortfield="c.dateadh"; }
|
|
|
|
|
|
if ($page == -1) { $page = 0 ; }
|
|
|
|
|
|
$offset = $conf->liste_limit * $page ;
|
|
|
|
|
|
$pageprev = $page - 1;
|
|
|
|
|
|
$pagenext = $page + 1;
|
2005-01-12 21:53:29 +01:00
|
|
|
|
|
2007-05-28 15:14:50 +02:00
|
|
|
|
$msg='';
|
2005-08-11 20:24:58 +02:00
|
|
|
|
$date_select=isset($_GET["date_select"])?$_GET["date_select"]:$_POST["date_select"];
|
2002-12-30 16:13:28 +01:00
|
|
|
|
|
2007-05-28 15:14:50 +02:00
|
|
|
|
// Desactivation fonctions insertions en banque apres coup
|
|
|
|
|
|
// Cette fonction me semble pas utile. Si on a fait des adhesions alors que module banque
|
|
|
|
|
|
// pas actif c'est qu'on voulait pas d'insertion en banque.
|
|
|
|
|
|
// si on active apres coup, on va pas modifier toutes les adhesions pour avoir une ecriture
|
2007-12-14 10:35:15 +01:00
|
|
|
|
// en banque mais on va mettre le solde banque direct a la valeur apres toutes les adh<64>sions.
|
2007-05-28 15:14:50 +02:00
|
|
|
|
$allowinsertbankafter=0;
|
|
|
|
|
|
|
2007-06-01 23:27:51 +02:00
|
|
|
|
if (! $user->rights->adherent->cotisation->lire)
|
|
|
|
|
|
accessforbidden();
|
|
|
|
|
|
|
2002-12-30 16:13:28 +01:00
|
|
|
|
|
2007-05-28 15:14:50 +02:00
|
|
|
|
/*
|
|
|
|
|
|
* Actions
|
|
|
|
|
|
*/
|
2002-12-30 16:13:28 +01:00
|
|
|
|
|
2005-08-11 20:24:58 +02:00
|
|
|
|
// Insertion de la cotisation dans le compte banquaire
|
2007-12-14 10:35:15 +01:00
|
|
|
|
if ($allowinsertbankafter && $_POST["action"] == '2bank' && $_POST["rowid"] !='')
|
2005-08-11 20:24:58 +02:00
|
|
|
|
{
|
2007-05-28 15:14:50 +02:00
|
|
|
|
if (defined("ADHERENT_BANK_USE") && $conf->global->ADHERENT_BANK_USE)
|
2005-08-11 20:24:58 +02:00
|
|
|
|
{
|
2007-05-28 15:14:50 +02:00
|
|
|
|
if (! $_POST["accountid"])
|
|
|
|
|
|
{
|
|
|
|
|
|
$msg='<div class="error">'.$langs->trans("ErrorFieldRequired",$langs->trans("BankAccount")).'</div>';
|
|
|
|
|
|
}
|
|
|
|
|
|
if (! $_POST["paymenttypeid"])
|
|
|
|
|
|
{
|
|
|
|
|
|
$msg='<div class="error">'.$langs->trans("ErrorFieldRequired",$langs->trans("OperationType")).'</div>';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2007-12-14 10:35:15 +01:00
|
|
|
|
// Cr<43>er un tiers + facture et enregistrer son paiement ? -> Non requis avec module compta expert
|
2007-05-28 15:14:50 +02:00
|
|
|
|
// Eventuellement offrir option a la creation adhesion
|
|
|
|
|
|
|
|
|
|
|
|
if (! $msg)
|
|
|
|
|
|
{
|
|
|
|
|
|
$db->begin();
|
|
|
|
|
|
|
|
|
|
|
|
$dateop=time();
|
|
|
|
|
|
|
|
|
|
|
|
$cotisation=new Cotisation($db);
|
|
|
|
|
|
$result=$cotisation->fetch($_POST["rowid"]);
|
|
|
|
|
|
$adherent=new Adherent($db);
|
|
|
|
|
|
$result=$adherent->fetch($cotisation->fk_adherent);
|
|
|
|
|
|
|
|
|
|
|
|
if ($result > 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
$amount=$cotisation->amount;
|
|
|
|
|
|
|
|
|
|
|
|
$acct=new Account($db);
|
|
|
|
|
|
$acct->fetch($_POST["accountid"]);
|
|
|
|
|
|
$insertid=$acct->addline($dateop, $_POST["paymenttypeid"], $_POST["label"], $amount, $_POST["num_chq"],ADHERENT_BANK_CATEGORIE,$user);
|
|
|
|
|
|
if ($insertid < 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
dolibarr_print_error($db,$acct->error);
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
$inserturlid=$acct->add_url_line($insertid, $adherent->rowid, DOL_URL_ROOT.'/adherents/fiche.php?rowid=', $adherent->getFullname(), 'member');
|
|
|
|
|
|
|
|
|
|
|
|
// Met a jour la table cotisation
|
|
|
|
|
|
$sql="UPDATE ".MAIN_DB_PREFIX."cotisation";
|
|
|
|
|
|
$sql.=" SET fk_bank=".$insertid.",";
|
|
|
|
|
|
$sql.=" note='".addslashes($_POST["label"])."'";
|
|
|
|
|
|
$sql.=" WHERE rowid=".$_POST["rowid"];
|
|
|
|
|
|
dolibarr_syslog("cotisations sql=".$sql);
|
|
|
|
|
|
$result = $db->query($sql);
|
|
|
|
|
|
if ($result)
|
|
|
|
|
|
{
|
|
|
|
|
|
//Header("Location: cotisations.php");
|
|
|
|
|
|
$db->commit();
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
$db->rollback();
|
|
|
|
|
|
dolibarr_print_error($db);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
$db->rollback();
|
|
|
|
|
|
dolibarr_print_error($db,$cotisation->error);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2005-08-11 20:24:58 +02:00
|
|
|
|
}
|
2002-12-30 16:13:28 +01:00
|
|
|
|
}
|
2005-01-12 21:53:29 +01:00
|
|
|
|
|
|
|
|
|
|
|
2006-03-18 01:06:55 +01:00
|
|
|
|
/*
|
2007-05-28 15:14:50 +02:00
|
|
|
|
* Affichage page
|
2006-03-18 01:06:55 +01:00
|
|
|
|
*/
|
2002-12-30 16:13:28 +01:00
|
|
|
|
|
2005-08-11 20:24:58 +02:00
|
|
|
|
llxHeader();
|
2002-12-30 16:13:28 +01:00
|
|
|
|
|
2007-05-28 15:14:50 +02:00
|
|
|
|
if ($msg) print $msg.'<br>';
|
2002-12-30 16:13:28 +01:00
|
|
|
|
|
2005-08-11 20:24:58 +02:00
|
|
|
|
// Liste des cotisations
|
2008-08-17 23:50:27 +02:00
|
|
|
|
$sql = "SELECT d.rowid, d.login, d.prenom, d.nom, d.societe,";
|
2007-09-09 12:43:26 +02:00
|
|
|
|
$sql.= " c.rowid as crowid, c.cotisation,";
|
|
|
|
|
|
$sql.= " ".$db->pdate("c.dateadh")." as dateadh,";
|
|
|
|
|
|
$sql.= " ".$db->pdate("c.datef")." as datef,";
|
|
|
|
|
|
$sql.= " c.fk_bank as bank, c.note,";
|
2005-08-11 20:24:58 +02:00
|
|
|
|
$sql.= " b.fk_account";
|
|
|
|
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."adherent as d, ".MAIN_DB_PREFIX."cotisation as c";
|
|
|
|
|
|
$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."bank as b ON c.fk_bank=b.rowid";
|
|
|
|
|
|
$sql.= " WHERE d.rowid = c.fk_adherent";
|
2006-11-26 19:24:53 +01:00
|
|
|
|
if (isset($date_select) && $date_select != '')
|
2005-09-06 18:47:39 +02:00
|
|
|
|
{
|
2006-11-26 19:24:53 +01:00
|
|
|
|
$sql.= " AND dateadh LIKE '$date_select%'";
|
2003-02-28 18:18:04 +01:00
|
|
|
|
}
|
2006-11-26 19:24:53 +01:00
|
|
|
|
$sql.= " ORDER BY $sortfield $sortorder";
|
|
|
|
|
|
$sql.= $db->plimit($conf->liste_limit+1, $offset);
|
2002-12-30 16:13:28 +01:00
|
|
|
|
|
|
|
|
|
|
$result = $db->query($sql);
|
|
|
|
|
|
if ($result)
|
|
|
|
|
|
{
|
2005-09-06 18:47:39 +02:00
|
|
|
|
$num = $db->num_rows($result);
|
|
|
|
|
|
$i = 0;
|
|
|
|
|
|
|
2006-11-26 19:24:53 +01:00
|
|
|
|
$param.="&statut=$statut&date_select=$date_select";
|
|
|
|
|
|
print_barre_liste($langs->trans("ListOfSubscriptions"), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder,'',$num);
|
|
|
|
|
|
|
|
|
|
|
|
|
2005-09-06 18:47:39 +02:00
|
|
|
|
print '<table class="noborder" width="100%">';
|
|
|
|
|
|
|
|
|
|
|
|
print '<tr class="liste_titre">';
|
2007-11-11 16:55:45 +01:00
|
|
|
|
print_liste_field_titre($langs->trans("Ref"),"cotisations.php","c.rowid",$param,"","",$sortfield,$sortorder);
|
|
|
|
|
|
print_liste_field_titre($langs->trans("Name"),"cotisations.php","d.nom",$param,"","",$sortfield,$sortorder);
|
2008-08-17 23:50:27 +02:00
|
|
|
|
print_liste_field_titre($langs->trans("Login"),"cotisations.php","d.login",$param,"","",$sortfield,$sortorder);
|
2007-11-11 16:55:45 +01:00
|
|
|
|
print_liste_field_titre($langs->trans("Label"),"cotisations.php","c.note",$param,"",'align="left"',$sortfield,$sortorder);
|
2007-05-26 17:05:49 +02:00
|
|
|
|
if ($conf->banque->enabled && $conf->global->ADHERENT_BANK_USE)
|
2002-12-30 16:13:28 +01:00
|
|
|
|
{
|
2007-11-11 16:55:45 +01:00
|
|
|
|
print_liste_field_titre($langs->trans("Bank"),"cotisations.php","b.fk_account",$pram,"","",$sortfield,$sortorder);
|
2005-09-06 18:47:39 +02:00
|
|
|
|
}
|
2007-11-11 16:55:45 +01:00
|
|
|
|
print_liste_field_titre($langs->trans("Date"),"cotisations.php","c.dateadh",$param,"",'align="center"',$sortfield,$sortorder);
|
|
|
|
|
|
print_liste_field_titre($langs->trans("DateEnd"),"cotisations.php","c.datef",$param,"",'align="center"',$sortfield,$sortorder);
|
|
|
|
|
|
print_liste_field_titre($langs->trans("Amount"),"cotisations.php","c.cotisation",$param,"",'align="right"',$sortfield,$sortorder);
|
2005-09-06 18:47:39 +02:00
|
|
|
|
print "</tr>\n";
|
|
|
|
|
|
|
2007-05-28 15:14:50 +02:00
|
|
|
|
// Static objects
|
|
|
|
|
|
$cotisation=new Cotisation($db);
|
|
|
|
|
|
$adherent=new Adherent($db);
|
|
|
|
|
|
$accountstatic=new Account($db);
|
|
|
|
|
|
|
|
|
|
|
|
$var=true;
|
2005-09-06 18:47:39 +02:00
|
|
|
|
$total=0;
|
2006-11-26 19:24:53 +01:00
|
|
|
|
while ($i < $num && $i < $conf->liste_limit)
|
2005-09-06 18:47:39 +02:00
|
|
|
|
{
|
|
|
|
|
|
$objp = $db->fetch_object($result);
|
2007-08-27 13:46:24 +02:00
|
|
|
|
$total+=$objp->cotisation;
|
2005-09-06 18:47:39 +02:00
|
|
|
|
|
2006-11-26 19:24:53 +01:00
|
|
|
|
$cotisation->ref=$objp->crowid;
|
|
|
|
|
|
$cotisation->id=$objp->crowid;
|
|
|
|
|
|
|
|
|
|
|
|
$adherent->ref=trim($objp->prenom.' '.$objp->nom);
|
|
|
|
|
|
$adherent->id=$objp->rowid;
|
2008-08-17 23:50:27 +02:00
|
|
|
|
$adherent->login=$objp->login;
|
2006-11-26 19:24:53 +01:00
|
|
|
|
|
2005-09-06 18:47:39 +02:00
|
|
|
|
$var=!$var;
|
2007-05-28 15:14:50 +02:00
|
|
|
|
|
2007-12-14 10:35:15 +01:00
|
|
|
|
if ($allowinsertbankafter && ! $objp->fk_account && $conf->banque->enabled && $conf->global->ADHERENT_BANK_USE && $objp->cotisation)
|
2007-05-28 15:14:50 +02:00
|
|
|
|
{
|
|
|
|
|
|
print "<form method=\"post\" action=\"cotisations.php\">";
|
|
|
|
|
|
}
|
2005-09-06 18:47:39 +02:00
|
|
|
|
print "<tr $bc[$var]>";
|
2007-09-09 12:43:26 +02:00
|
|
|
|
|
|
|
|
|
|
// Ref
|
|
|
|
|
|
print '<td>'.$cotisation->getNomUrl(1).'</td>';
|
|
|
|
|
|
|
|
|
|
|
|
// Nom
|
|
|
|
|
|
print '<td>'.$adherent->getNomUrl(1).'</td>';
|
|
|
|
|
|
|
2008-08-17 23:50:27 +02:00
|
|
|
|
// Login
|
|
|
|
|
|
print '<td>'.$adherent->login.'</td>';
|
|
|
|
|
|
|
2007-09-09 12:43:26 +02:00
|
|
|
|
// Libelle
|
|
|
|
|
|
print '<td>';
|
|
|
|
|
|
if ($allowinsertbankafter && $user->rights->banque->modifier && ! $objp->fk_account && $conf->banque->enabled && $conf->global->ADHERENT_BANK_USE && $objp->cotisation)
|
|
|
|
|
|
{
|
|
|
|
|
|
print "<input name=\"label\" type=\"text\" class=\"flat\" size=\"30\" value=\"".$langs->trans("Subscriptions").' '.strftime("%Y",$objp->dateadh)."\" >\n";
|
|
|
|
|
|
// print "<td><input name=\"debit\" type=\"text\" size=8></td>";
|
|
|
|
|
|
// print "<td><input name=\"credit\" type=\"text\" size=8></td>";
|
|
|
|
|
|
print '<input type="submit" class="button" value="'.$langs->trans("Save").'">';
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
print dolibarr_trunc($objp->note,32);
|
|
|
|
|
|
}
|
|
|
|
|
|
print '</td>';
|
|
|
|
|
|
|
|
|
|
|
|
// Banque
|
2007-05-26 17:05:49 +02:00
|
|
|
|
if ($conf->banque->enabled && $conf->global->ADHERENT_BANK_USE)
|
2005-08-11 20:24:58 +02:00
|
|
|
|
{
|
2005-09-06 18:47:39 +02:00
|
|
|
|
if ($objp->fk_account)
|
|
|
|
|
|
{
|
2006-12-20 02:15:21 +01:00
|
|
|
|
$accountstatic->id=$objp->fk_account;
|
|
|
|
|
|
$accountstatic->fetch($objp->fk_account);
|
|
|
|
|
|
//$accountstatic->label=$objp->label;
|
|
|
|
|
|
print '<td>'.$accountstatic->getNomUrl(1).'</td>';
|
2005-09-06 18:47:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
2007-05-28 15:14:50 +02:00
|
|
|
|
print "<td>";
|
2007-12-14 10:35:15 +01:00
|
|
|
|
if ($allowinsertbankafter && $objp->cotisation)
|
2007-05-28 15:14:50 +02:00
|
|
|
|
{
|
|
|
|
|
|
print '<input type="hidden" name="action" value="2bank">';
|
|
|
|
|
|
print '<input type="hidden" name="rowid" value="'.$objp->crowid.'">';
|
|
|
|
|
|
$html = new Form($db);
|
|
|
|
|
|
$html->select_comptes('','accountid',0,'',1);
|
|
|
|
|
|
print '<br>';
|
|
|
|
|
|
$html->select_types_paiements('','paymenttypeid');
|
|
|
|
|
|
print '<input name="num_chq" type="text" class="flat" size="5">';
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
print ' ';
|
|
|
|
|
|
}
|
|
|
|
|
|
print "</td>\n";
|
2005-09-06 18:47:39 +02:00
|
|
|
|
}
|
2005-08-11 20:24:58 +02:00
|
|
|
|
}
|
2007-09-09 12:43:26 +02:00
|
|
|
|
|
|
|
|
|
|
// Date start
|
|
|
|
|
|
print '<td align="center">'.dolibarr_print_date($objp->dateadh,'day')."</td>\n";
|
|
|
|
|
|
|
|
|
|
|
|
// Date end
|
|
|
|
|
|
print '<td align="center">'.dolibarr_print_date($objp->datef,'day')."</td>\n";
|
|
|
|
|
|
|
|
|
|
|
|
// Price
|
2007-05-28 15:14:50 +02:00
|
|
|
|
print '<td align="right">'.price($objp->cotisation).'</td>';
|
2007-09-09 12:43:26 +02:00
|
|
|
|
|
2005-09-06 18:47:39 +02:00
|
|
|
|
print "</tr>";
|
2007-12-14 10:35:15 +01:00
|
|
|
|
if ($allowinsertbankafter && ! $objp->fk_account && $conf->banque->enabled && $conf->global->ADHERENT_BANK_USE && $objp->cotisation)
|
2007-05-28 15:14:50 +02:00
|
|
|
|
{
|
|
|
|
|
|
print "</form>\n";
|
|
|
|
|
|
}
|
|
|
|
|
|
$i++;
|
2002-12-30 16:13:28 +01:00
|
|
|
|
}
|
2005-09-06 18:47:39 +02:00
|
|
|
|
|
|
|
|
|
|
$var=!$var;
|
|
|
|
|
|
print '<tr class="liste_total">';
|
|
|
|
|
|
print "<td>".$langs->trans("Total")."</td>\n";
|
|
|
|
|
|
print "<td align=\"right\"> </td>\n";
|
2006-11-26 19:24:53 +01:00
|
|
|
|
print "<td align=\"right\"> </td>\n";
|
2007-09-09 12:43:26 +02:00
|
|
|
|
print "<td align=\"right\"> </td>\n";
|
2007-05-26 17:05:49 +02:00
|
|
|
|
if ($conf->banque->enabled && $conf->global->ADHERENT_BANK_USE)
|
2006-03-18 01:06:55 +01:00
|
|
|
|
{
|
|
|
|
|
|
print '<td> </td>';
|
|
|
|
|
|
}
|
2007-05-28 15:14:50 +02:00
|
|
|
|
print '<td> </td>';
|
2006-12-20 02:15:21 +01:00
|
|
|
|
print "<td align=\"right\">".price($total)."</td>\n";
|
2005-09-06 18:47:39 +02:00
|
|
|
|
print "</tr>\n";
|
2006-12-20 02:15:21 +01:00
|
|
|
|
|
2005-09-06 18:47:39 +02:00
|
|
|
|
print "</table>";
|
|
|
|
|
|
print "<br>\n";
|
2003-02-28 18:18:04 +01:00
|
|
|
|
|
2003-03-03 12:33:35 +01:00
|
|
|
|
|
2002-12-30 16:13:28 +01:00
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
2004-10-23 18:55:07 +02:00
|
|
|
|
dolibarr_print_error($db);
|
2002-12-30 16:13:28 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$db->close();
|
|
|
|
|
|
|
2005-08-11 20:24:58 +02:00
|
|
|
|
llxFooter('$Date$ - $Revision$');
|
2002-12-30 16:13:28 +01:00
|
|
|
|
?>
|