2002-04-30 12:51:35 +02:00
|
|
|
|
<?PHP
|
2003-09-12 02:20:56 +02:00
|
|
|
|
/* Copyright (C) 2003 Brian Fraval <brian@fraval.org>
|
2004-02-05 16:10:35 +01:00
|
|
|
|
* Copyright (C) 2002-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
2002-04-30 12:51:35 +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.
|
|
|
|
|
|
*
|
2002-05-29 17:28:31 +02:00
|
|
|
|
* $Id$
|
|
|
|
|
|
* $Source$
|
|
|
|
|
|
*
|
2002-04-30 12:51:35 +02:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
class Societe {
|
|
|
|
|
|
var $db;
|
|
|
|
|
|
|
|
|
|
|
|
var $id;
|
|
|
|
|
|
var $nom;
|
2002-05-04 01:01:45 +02:00
|
|
|
|
var $adresse;
|
|
|
|
|
|
var $cp;
|
|
|
|
|
|
var $ville;
|
2002-04-30 12:51:35 +02:00
|
|
|
|
var $tel;
|
|
|
|
|
|
var $fax;
|
|
|
|
|
|
var $url;
|
2002-05-04 01:01:45 +02:00
|
|
|
|
var $siren;
|
2002-04-30 12:51:35 +02:00
|
|
|
|
var $client;
|
2002-05-09 16:57:48 +02:00
|
|
|
|
var $note;
|
2003-01-28 18:55:40 +01:00
|
|
|
|
var $fournisseur;
|
|
|
|
|
|
|
2002-05-09 16:57:48 +02:00
|
|
|
|
|
2003-11-25 14:24:15 +01:00
|
|
|
|
Function Societe($DB, $id=0)
|
|
|
|
|
|
{
|
2002-04-30 12:51:35 +02:00
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
|
|
|
|
$this->db = $DB;
|
|
|
|
|
|
$this->id = $id;
|
2002-12-13 17:31:44 +01:00
|
|
|
|
$this->client = 0;
|
2002-12-12 22:04:06 +01:00
|
|
|
|
$this->fournisseur = 0;
|
2002-04-30 12:51:35 +02:00
|
|
|
|
return 1;
|
|
|
|
|
|
}
|
2002-07-29 12:26:12 +02:00
|
|
|
|
/*
|
|
|
|
|
|
*
|
|
|
|
|
|
*
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
2003-11-25 14:24:15 +01:00
|
|
|
|
Function create()
|
|
|
|
|
|
{
|
2004-02-01 02:50:21 +01:00
|
|
|
|
$sql = "INSERT INTO ".MAIN_DB_PREFIX."societe (nom, datec, datea, client) ";
|
2002-12-12 22:04:06 +01:00
|
|
|
|
$sql .= " VALUES ('".trim($this->nom)."', now(), now(), $this->client);";
|
2002-04-30 12:51:35 +02:00
|
|
|
|
|
|
|
|
|
|
if ($this->db->query($sql) ) {
|
|
|
|
|
|
$id = $this->db->last_insert_id();
|
|
|
|
|
|
|
|
|
|
|
|
$this->update($id);
|
|
|
|
|
|
|
|
|
|
|
|
return $id;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
/*
|
|
|
|
|
|
*
|
|
|
|
|
|
*
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
2003-02-02 16:01:56 +01:00
|
|
|
|
Function update($id)
|
2003-11-25 14:24:15 +01:00
|
|
|
|
{
|
|
|
|
|
|
if (strlen(trim($this->nom)) == 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
$this->nom = "VALEUR MANQUANTE";
|
|
|
|
|
|
}
|
2003-02-02 16:01:56 +01:00
|
|
|
|
|
2004-02-01 02:50:21 +01:00
|
|
|
|
$sql = "UPDATE ".MAIN_DB_PREFIX."societe ";
|
2003-11-25 14:24:15 +01:00
|
|
|
|
$sql .= " SET nom = '" . trim($this->nom) ."'";
|
|
|
|
|
|
$sql .= ",address = '" . trim($this->adresse) ."'";
|
|
|
|
|
|
$sql .= ",cp = '" . trim($this->cp) ."'";
|
|
|
|
|
|
$sql .= ",ville = '" . trim($this->ville) ."'";
|
|
|
|
|
|
$sql .= ",tel = '" . trim($this->tel) ."'";
|
|
|
|
|
|
$sql .= ",fax = '" . trim($this->fax) ."'";
|
|
|
|
|
|
$sql .= ",url = '" . trim($this->url) ."'";
|
|
|
|
|
|
$sql .= ",siren = '" . trim($this->siren) ."'";
|
2004-02-05 16:10:35 +01:00
|
|
|
|
$sql .= ",siret = '" . trim($this->siret) ."'";
|
|
|
|
|
|
$sql .= ",ape = '" . trim($this->ape) ."'";
|
|
|
|
|
|
$sql .= ",tva_intra = '" . trim($this->tva_intra) ."'";
|
|
|
|
|
|
$sql .= ",capital = " . $this->capital;
|
2003-11-25 14:24:15 +01:00
|
|
|
|
$sql .= ",client = " . $this->client ;
|
|
|
|
|
|
$sql .= ",fournisseur = " . $this->fournisseur ;
|
|
|
|
|
|
$sql .= " WHERE idp = " . $id .";";
|
|
|
|
|
|
|
|
|
|
|
|
if (! $this->db->query($sql))
|
2002-12-12 22:04:06 +01:00
|
|
|
|
{
|
|
|
|
|
|
print $this->db->error();
|
|
|
|
|
|
}
|
2003-11-25 14:24:15 +01:00
|
|
|
|
}
|
2003-09-12 02:20:56 +02:00
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
* Suppression d'une societe.
|
2003-09-12 16:08:02 +02:00
|
|
|
|
* TODO: Cette fonction n'est pas utilis<EFBFBD>e..
|
|
|
|
|
|
* Attente des contraintes d'int<EFBFBD>grit<EFBFBD> dans MySql
|
2003-09-12 02:20:56 +02:00
|
|
|
|
*/
|
|
|
|
|
|
Function delete($id)
|
|
|
|
|
|
{
|
2004-02-01 02:50:21 +01:00
|
|
|
|
$sql = "DELETE from ".MAIN_DB_PREFIX."societe ";
|
2003-09-12 02:20:56 +02:00
|
|
|
|
$sql .= " WHERE idp = " . $id .";";
|
|
|
|
|
|
|
|
|
|
|
|
if (! $this->db->query($sql))
|
|
|
|
|
|
{
|
|
|
|
|
|
print $this->db->error();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Suppression du r<>pertoire document
|
|
|
|
|
|
$docdir = SOCIETE_OUTPUTDIR . "/$id";
|
|
|
|
|
|
|
|
|
|
|
|
// Cette fonction permet de supprimer le r<>pertoire de la societe
|
|
|
|
|
|
// Meme s'il contient des documents.
|
|
|
|
|
|
function deldir($dir){
|
|
|
|
|
|
$current_dir = opendir($dir);
|
|
|
|
|
|
while($entryname = readdir($current_dir)){
|
|
|
|
|
|
if(is_dir("$dir/$entryname") and ($entryname != "." and $entryname!="..")){
|
|
|
|
|
|
deldir("${dir}/${entryname}");
|
|
|
|
|
|
}elseif($entryname != "." and $entryname!=".."){
|
|
|
|
|
|
unlink("${dir}/${entryname}");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
closedir($current_dir);
|
|
|
|
|
|
rmdir(${dir});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (file_exists ($docdir))
|
|
|
|
|
|
{
|
|
|
|
|
|
deldir($docdir);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-04-30 12:51:35 +02:00
|
|
|
|
/*
|
|
|
|
|
|
*
|
|
|
|
|
|
*
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
2003-04-13 16:49:17 +02:00
|
|
|
|
Function factures_impayes()
|
|
|
|
|
|
{
|
|
|
|
|
|
$facimp = array();
|
|
|
|
|
|
/*
|
|
|
|
|
|
* Lignes
|
|
|
|
|
|
*/
|
|
|
|
|
|
$sql = "SELECT f.rowid";
|
2004-02-01 02:50:21 +01:00
|
|
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."facture as f WHERE f.fk_soc = ".$this->id;
|
2003-04-13 16:49:17 +02:00
|
|
|
|
$sql .= " AND f.fk_statut = 1 AND f.paye = 0";
|
|
|
|
|
|
|
|
|
|
|
|
if ($this->db->query($sql))
|
|
|
|
|
|
{
|
|
|
|
|
|
$num = $this->db->num_rows();
|
|
|
|
|
|
$i = 0;
|
|
|
|
|
|
|
|
|
|
|
|
while ($i < $num)
|
|
|
|
|
|
{
|
|
|
|
|
|
$objp = $this->db->fetch_object($i);
|
|
|
|
|
|
$array_push($facimp, $objp->rowid);
|
|
|
|
|
|
$i++;
|
|
|
|
|
|
print $i;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$this->db->free();
|
|
|
|
|
|
}
|
|
|
|
|
|
return $facimp;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
*
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
2003-06-30 16:56:46 +02:00
|
|
|
|
Function fetch($socid)
|
|
|
|
|
|
{
|
|
|
|
|
|
$this->id = $socid;
|
2002-04-30 12:51:35 +02:00
|
|
|
|
|
2004-02-05 16:10:35 +01:00
|
|
|
|
$sql = "SELECT s.idp, s.nom, s.address,".$this->db->pdate("s.datec")." as dc, prefix_comm";
|
|
|
|
|
|
$sql .= ", s.tel, s.fax, s.url,s.cp,s.ville, s.note, s.siren, client, fournisseur";
|
|
|
|
|
|
$sql .= ", s.siret, s.capital, s.ape, s.tva_intra";
|
2004-02-01 02:50:21 +01:00
|
|
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."societe as s";
|
2004-02-05 16:10:35 +01:00
|
|
|
|
|
2003-06-30 16:56:46 +02:00
|
|
|
|
$sql .= " WHERE s.idp = ".$this->id;
|
2002-04-30 12:51:35 +02:00
|
|
|
|
|
2003-06-30 16:56:46 +02:00
|
|
|
|
$result = $this->db->query($sql);
|
2002-05-29 17:18:01 +02:00
|
|
|
|
|
2003-06-30 16:56:46 +02:00
|
|
|
|
if ($result)
|
|
|
|
|
|
{
|
|
|
|
|
|
if ($this->db->num_rows())
|
|
|
|
|
|
{
|
|
|
|
|
|
$obj = $this->db->fetch_object(0);
|
2002-05-29 17:18:01 +02:00
|
|
|
|
|
2003-06-30 16:56:46 +02:00
|
|
|
|
$this->nom = stripslashes($obj->nom);
|
|
|
|
|
|
$this->adresse = stripslashes($obj->address);
|
|
|
|
|
|
$this->cp = $obj->cp;
|
|
|
|
|
|
$this->ville = stripslashes($obj->ville);
|
|
|
|
|
|
|
|
|
|
|
|
$this->url = $obj->url;
|
2003-09-11 22:18:51 +02:00
|
|
|
|
$this->nom_url = '<a href="'.DOL_URL_ROOT.'/comm/fiche.php?socid='.$this->id.'">'.$obj->nom.'</a>';
|
2003-06-30 16:56:46 +02:00
|
|
|
|
$this->tel = $obj->tel;
|
|
|
|
|
|
$this->fax = $obj->fax;
|
|
|
|
|
|
|
2004-02-05 16:10:35 +01:00
|
|
|
|
$this->siren = $obj->siren;
|
|
|
|
|
|
$this->siret = $obj->siret;
|
|
|
|
|
|
$this->ape = $obj->ape;
|
|
|
|
|
|
$this->capital = $obj->capital;
|
|
|
|
|
|
|
|
|
|
|
|
$this->tva_intra = $obj->tva_intra;
|
|
|
|
|
|
$this->tva_intra_code = substr($obj->tva_intra,0,2);
|
|
|
|
|
|
$this->tva_intra_num = substr($obj->tva_intra,2);
|
|
|
|
|
|
|
2003-08-27 13:20:22 +02:00
|
|
|
|
|
|
|
|
|
|
$this->prefix_comm = $obj->prefix_comm;
|
2003-06-30 16:56:46 +02:00
|
|
|
|
|
|
|
|
|
|
$this->client = $obj->client;
|
|
|
|
|
|
$this->fournisseur = $obj->fournisseur;
|
|
|
|
|
|
|
|
|
|
|
|
$this->note = $obj->note;
|
2002-04-30 12:51:35 +02:00
|
|
|
|
|
2003-06-30 16:56:46 +02:00
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
$this->db->free();
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
print $this->db->error();
|
|
|
|
|
|
}
|
2002-04-30 12:51:35 +02:00
|
|
|
|
}
|
|
|
|
|
|
/*
|
|
|
|
|
|
*
|
|
|
|
|
|
*
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
2002-04-30 13:30:19 +02:00
|
|
|
|
|
2002-12-12 22:04:06 +01:00
|
|
|
|
Function attribute_prefix()
|
|
|
|
|
|
{
|
2004-02-01 02:50:21 +01:00
|
|
|
|
$sql = "SELECT nom FROM ".MAIN_DB_PREFIX."societe WHERE idp = $this->id";
|
2002-12-12 22:04:06 +01:00
|
|
|
|
if ( $this->db->query( $sql) )
|
|
|
|
|
|
{
|
|
|
|
|
|
if ( $this->db->num_rows() )
|
|
|
|
|
|
{
|
2003-10-06 21:23:33 +02:00
|
|
|
|
$nom = preg_replace("/[[:punct:]]/","",$this->db->result(0,0));
|
2002-12-12 22:04:06 +01:00
|
|
|
|
$this->db->free();
|
|
|
|
|
|
|
|
|
|
|
|
$prefix = strtoupper(substr($nom, 0, 2));
|
2002-04-30 13:30:19 +02:00
|
|
|
|
|
2004-02-01 02:50:21 +01:00
|
|
|
|
$sql = "SELECT count(*) FROM ".MAIN_DB_PREFIX."societe WHERE prefix_comm = '$prefix'";
|
2002-12-12 22:04:06 +01:00
|
|
|
|
if ( $this->db->query( $sql) )
|
|
|
|
|
|
{
|
|
|
|
|
|
if ( $this->db->result(0, 0) )
|
|
|
|
|
|
{
|
|
|
|
|
|
$this->db->free();
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
$this->db->free();
|
|
|
|
|
|
|
2004-02-01 02:50:21 +01:00
|
|
|
|
$sql = "UPDATE ".MAIN_DB_PREFIX."societe set prefix_comm='$prefix' WHERE idp=$this->id";
|
2002-12-12 22:04:06 +01:00
|
|
|
|
|
|
|
|
|
|
if ( $this->db->query( $sql) )
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
print $this->db->error();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
print $this->db->error();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2002-04-30 13:30:19 +02:00
|
|
|
|
}
|
2002-12-12 22:04:06 +01:00
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
print $this->db->error();
|
|
|
|
|
|
}
|
|
|
|
|
|
return $prefix;
|
2002-04-30 13:30:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
/*
|
|
|
|
|
|
*
|
|
|
|
|
|
*
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
2002-12-12 22:04:06 +01:00
|
|
|
|
Function get_nom($id)
|
|
|
|
|
|
{
|
2002-04-30 12:51:35 +02:00
|
|
|
|
|
2004-02-01 02:50:21 +01:00
|
|
|
|
$sql = "SELECT nom FROM ".MAIN_DB_PREFIX."societe WHERE idp=$id;";
|
2002-12-12 22:04:06 +01:00
|
|
|
|
|
|
|
|
|
|
$result = $this->db->query($sql);
|
|
|
|
|
|
|
|
|
|
|
|
if ($result)
|
|
|
|
|
|
{
|
|
|
|
|
|
if ($this->db->num_rows())
|
|
|
|
|
|
{
|
|
|
|
|
|
$obj = $this->db->fetch_object($result , 0);
|
|
|
|
|
|
|
|
|
|
|
|
$this->nom = $obj->nom;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
$this->db->free();
|
2002-04-30 12:51:35 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2003-02-02 16:01:56 +01:00
|
|
|
|
/*
|
|
|
|
|
|
*
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
|
|
|
|
|
Function contact_email_array()
|
|
|
|
|
|
{
|
|
|
|
|
|
$contact_email = array();
|
|
|
|
|
|
|
2004-02-01 02:50:21 +01:00
|
|
|
|
$sql = "SELECT idp, email, name, firstname FROM ".MAIN_DB_PREFIX."socpeople WHERE fk_soc = $this->id";
|
2003-02-02 16:01:56 +01:00
|
|
|
|
|
|
|
|
|
|
if ($this->db->query($sql) )
|
|
|
|
|
|
{
|
|
|
|
|
|
$nump = $this->db->num_rows();
|
|
|
|
|
|
|
|
|
|
|
|
if ($nump)
|
|
|
|
|
|
{
|
|
|
|
|
|
$i = 0;
|
|
|
|
|
|
while ($i < $nump)
|
|
|
|
|
|
{
|
|
|
|
|
|
$obj = $this->db->fetch_object($i);
|
|
|
|
|
|
|
|
|
|
|
|
$contact_email[$obj->idp] = "$obj->firstname $obj->name <$obj->email>";
|
|
|
|
|
|
$i++;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return $contact_email;
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
print $this->db->error();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
/*
|
|
|
|
|
|
*
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
2003-08-03 19:00:34 +02:00
|
|
|
|
Function contact_array()
|
|
|
|
|
|
{
|
|
|
|
|
|
$contacts = array();
|
|
|
|
|
|
|
2004-02-01 02:50:21 +01:00
|
|
|
|
$sql = "SELECT idp, name, firstname FROM ".MAIN_DB_PREFIX."socpeople WHERE fk_soc = $this->id";
|
2003-08-03 19:00:34 +02:00
|
|
|
|
|
|
|
|
|
|
if ($this->db->query($sql) )
|
|
|
|
|
|
{
|
|
|
|
|
|
$nump = $this->db->num_rows();
|
|
|
|
|
|
|
|
|
|
|
|
if ($nump)
|
|
|
|
|
|
{
|
|
|
|
|
|
$i = 0;
|
|
|
|
|
|
while ($i < $nump)
|
|
|
|
|
|
{
|
|
|
|
|
|
$obj = $this->db->fetch_object($i);
|
|
|
|
|
|
|
|
|
|
|
|
$contacts[$obj->idp] = "$obj->firstname $obj->name";
|
|
|
|
|
|
$i++;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return $contacts;
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
print $this->db->error();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
/*
|
|
|
|
|
|
*
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
2003-02-02 16:01:56 +01:00
|
|
|
|
Function contact_get_email($rowid)
|
|
|
|
|
|
{
|
|
|
|
|
|
|
2004-02-01 02:50:21 +01:00
|
|
|
|
$sql = "SELECT idp, email, name, firstname FROM ".MAIN_DB_PREFIX."socpeople WHERE idp = $rowid";
|
2003-02-02 16:01:56 +01:00
|
|
|
|
|
|
|
|
|
|
if ($this->db->query($sql) )
|
|
|
|
|
|
{
|
|
|
|
|
|
$nump = $this->db->num_rows();
|
2002-04-30 12:51:35 +02:00
|
|
|
|
|
2003-02-02 16:01:56 +01:00
|
|
|
|
if ($nump)
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
$obj = $this->db->fetch_object(0);
|
|
|
|
|
|
|
|
|
|
|
|
$contact_email = "$obj->firstname $obj->name <$obj->email>";
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
return $contact_email;
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
print $this->db->error();
|
|
|
|
|
|
print "<p>$rowid";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2002-04-30 12:51:35 +02:00
|
|
|
|
|
|
|
|
|
|
}
|
2002-07-29 12:26:12 +02:00
|
|
|
|
|
2002-04-30 12:51:35 +02:00
|
|
|
|
?>
|