From 910fd20b446a407db64718d2fd76ac4ebd16f261 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Thu, 6 Apr 2006 12:15:34 +0000 Subject: [PATCH] Nouveau fichier --- htdocs/telephonie/ligne/commentaires.php | 233 +++++++++++++++++++++++ 1 file changed, 233 insertions(+) create mode 100644 htdocs/telephonie/ligne/commentaires.php diff --git a/htdocs/telephonie/ligne/commentaires.php b/htdocs/telephonie/ligne/commentaires.php new file mode 100644 index 00000000000..a58032aa9a4 --- /dev/null +++ b/htdocs/telephonie/ligne/commentaires.php @@ -0,0 +1,233 @@ + + * + * 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.'/telephonie/telephonie.contrat.class.php'; +$mesg = ''; + +llxHeader("","","Fiche client"); + +if ($cancel == $langs->trans("Cancel")) +{ + $action = ''; +} +/* + * Affichage + * + */ + +if ($_GET["id"]) +{ + + $ligne = new LigneTel($db); + $result = $ligne->fetch_by_id($_GET["id"]); + + $soc = new Societe($db); + $result = $soc->fetch($ligne->client_comm_id, $user); + + if ($_GET["action"] == 'add') + { + $sql = "INSERT INTO ".MAIN_DB_PREFIX."telephonie_societe_ligne_comments"; + $sql .= " (fk_ligne, fk_user, commentaire,datec)"; + $sql .= " VALUES ('".$ligne->id."','".$user->id."','".$_POST["comment"]."',now());"; + $db->query($sql); + } + + if ($_GET["action"] == 'del') + { + $sql = "DELETE FROM ".MAIN_DB_PREFIX."telephonie_societe_ligne_comments"; + $sql .= " WHERE rowid = '".$_GET["commid"]."'"; + $sql .= " AND fk_user = '".$user->id."';"; + $db->query($sql); + } + + if (!$soc->perm_read) + { + print "Lecture non authorisée"; + } + + if ( $result == 1 && $soc->perm_read) + { + + $h=0; + + $head[$h][0] = DOL_URL_ROOT."/telephonie/ligne/fiche.php?id=".$ligne->id; + $head[$h][1] = $langs->trans("Ligne"); + $h++; + + if ($ligne->statut == -1) + { + if ($user->rights->telephonie->ligne->creer) + { + $head[$h][0] = DOL_URL_ROOT."/telephonie/ligne/commande.php?id=".$ligne->id; + $head[$h][1] = $langs->trans('Commande'); + $h++; + } + } + else + { + if ($user->rights->telephonie->facture->lire) + { + $head[$h][0] = DOL_URL_ROOT."/telephonie/ligne/factures.php?id=".$ligne->id; + $head[$h][1] = $langs->trans('Factures'); + $h++; + } + } + + $head[$h][0] = DOL_URL_ROOT."/telephonie/ligne/infoc.php?id=".$ligne->id; + $head[$h][1] = $langs->trans('Infos'); + $h++; + + $head[$h][0] = DOL_URL_ROOT."/telephonie/ligne/history.php?id=".$ligne->id; + $head[$h][1] = $langs->trans('Historique'); + $h++; + + + $head[$h][0] = DOL_URL_ROOT."/telephonie/ligne/commentaires.php?id=".$ligne->id; + $head[$h][1] = $langs->trans('Commentaires'); + $numc = $ligne->num_comments(); + if ($numc > 0) + { + $head[$h][1] = $langs->trans("Commentaires ($numc)"); + } + $hselected = $h; + $h++; + + $head[$h][0] = DOL_URL_ROOT."/telephonie/ligne/conso.php?id=".$ligne->id; + $head[$h][1] = $langs->trans('Conso'); + $h++; + + $head[$h][0] = DOL_URL_ROOT."/telephonie/ligne/stat.php?id=".$ligne->id; + $head[$h][1] = $langs->trans('Stats'); + $h++; + + dolibarr_fiche_head($head, $hselected, 'Ligne : '.$ligne->numero); + + + print ''; + + if ($ligne->contrat) + { + $contrat = new TelephonieContrat($db); + $contrat->fetch($ligne->contrat); + + print ''; + } + + print ''; + + print ''; + print ''; + + $client = new Societe($db, $ligne->client_id); + $client->fetch($ligne->client_id); + + print '
Contrat'.$contrat->ref_url.''; + print ' '; + print $ligne->statuts[$ligne->statut]; + print '
Client'; + print ''; + + print $client_comm->nom.''.$client_comm->code_client; + print '
Numéro'.dolibarr_print_phone($ligne->numero); + print " ".$ligne->support.'Facturée : '.$ligne->facturable.'
Client (Agence/Filiale)'; + print $client->nom.'
'; + + print $client->cp . " " .$client->ville; + print '
'; + + print '
'; + + print '
'; + print ''; + print ''; + print ''; + print "
Nouveau
commentaire'; + print '

"; + + print ''; + + /* Commentaires */ + + $sql = "SELECT c.commentaire, u.firstname, u.name, u.code, c.rowid, c.fk_user"; + $sql .= " , ".$db->pdate("c.datec") ." as datec"; + $sql .= " FROM ".MAIN_DB_PREFIX."telephonie_societe_ligne_comments as c"; + $sql .= " , ".MAIN_DB_PREFIX."user as u"; + $sql .= " WHERE fk_ligne = ".$ligne->id; + $sql .= " AND c.fk_user = u.rowid"; + $sql .= " ORDER BY c.datec DESC"; + + $resql = $db->query($sql); + + if ($resql) + { + print ''; + print "\n"; + + while ($obj = $db->fetch_object($resql)) + { + print "\n"; + print '\n"; + print '\n"; + print '\n"; + $var=!$var; + } + $db->free($resql); + } + else + { + print $sql; + } + print "
Date'; + print 'CommentaireAuteur 
".strftime("%d/%m/%y %H:%M",$obj->datec); + print "'.nl2br(stripslashes($obj->commentaire))."'.$obj->code." '; + if ($obj->fk_user == $user->id) + { + print ''; + print img_delete().''; + } + print "
"; + } +} +else +{ + print "Error"; +} + + +print ''; + +/* ************************************************************************** */ +/* */ +/* Barre d'action */ +/* */ +/* ************************************************************************** */ +/* +print "\n
\n
\n"; +print "id\">".$langs->trans("Ajouter un commentaire").""; +print "
"; +*/ + +$db->close(); + +llxFooter("Dernière modification $Date$ révision $Revision$"); +?>