mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-18 15:31:28 +01:00
612 lines
19 KiB
PHP
612 lines
19 KiB
PHP
<?PHP
|
||
/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||
* Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net>
|
||
*
|
||
* 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("../contact.class.php");
|
||
require("../lib/webcal.class.php");
|
||
require("../cactioncomm.class.php");
|
||
require("../actioncomm.class.php");
|
||
|
||
$user->getrights('propale');
|
||
$user->getrights('fichinter');
|
||
$user->getrights('commande');
|
||
$user->getrights('projet');
|
||
|
||
|
||
llxHeader();
|
||
|
||
if ($sortorder == "") {
|
||
$sortorder="ASC";
|
||
}
|
||
if ($sortfield == "") {
|
||
$sortfield="nom";
|
||
}
|
||
|
||
|
||
if ($action == 'attribute_prefix') {
|
||
$societe = new Societe($db, $socid);
|
||
$societe->attribute_prefix($db, $socid);
|
||
}
|
||
|
||
if ($action == 'recontact') {
|
||
$dr = mktime(0, 0, 0, $remonth, $reday, $reyear);
|
||
$sql = "INSERT INTO ".MAIN_DB_PREFIX."soc_recontact (fk_soc, datere, author) VALUES ($socid, $dr,'". $GLOBALS["REMOTE_USER"]."')";
|
||
$result = $db->query($sql);
|
||
}
|
||
|
||
if ($action == 'stcomm') {
|
||
if ($stcommid <> 'null' && $stcommid <> $oldstcomm) {
|
||
$sql = "INSERT INTO socstatutlog (datel, fk_soc, fk_statut, author) ";
|
||
$sql .= " VALUES ('$dateaction',$socid,$stcommid,'" . $GLOBALS["REMOTE_USER"] . "')";
|
||
$result = @$db->query($sql);
|
||
|
||
if ($result) {
|
||
$sql = "UPDATE ".MAIN_DB_PREFIX."societe SET fk_stcomm=$stcommid WHERE idp=$socid";
|
||
$result = $db->query($sql);
|
||
} else {
|
||
$errmesg = "ERREUR DE DATE !";
|
||
}
|
||
}
|
||
|
||
if ($actioncommid) {
|
||
$sql = "INSERT INTO ".MAIN_DB_PREFIX."actioncomm (datea, fk_action, fk_soc, fk_user_author) VALUES ('$dateaction',$actioncommid,$socid,'" . $user->id . "')";
|
||
$result = @$db->query($sql);
|
||
|
||
if (!$result) {
|
||
$errmesg = "ERREUR DE DATE !";
|
||
}
|
||
}
|
||
}
|
||
|
||
/*
|
||
* Recherche
|
||
*
|
||
*
|
||
*/
|
||
if ($mode == 'search') {
|
||
if ($mode-search == 'soc') {
|
||
$sql = "SELECT s.idp FROM ".MAIN_DB_PREFIX."societe as s ";
|
||
$sql .= " WHERE lower(s.nom) like '%".strtolower($socname)."%'";
|
||
}
|
||
|
||
if ( $db->query($sql) ) {
|
||
if ( $db->num_rows() == 1) {
|
||
$obj = $db->fetch_object(0);
|
||
$socid = $obj->idp;
|
||
}
|
||
$db->free();
|
||
}
|
||
}
|
||
/*
|
||
*
|
||
*/
|
||
$socid = $_GET["socid"];
|
||
/*
|
||
* S<>curit<69> si un client essaye d'acc<63>der <20> une autre fiche que la sienne
|
||
*/
|
||
if ($user->societe_id > 0)
|
||
{
|
||
$socid = $user->societe_id;
|
||
}
|
||
/*********************************************************************************
|
||
*
|
||
* Mode fiche
|
||
*
|
||
*
|
||
*********************************************************************************/
|
||
if ($socid > 0)
|
||
{
|
||
|
||
$societe = new Societe($db, $socid);
|
||
|
||
$sql = "SELECT s.idp, s.nom, ".$db->pdate("s.datec")." as dc, s.tel, s.fax, st.libelle as stcomm, s.fk_stcomm, s.url,s.address,s.cp,s.ville, s.note, t.libelle as typent, e.libelle as effectif, s.siren, s.prefix_comm, s.services,s.parent, s.description FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."c_stcomm as st, ".MAIN_DB_PREFIX."c_typent as t, ".MAIN_DB_PREFIX."c_effectif as e ";
|
||
$sql .= " WHERE s.fk_stcomm=st.id AND s.fk_typent = t.id AND s.fk_effectif = e.id";
|
||
|
||
if ($to == 'next') {
|
||
$sql .= " AND s.idp > $socid ORDER BY idp ASC LIMIT 1";
|
||
} elseif ($to == 'prev') {
|
||
$sql .= " AND s.idp < $socid ORDER BY idp DESC LIMIT 1";
|
||
} else {
|
||
$sql .= " AND s.idp = $socid";
|
||
}
|
||
|
||
$result = $db->query($sql);
|
||
|
||
if ($result)
|
||
{
|
||
$objsoc = $db->fetch_object(0);
|
||
|
||
$dac = strftime("%Y-%m-%d %H:%M", time());
|
||
if ($errmesg)
|
||
{
|
||
print "<b>$errmesg</b><br>";
|
||
}
|
||
|
||
/*
|
||
*
|
||
*/
|
||
print '<table class="noborder" width="100%" border="0" cellspacing="1">';
|
||
|
||
print "<tr><td><div class=\"titre\">Fiche client : $objsoc->nom</div></td>";
|
||
|
||
if ($user->societe_id == 0)
|
||
{
|
||
|
||
print "<td align=\"center\"><a href=\"../compta/fiche.php?socid=$objsoc->idp\">Compta</a></td>";
|
||
print "<td align=\"center\">[<a href=\"docsoc.php?socid=$objsoc->idp\">Documents</a>]</td>";
|
||
print "<td align=\"center\">[<a href=\"index.php?socidp=$objsoc->idp&action=add_bookmark\">Bookmark</a>]</td>";
|
||
|
||
print "<td>[<a href=\"../socnote.php?socid=$objsoc->idp\">Notes</a>]</td>";
|
||
print "<td align=\"center\">[<a href=\"../soc.php?socid=$objsoc->idp&action=edit\">Editer</a>]</td></tr>";
|
||
}
|
||
print "</table>";
|
||
/*
|
||
*
|
||
*
|
||
*/
|
||
|
||
|
||
print '<table width="100%" border="0">';
|
||
print '<tr><td valign="top">';
|
||
print '<table class="border" cellspacing="0" border="1" width="100%">';
|
||
|
||
print "<tr><td>Type</td><td> $objsoc->typent</td><td>Effectif</td><td>$objsoc->effectif</td></tr>";
|
||
print "<tr><td>Tel</td><td> $objsoc->tel </td><td>fax</td><td>$objsoc->fax </td></tr>";
|
||
print "<tr><td>Ville</td><td colspan=\"3\">".nl2br($objsoc->address)."<br>$objsoc->cp $objsoc->ville</td></tr>";
|
||
|
||
print "<tr><td>siren</td><td><a href=\"http://www.societe.com/cgi-bin/recherche?rncs=$objsoc->siren\">$objsoc->siren</a> </td>";
|
||
print "<td>prefix</td><td>";
|
||
if ($objsoc->prefix_comm)
|
||
{
|
||
print $objsoc->prefix_comm;
|
||
}
|
||
else
|
||
{
|
||
print "[<a href=\"$PHP_SELF?socid=$objsoc->idp&action=attribute_prefix\">Attribuer</a>]";
|
||
}
|
||
|
||
print "</td></tr>";
|
||
|
||
print "<tr><td>Site</td><td colspan=\"3\"><a href=\"http://$objsoc->url\">$objsoc->url</a> </td></tr>";
|
||
|
||
print "</table>";
|
||
|
||
/*
|
||
*
|
||
*/
|
||
print "</td>\n";
|
||
print '<td valign="top" width="50%">';
|
||
|
||
/*
|
||
*
|
||
* Propales
|
||
*
|
||
*/
|
||
$var = true;
|
||
print '<table border="0" width="100%" cellspacing="0" cellpadding="1">';
|
||
$sql = "SELECT s.nom, s.idp, p.rowid as propalid, p.price, p.ref, p.remise, ".$db->pdate("p.datep")." as dp, c.label as statut, c.id as statutid";
|
||
$sql .= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."propal as p, ".MAIN_DB_PREFIX."c_propalst as c WHERE p.fk_soc = s.idp AND p.fk_statut = c.id";
|
||
$sql .= " AND s.idp = $objsoc->idp ORDER BY p.datep DESC";
|
||
|
||
if ( $db->query($sql) )
|
||
{
|
||
$num = $db->num_rows();
|
||
if ($num >0 )
|
||
{
|
||
print "<tr $bc[$var]><td colspan=\"4\"><a href=\"propal.php?socidp=$objsoc->idp\">Liste des propales ($num)</td></tr>";
|
||
$var=!$var;
|
||
}
|
||
$i = 0; $now = time(); $lim = 3600 * 24 * 15 ;
|
||
while ($i < $num && $i < 2)
|
||
{
|
||
$objp = $db->fetch_object( $i);
|
||
print "<tr $bc[$var]>";
|
||
print "<td><a href=\"propal.php?propalid=$objp->propalid\">$objp->ref</a>\n";
|
||
if ( ($now - $objp->dp) > $lim && $objp->statutid == 1 )
|
||
{
|
||
print " <b>> 15 jours</b>";
|
||
}
|
||
print "</td><td align=\"right\">".strftime("%d %B %Y",$objp->dp)."</TD>\n";
|
||
print "<td align=\"right\">".price($objp->price)."</TD>\n";
|
||
print "<td align=\"center\">$objp->statut</TD></tr>\n";
|
||
$var=!$var;
|
||
$i++;
|
||
}
|
||
$db->free();
|
||
}
|
||
/*
|
||
* Commandes
|
||
*
|
||
*/
|
||
print '<table border="0" width="100%" cellspacing="0" cellpadding="1">';
|
||
$sql = "SELECT s.nom, s.idp, p.rowid as propalid, p.ref, ".$db->pdate("p.date_commande")." as dp";
|
||
$sql .= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."commande as p WHERE p.fk_soc = s.idp ";
|
||
$sql .= " AND s.idp = $objsoc->idp ORDER BY p.date_commande DESC";
|
||
|
||
if ( $db->query($sql) )
|
||
{
|
||
$num = $db->num_rows();
|
||
if ($num >0 )
|
||
{
|
||
print "<tr $bc[$var]>";
|
||
print '<td colspan="4"><a href="'.DOL_URL_ROOT.'/commande/liste.php?socidp='.$objsoc->idp.'">Liste des commandes ('.$num.')</td></tr>';
|
||
}
|
||
$i = 0; $now = time(); $lim = 3600 * 24 * 15 ;
|
||
while ($i < $num && $i < 2)
|
||
{
|
||
$objp = $db->fetch_object( $i);
|
||
$var=!$var;
|
||
print "<tr $bc[$var]>";
|
||
print '<td><a href="'.DOL_URL_ROOT.'/commande/fiche.php?id='.$objp->propalid.'">'.$objp->ref."</a>\n";
|
||
if ( ($now - $objp->dp) > $lim && $objp->statutid == 1 )
|
||
{
|
||
print " <b>> 15 jours</b>";
|
||
}
|
||
print "</td><td align=\"right\">".strftime("%d %B %Y",$objp->dp)."</TD>\n";
|
||
print "<td align=\"right\">".price($objp->price)."</TD>\n";
|
||
print "<td align=\"center\">$objp->statut</TD></tr>\n";
|
||
$i++;
|
||
}
|
||
$db->free();
|
||
}
|
||
|
||
/*
|
||
*
|
||
* Liste des projets associ<63>s
|
||
*
|
||
*/
|
||
$sql = "SELECT p.rowid,p.title,p.ref,".$db->pdate("p.dateo")." as do";
|
||
$sql .= " FROM ".MAIN_DB_PREFIX."projet as p WHERE p.fk_soc = $objsoc->idp";
|
||
if ( $db->query($sql) ) {
|
||
print "<table border=1 cellspacing=0 width=100% cellpadding=\"1\">";
|
||
$i = 0 ;
|
||
$num = $db->num_rows();
|
||
if ($num > 0) {
|
||
$tag = !$tag; print "<tr $bc[$tag]>";
|
||
print "<td colspan=\"2\"><a href=\"../projet/index.php?socidp=$objsoc->idp\">liste des projets ($num)</td></tr>";
|
||
}
|
||
while ($i < $num && $i < 5) {
|
||
$obj = $db->fetch_object( $i);
|
||
$tag = !$tag;
|
||
print "<tr $bc[$tag]>";
|
||
print '<td><a href="../projet/fiche.php?id='.$obj->rowid.'">'.$obj->title.'</a></td>';
|
||
|
||
print "<td align=\"right\">".$obj->ref ."</td></tr>";
|
||
$i++;
|
||
}
|
||
$db->free();
|
||
print "</table>";
|
||
} else {
|
||
print $db->error();
|
||
}
|
||
|
||
/*
|
||
*
|
||
*
|
||
*/
|
||
print "</td></tr>";
|
||
print "</table>\n";
|
||
/*
|
||
* Barre d'action
|
||
*
|
||
*/
|
||
print '<br><table id="actions" cellspadding="3" cellspacing="0" width="100%"><tr>';
|
||
|
||
if ($conf->propal->enabled && defined("MAIN_MODULE_PROPALE") && MAIN_MODULE_PROPALE && $user->rights->propale->creer)
|
||
{
|
||
print "<td align=\"center\"><a href=\"addpropal.php?socidp=$objsoc->idp&action=create\">Cr<43>er une proposition</a></td>";
|
||
}
|
||
else
|
||
{
|
||
print '<td align="center" width="20%">-</td>';
|
||
}
|
||
print '<td align="center" width="20%">-</td>';
|
||
if ($conf->commande->enabled && defined("MAIN_MODULE_COMMANDE") && MAIN_MODULE_COMMANDE && $user->rights->commande->creer)
|
||
{
|
||
print '<td align="center" width="20%"><a href="'.DOL_URL_ROOT.'/commande/fiche.php?socidp='.$objsoc->idp.'&action=create">Cr<43>er une commande</a></td>';
|
||
}
|
||
else
|
||
{
|
||
print '<td align="center" width="20%">-</td>';
|
||
}
|
||
if ($conf->projet->enabled && $user->rights->projet->creer)
|
||
{
|
||
print '<td align="center" width="20%"><a href="../projet/fiche.php?socidp='.$socid.'&action=create">Cr<43>er un projet</a></td>';
|
||
}
|
||
else
|
||
{
|
||
print '<td align="center" width="20%">-</td>';
|
||
}
|
||
|
||
if (defined("MAIN_MODULE_FICHEINTER") && MAIN_MODULE_FICHEINTER)
|
||
{
|
||
print '<td align="center" width="20%"><a href="../fichinter/fiche.php?socidp='.$objsoc->idp.'&action=create">Intervention</a></td>';
|
||
}
|
||
|
||
print '</tr></table><br>';
|
||
|
||
/*
|
||
*
|
||
*
|
||
*
|
||
*/
|
||
if ($action == 'changevalue') {
|
||
print "<HR noshade>";
|
||
print "<form action=\"index.php?socid=$objsoc->idp\" method=\"post\">";
|
||
print "<input type=\"hidden\" name=\"action\" value=\"cabrecrut\">";
|
||
print "Cette soci<63>t<EFBFBD> est un cabinet de recrutement : ";
|
||
print "<select name=\"selectvalue\">";
|
||
print "<option value=\"\">";
|
||
print "<option value=\"t\">Oui";
|
||
print "<option value=\"f\">Non";
|
||
print "</select>";
|
||
print "<input type=\"submit\" value=\"Mettre à jour\">";
|
||
print "</form>\n";
|
||
} else {
|
||
/*
|
||
*
|
||
* Liste des contacts
|
||
*
|
||
*/
|
||
print '<table width="100%" cellspacing="1" border="0" cellpadding="2">';
|
||
|
||
print '<tr class="liste_titre"><td>Prénom Nom</td>';
|
||
print '<td>Poste</td><td>Tél</td>';
|
||
print "<td>Fax</td><td>Email</td>";
|
||
print "<td align=\"center\"><a href=\"../contact/fiche.php?socid=$objsoc->idp&action=create\">Ajouter</a></td></tr>";
|
||
|
||
$sql = "SELECT p.idp, p.name, p.firstname, p.poste, p.phone, p.fax, p.email, p.note FROM ".MAIN_DB_PREFIX."socpeople as p WHERE p.fk_soc = $objsoc->idp ORDER by p.datec";
|
||
$result = $db->query($sql);
|
||
$i = 0 ; $num = $db->num_rows(); $tag = True;
|
||
while ($i < $num)
|
||
{
|
||
$obj = $db->fetch_object( $i);
|
||
$var = !$var;
|
||
print "<tr $bc[$var]>";
|
||
|
||
print '<td>';
|
||
|
||
print '<a href="action/fiche.php?action=create&actionid=5&contactid='.$obj->idp.'&socid='.$objsoc->idp.'">'.$obj->firstname.' '. $obj->name.'</a> ';
|
||
|
||
if ($obj->note)
|
||
{
|
||
print "<br>".nl2br($obj->note);
|
||
}
|
||
print "</td>";
|
||
print "<td>$obj->poste </td>";
|
||
print '<td><a href="action/fiche.php?action=create&actionid=1&contactid='.$obj->idp.'&socid='.$objsoc->idp.'">'.$obj->phone.'</a> </td>';
|
||
print '<td><a href="action/fiche.php?action=create&actionid=2&contactid='.$obj->idp.'&socid='.$objsoc->idp.'">'.$obj->fax.'</a> </td>';
|
||
print '<td><a href="action/fiche.php?action=create&actionid=4&contactid='.$obj->idp.'&socid='.$objsoc->idp.'">'.$obj->email.'</a> </td>';
|
||
print "<td align=\"center\">";
|
||
print "<a href=\"../contact/fiche.php?action=edit&id=$obj->idp\">";
|
||
print img_edit();
|
||
print '</a></td>';
|
||
print "</tr>\n";
|
||
$i++;
|
||
$tag = !$tag;
|
||
}
|
||
print "</table>";
|
||
|
||
print "<p />";
|
||
|
||
/*
|
||
*
|
||
* Listes des actions a faire
|
||
*
|
||
*/
|
||
print '<table width="100%" cellspacing=0 border=0 cellpadding=2>';
|
||
print '<tr class="liste_titre"><td>Actions <20> faire</td><td align="right"> [<a href="action/fiche.php?action=create&socid='.$socid.'&afaire=1">Nouvelle action</a>]</td></tr>';
|
||
print '<tr>';
|
||
print '<td colspan="2" valign="top">';
|
||
|
||
$sql = "SELECT a.id, ".$db->pdate("a.datea")." as da, c.libelle, u.code, a.propalrowid, a.fk_user_author, fk_contact, u.rowid ";
|
||
$sql .= " FROM ".MAIN_DB_PREFIX."actioncomm as a, ".MAIN_DB_PREFIX."c_actioncomm as c, ".MAIN_DB_PREFIX."user as u ";
|
||
$sql .= " WHERE a.fk_soc = $objsoc->idp ";
|
||
$sql .= " AND u.rowid = a.fk_user_author";
|
||
$sql .= " AND c.id=a.fk_action AND a.percent < 100";
|
||
$sql .= " ORDER BY a.datea DESC, a.id DESC";
|
||
|
||
if ( $db->query($sql) ) {
|
||
print "<table width=\"100%\" cellspacing=0 border=0 cellpadding=2>\n";
|
||
|
||
$i = 0 ; $num = $db->num_rows();
|
||
while ($i < $num) {
|
||
$var = !$var;
|
||
|
||
$obj = $db->fetch_object( $i);
|
||
print "<tr $bc[$var]>";
|
||
|
||
if ($oldyear == strftime("%Y",$obj->da) ) {
|
||
print '<td align="center">|</td>';
|
||
} else {
|
||
print "<TD align=\"center\">" .strftime("%Y",$obj->da)."</TD>\n";
|
||
$oldyear = strftime("%Y",$obj->da);
|
||
}
|
||
|
||
if ($oldmonth == strftime("%Y%b",$obj->da) ) {
|
||
print '<td align="center">|</td>';
|
||
} else {
|
||
print "<TD align=\"center\">" .strftime("%b",$obj->da)."</TD>\n";
|
||
$oldmonth = strftime("%Y%b",$obj->da);
|
||
}
|
||
|
||
print "<TD>" .strftime("%d",$obj->da)."</TD>\n";
|
||
print "<TD>" .strftime("%H:%M",$obj->da)."</TD>\n";
|
||
|
||
print '<td width="10%"> </td>';
|
||
|
||
if ($obj->propalrowid)
|
||
{
|
||
print '<td width="40%"><a href="propal.php?propalid='.$obj->propalrowid.'">'.$obj->libelle.'</a></td>';
|
||
}
|
||
else
|
||
{
|
||
print '<td width="40%"><a href="action/fiche.php?id='.$obj->id.'">'.$obj->libelle.'</a></td>';
|
||
}
|
||
/*
|
||
* Contact pour cette action
|
||
*
|
||
*/
|
||
if ($obj->fk_contact) {
|
||
$contact = new Contact($db);
|
||
$contact->fetch($obj->fk_contact);
|
||
print '<td width="40%"><a href="people.php?socid='.$objsoc->idp.'&contactid='.$contact->id.'">'.$contact->fullname.'</a></td>';
|
||
} else {
|
||
print '<td width="40%"> </td>';
|
||
}
|
||
/*
|
||
*/
|
||
print '<td width="20%"><a href="../user/fiche.php?id='.$obj->fk_user_author.'">'.$obj->code.'</a></td>';
|
||
print "</tr>\n";
|
||
$i++;
|
||
}
|
||
print "</table>";
|
||
|
||
$db->free();
|
||
} else {
|
||
print $db->error();
|
||
}
|
||
print "</td></tr></table>";
|
||
|
||
/*
|
||
*
|
||
* Listes des actions effectuees
|
||
*
|
||
*/
|
||
print '<table width="100%" cellspacing=0 border=0 cellpadding=2>';
|
||
print '<tr class="liste_titre"><td><a href="action/index.php?socid='.$socid.'">Actions effectu<74>es</a></td></tr>';
|
||
print '<tr>';
|
||
print '<td valign="top">';
|
||
|
||
$sql = "SELECT a.id, ".$db->pdate("a.datea")." as da, c.libelle, u.code, a.propalrowid, a.fk_user_author, fk_contact, u.rowid ";
|
||
$sql .= " FROM ".MAIN_DB_PREFIX."actioncomm as a, ".MAIN_DB_PREFIX."c_actioncomm as c, ".MAIN_DB_PREFIX."user as u ";
|
||
$sql .= " WHERE a.fk_soc = $objsoc->idp ";
|
||
$sql .= " AND u.rowid = a.fk_user_author";
|
||
$sql .= " AND c.id=a.fk_action AND a.percent = 100";
|
||
$sql .= " ORDER BY a.datea DESC, a.id DESC";
|
||
|
||
if ( $db->query($sql) )
|
||
{
|
||
print '<table width="100%" cellspacing="0" border="0" cellpadding="2">';
|
||
|
||
$i = 0 ;
|
||
$num = $db->num_rows();
|
||
$oldyear='';
|
||
$oldmonth='';
|
||
while ($i < $num)
|
||
{
|
||
$var = !$var;
|
||
|
||
$obj = $db->fetch_object( $i);
|
||
print "<tr $bc[$var]>";
|
||
|
||
if ($oldyear == strftime("%Y",$obj->da) )
|
||
{
|
||
print '<td align="center">|</td>';
|
||
}
|
||
else
|
||
{
|
||
print "<TD align=\"center\">" .strftime("%Y",$obj->da)."</TD>\n";
|
||
$oldyear = strftime("%Y",$obj->da);
|
||
}
|
||
|
||
if ($oldmonth == strftime("%Y%b",$obj->da) )
|
||
{
|
||
print '<td align="center">|</td>';
|
||
}
|
||
else
|
||
{
|
||
print "<TD align=\"center\">" .strftime("%b",$obj->da)."</TD>\n";
|
||
$oldmonth = strftime("%Y%b",$obj->da);
|
||
}
|
||
|
||
print "<TD>" .strftime("%d",$obj->da)."</TD>\n";
|
||
print "<TD>" .strftime("%H:%M",$obj->da)."</TD>\n";
|
||
|
||
print '<td width="10%"> </td>';
|
||
|
||
if ($obj->propalrowid)
|
||
{
|
||
print '<td width="40%"><a href="propal.php?propalid='.$obj->propalrowid.'">'.$obj->libelle.'</a></td>';
|
||
}
|
||
else
|
||
{
|
||
print '<td width="40%"><a href="action/fiche.php?id='.$obj->id.'">'.$obj->libelle.'</a></td>';
|
||
}
|
||
/*
|
||
* Contact pour cette action
|
||
*
|
||
*/
|
||
if ($obj->fk_contact)
|
||
{
|
||
$contact = new Contact($db);
|
||
$contact->fetch($obj->fk_contact);
|
||
print '<td width="40%"><a href="people.php?socid='.$objsoc->idp.'&contactid='.$contact->id.'">'.$contact->fullname.'</a></td>';
|
||
}
|
||
else
|
||
{
|
||
print '<td width="40%"> </td>';
|
||
}
|
||
/*
|
||
*/
|
||
print '<td width="20%"><a href="../user/fiche.php?id='.$obj->fk_user_author.'">'.$obj->code.'</a></td>';
|
||
print "</tr>\n";
|
||
$i++;
|
||
}
|
||
print "</table>";
|
||
|
||
$db->free();
|
||
}
|
||
else
|
||
{
|
||
print $db->error();
|
||
}
|
||
print "</td></tr></table>";
|
||
/*
|
||
*
|
||
* Notes sur la societe
|
||
*
|
||
*/
|
||
if ($objsoc->note)
|
||
{
|
||
print '<table border="1" width="100%" cellspacing="0" bgcolor="#e0e0e0">';
|
||
print "<tr><td>".nl2br($objsoc->note)."</td></tr>";
|
||
print "</table>";
|
||
}
|
||
/*
|
||
*
|
||
*
|
||
*
|
||
*/
|
||
|
||
}
|
||
} else {
|
||
print $db->error() . "<br>" . $sql;
|
||
}
|
||
} else {
|
||
print "Erreur";
|
||
}
|
||
$db->close();
|
||
|
||
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
||
?>
|