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 '
| 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.' | '; + print 'Facturée : '.$ligne->facturable.' |
| Client (Agence/Filiale) | ';
+ print $client->nom.' '; + + print $client->cp . " " .$client->ville; + print ' | |
| Date'; + print ' | Commentaire | Auteur | '; + print " |
| ".strftime("%d/%m/%y %H:%M",$obj->datec); + print " | \n"; + print ''.nl2br(stripslashes($obj->commentaire))." | \n"; + print ''.$obj->code." | \n"; + print ''; + if ($obj->fk_user == $user->id) + { + print ''; + print img_delete().''; + } + print " |