*
* 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.
*
* $Id$
* $Source$
*
*/
require "./pre.inc.php";
require_once DOL_DOCUMENT_ROOT."/lib/dolibarrmail.class.php";
$mesg = '';
llxHeader("","","Fiche Contrat");
if ($_GET["id"])
{
$client_comm = new Societe($db);
$contrat = new TelephonieContrat($db);
if ($contrat->fetch($_GET["id"]) > 0)
{
$result = 1;
$client_comm->fetch($contrat->client_comm_id, $user);
}
else
{
print "Erreur";
}
if (!$client_comm->perm_read)
{
print "Lecture non authorisée";
}
if ( $result && $client_comm->perm_read)
{
if ($_GET["action"] <> 'edit' && $_GET["action"] <> 're-edit')
{
$h=0;
$head[$h][0] = DOL_URL_ROOT."/telephonie/contrat/fiche.php?id=".$contrat->id;
$head[$h][1] = $langs->trans("Contrat");
$h++;
$nser = $contrat->count_associated_services();
$head[$h][0] = DOL_URL_ROOT."/telephonie/contrat/services.php?id=".$contrat->id;
if ($nser > 0)
{
$head[$h][1] = $langs->trans("Services")." (".$nser.")";
}
else
{
$head[$h][1] = $langs->trans("Services");
}
$h++;
$head[$h][0] = DOL_URL_ROOT."/telephonie/contrat/stats.php?id=".$contrat->id;
$head[$h][1] = $langs->trans("Stats");
$h++;
$head[$h][0] = DOL_URL_ROOT."/telephonie/contrat/info.php?id=".$contrat->id;
$head[$h][1] = $langs->trans("Infos");
$hselected = $h;
$h++;
dolibarr_fiche_head($head, $hselected, 'Contrat : '.$contrat->ref);
print_fiche_titre('Fiche Contrat', $mesg);
print '
';
$client_comm = new Societe($db, $contrat->client_comm_id);
$client_comm->fetch($contrat->client_comm_id);
print '| Référence | '.$contrat->ref.' | ';
print 'Facturé : '.$contrat->facturable.' |
';
print '| Client | ';
print '';
print $client_comm->nom.' | '.$client_comm->code_client;
print ' |
';
$commercial = new User($db, $contrat->commercial_sign_id);
$commercial->fetch();
print '| Commercial Signature | ';
print ''.$commercial->fullname.' |
';
$commercial_suiv = new User($db, $contrat->commercial_suiv_id);
$commercial_suiv->fetch();
print '| Commercial Suivi | ';
print ''.$commercial_suiv->fullname.' |
';
$cuser_suiv = new User($db, $contrat->user_creat);
$cuser_suiv->fetch();
print '| Créé par | ';
print ''.$cuser_suiv->fullname;
print ' |
';
print '| Créé le | ';
print ''.strftime("%e %B %Y",$contrat->date_creat);
print ' |
';
print "
";
$sql = "SELECT s.idp, s.nom, p.fk_contrat, p.montant, p.avance_duree, p.avance_pourcent";
$sql .= ", p.rem_pour_prev, p.rem_pour_autr, p.mode_paiement";
$sql .= ", u.name, u.firstname, uu.code";
$sql .= " , ".$db->pdate("p.datepo") . " as datepo";
$sql .= " FROM ".MAIN_DB_PREFIX."telephonie_contrat_priseordre as p";
$sql .= " , ".MAIN_DB_PREFIX."telephonie_contrat as c";
$sql .= " , ".MAIN_DB_PREFIX."societe as s";
$sql .= " , ".MAIN_DB_PREFIX."user as u";
$sql .= " , ".MAIN_DB_PREFIX."user as uu";
$sql .= " WHERE p.fk_commercial =u.rowid";
$sql .= " AND p.fk_user =uu.rowid";
$sql .= " AND c.fk_soc = s.idp";
$sql .= " AND p.fk_contrat = c.rowid";
$sql .= " AND c.rowid =".$_GET["id"];
$resql = $db->query($sql);
if ($resql)
{
$num = $db->num_rows($resql);
$i = 0;
print_barre_liste("Prises d'ordre", $page, "commercialpo.php","&commid=".$_GET["commid"], $sortfield, $sortorder, '', $num);
print '';
print '| Affecté à | ';
print 'Date | ';
print 'Montant | ';
print 'MdP | ';
print 'Saisi par | ';
print "
\n";
$var=True;
while ($i < min($num,$conf->liste_limit))
{
$obj = $db->fetch_object($resql);
$var=!$var;
print "";
print '| '.$obj->firstname.' '.$obj->name." | \n";
print ''.strftime("%e %b %Y",$obj->datepo)." | \n";
print ''.sprintf("%01.2f",$obj->montant)." | \n";
if ($obj->mode_paiement == 'pre')
{
print 'Prelev | ';
}
else
{
print 'Autre | ';
}
print ''.$obj->code.' | ';
print "
\n";
$i++;
}
print "
";
$db->free();
}
else
{
print $db->error() . ' ' . $sql;
}
}
}
}
/* ************************************************************************** */
/* */
/* Barre d'action */
/* */
/* ************************************************************************** */
$db->close();
llxFooter("Dernière modification $Date$ révision $Revision$");
?>