mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-22 09:21:30 +01:00
245 lines
6.0 KiB
PHP
245 lines
6.0 KiB
PHP
<?PHP
|
||
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||
*
|
||
* $Id$
|
||
* $Source$
|
||
*
|
||
* 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.
|
||
*
|
||
*/
|
||
require("./pre.inc.php3");
|
||
|
||
|
||
require("../../contact.class.php3");
|
||
require("../../lib/webcal.class.php3");
|
||
require("../../cactioncomm.class.php3");
|
||
require("../../actioncomm.class.php3");
|
||
|
||
|
||
llxHeader();
|
||
$db = new Db();
|
||
|
||
|
||
if ($page == -1) { $page = 0 ; }
|
||
$limit = $conf->liste_limit;
|
||
$offset = $limit * $page ;
|
||
/*
|
||
*
|
||
*
|
||
*
|
||
*/
|
||
if ($action=='delete_action') {
|
||
$actioncomm = new ActionComm($db);
|
||
$actioncomm->delete($actionid);
|
||
}
|
||
/*
|
||
*
|
||
*
|
||
*
|
||
*/
|
||
if ($action=='add_action') {
|
||
$contact = new Contact($db);
|
||
$contact->fetch($contactid);
|
||
|
||
|
||
$actioncomm = new ActionComm($db);
|
||
|
||
if ($actionid == 5) {
|
||
$actioncomm->date = $db->idate(mktime($heurehour,$heuremin,0,$remonth,$reday,$reyear));
|
||
} else {
|
||
$actioncomm->date = $date;
|
||
}
|
||
$actioncomm->type = $actionid;
|
||
$actioncomm->contact = $contactid;
|
||
|
||
$actioncomm->societe = $socid;
|
||
$actioncomm->note = $note;
|
||
|
||
$actioncomm->add($user);
|
||
|
||
|
||
$societe = new Societe($db);
|
||
$societe->fetch($socid);
|
||
|
||
|
||
$todo = new TodoComm($db);
|
||
$todo->date = mktime(12,0,0,$remonth, $reday, $reyear);
|
||
|
||
$todo->libelle = $todo_label;
|
||
|
||
$todo->societe = $societe->id;
|
||
$todo->contact = $contactid;
|
||
|
||
$todo->note = $todo_note;
|
||
|
||
$todo->add($user);
|
||
|
||
$webcal = new Webcal();
|
||
|
||
$webcal->heure = $heurehour . $heuremin . '00';
|
||
$webcal->duree = ($dureehour * 60) + $dureemin;
|
||
|
||
if ($actionid == 5) {
|
||
$libelle = "Rendez-vous avec ".$contact->fullname;
|
||
$libelle .= "\n" . $todo->libelle;
|
||
} else {
|
||
$libelle = $todo->libelle;
|
||
}
|
||
|
||
|
||
$webcal->add($user, $todo->date, $societe->nom, $libelle);
|
||
|
||
}
|
||
|
||
|
||
|
||
/*
|
||
*
|
||
* Liste
|
||
*
|
||
*/
|
||
|
||
if ($socid) {
|
||
$societe = new Societe($db);
|
||
$societe->fetch($socid);
|
||
|
||
print_barre_liste("Liste des actions commerciales effectu<74>es sur " . $societe->nom,$page, $PHP_SELF);
|
||
|
||
$sql = "SELECT a.id,".$db->pdate("a.datea")." as da, c.libelle, u.code, a.note, u.name, u.firstname ";
|
||
$sql .= " FROM actioncomm as a, c_actioncomm as c, llx_user as u";
|
||
$sql .= " WHERE a.fk_soc = $socid AND c.id=a.fk_action AND a.fk_user_author = u.rowid";
|
||
|
||
if ($type) {
|
||
$sql .= " AND c.id = $type";
|
||
}
|
||
|
||
$sql .= " ORDER BY a.datea DESC";
|
||
|
||
if ( $db->query($sql) ) {
|
||
$num = $db->num_rows();
|
||
$i = 0;
|
||
print "<TABLE border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"4\">";
|
||
print '<TR class="liste_titre">';
|
||
print '<TD>Date</TD>';
|
||
print "<TD>Action</TD>";
|
||
print "</TR>\n";
|
||
$var=True;
|
||
while ($i < $num) {
|
||
$obj = $db->fetch_object( $i);
|
||
|
||
$var=!$var;
|
||
|
||
print "<TR $bc[$var]>";
|
||
print "<TD width=\"10%\">" .strftime("%Y %b %d %H:%M",$obj->da)."</TD>\n";
|
||
print '<TD width="30%"><a href="fiche.php3?id='.$obj->id.'">'.$obj->libelle.'</a></td>';
|
||
print "</TR>\n";
|
||
|
||
$i++;
|
||
}
|
||
print "</TABLE>";
|
||
$db->free();
|
||
} else {
|
||
print $db->error() . '<br>' . $sql;
|
||
}
|
||
|
||
} else {
|
||
|
||
print_barre_liste("Liste des actions commerciales effectu<74>es",$page, $PHP_SELF);
|
||
|
||
$sql = "SELECT s.nom as societe, s.idp as socidp,a.id,".$db->pdate("a.datea")." as da, a.datea, c.libelle, u.code, a.fk_contact ";
|
||
$sql .= " FROM actioncomm as a, c_actioncomm as c, societe as s, llx_user as u";
|
||
$sql .= " WHERE a.fk_soc = s.idp AND c.id=a.fk_action AND a.fk_user_author = u.rowid";
|
||
|
||
if ($type) {
|
||
$sql .= " AND c.id = $type";
|
||
}
|
||
|
||
$sql .= " ORDER BY a.datea DESC";
|
||
$sql .= $db->plimit( $limit, $offset);
|
||
|
||
|
||
if ( $db->query($sql) ) {
|
||
$num = $db->num_rows();
|
||
$i = 0;
|
||
print "<TABLE border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"4\">";
|
||
print '<TR class="liste_titre">';
|
||
print '<TD colspan="4">Date</TD>';
|
||
print '<TD>Soci<63>t<EFBFBD></a></td>';
|
||
print '<TD>Action</a></TD>';
|
||
print '<TD>Contact</a></TD>';
|
||
print "<TD align=\"right\">Auteur</TD>";
|
||
print "</TR>\n";
|
||
$var=True;
|
||
while ($i < $num) {
|
||
$obj = $db->fetch_object( $i);
|
||
|
||
$var=!$var;
|
||
|
||
print "<TR $bc[$var]>";
|
||
|
||
if ($oldyear == strftime("%Y",$obj->da) ) {
|
||
print '<td align="center"> </td>';
|
||
} else {
|
||
print "<TD>" .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>" .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="20%">';
|
||
|
||
print ' <a href="/comm/fiche.php3?socid='.$obj->socidp.'">'.$obj->societe.'</A></TD>';
|
||
|
||
print '<TD width="30%"><a href="fiche.php3?id='.$obj->id.'">'.$obj->libelle.'</a></td>';
|
||
/*
|
||
* Contact
|
||
*/
|
||
print '<TD width="30%">';
|
||
if ($obj->fk_contact) {
|
||
$cont = new Contact($db);
|
||
$cont->fetch($obj->fk_contact);
|
||
print '<a href="/comm/contact.php3?id='.$cont->id.'">'.$cont->fullname.'</a>';
|
||
} else {
|
||
print " ";
|
||
}
|
||
print '</td>';
|
||
/*
|
||
*
|
||
*/
|
||
print "<TD align=\"right\" width=\"20%\">$obj->code</TD>\n";
|
||
|
||
print "</TR>\n";
|
||
$i++;
|
||
}
|
||
print "</TABLE>";
|
||
$db->free();
|
||
} else {
|
||
print $db->error() . ' ' . $sql ;
|
||
}
|
||
}
|
||
|
||
$db->close();
|
||
|
||
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
||
?>
|