From 108067efd3d340452980812db9561b180428fcc9 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Wed, 9 Feb 2005 13:37:52 +0000 Subject: [PATCH] Nouveau fichier --- htdocs/telephonie/client/lignes.php | 172 ++++++++++++++++++ .../telephonie/ligne/commande/historique.php | 168 +++++++++++++++++ 2 files changed, 340 insertions(+) create mode 100644 htdocs/telephonie/client/lignes.php create mode 100644 htdocs/telephonie/ligne/commande/historique.php diff --git a/htdocs/telephonie/client/lignes.php b/htdocs/telephonie/client/lignes.php new file mode 100644 index 00000000000..17b29767b71 --- /dev/null +++ b/htdocs/telephonie/client/lignes.php @@ -0,0 +1,172 @@ + + * + * 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"); + +$mesg = ''; + +llxHeader("","","Fiche client"); + +if ($cancel == $langs->trans("Cancel")) +{ + $action = ''; +} +/* + * Affichage + * + */ + +if ($_GET["id"]) +{ + $soc = new Societe($db); + $result = $soc->fetch($_GET["id"]); + + if ( $result == 1 ) + { + if ($_GET["action"] <> 'edit' && $_GET["action"] <> 're-edit') + { + $h=0; + + $head[$h][0] = DOL_URL_ROOT."/telephonie/client/fiche.php?id=".$soc->id; + $head[$h][1] = $langs->trans("Contrats"); + $hselected = $h; + $h++; + + $head[$h][0] = DOL_URL_ROOT."/telephonie/client/lignes.php?id=".$soc->id; + $head[$h][1] = $langs->trans("Lignes"); + $hselected = $h; + $h++; + + $head[$h][0] = DOL_URL_ROOT."/telephonie/client/factures.php?id=".$soc->id; + $head[$h][1] = $langs->trans("Factures"); + $h++; + + $head[$h][0] = DOL_URL_ROOT."/telephonie/client/ca.php?id=".$soc->id; + $head[$h][1] = $langs->trans("CA"); + $h++; + + $head[$h][0] = DOL_URL_ROOT."/telephonie/client/tarifs.php?id=".$soc->id; + $head[$h][1] = $langs->trans("Tarifs"); + $h++; + + dolibarr_fiche_head($head, $hselected, 'Client : '.$soc->nom); + + print ''; + print ''; + + print ""; + + print ''; + print ''; + + print ''; + + print '
'.$langs->trans('Name').''.$soc->nom.''.$langs->trans('Prefix').''.$soc->prefix_comm.'
".$langs->trans('Address')."".nl2br($soc->adresse)."
".$soc->cp." ".$soc->ville." ".$soc->pays."
'.$langs->trans('Phone').''.dolibarr_print_phone($soc->tel).''.$langs->trans('Fax').''.dolibarr_print_phone($soc->fax).'
'.img_edit() ." "; + print $langs->trans('RIB').''; + print $soc->display_rib(); + print '

'; + + print ''; + + //print ''; + //print ''; + + /* Lignes */ + + $sql = "SELECT s.idp as socidp, s.nom, l.ligne, f.nom as fournisseur, l.statut, l.rowid, l.remise, ss.nom as agence"; + $sql .= " FROM ".MAIN_DB_PREFIX."societe as s,".MAIN_DB_PREFIX."telephonie_societe_ligne as l"; + $sql .= " , ".MAIN_DB_PREFIX."societe as ss"; + $sql .= " , ".MAIN_DB_PREFIX."telephonie_fournisseur as f"; + $sql .= " WHERE l.fk_client_comm = s.idp AND l.fk_fournisseur = f.rowid"; + $sql .= " AND l.fk_soc = ss.idp "; + $sql .= " AND s.idp = ".$soc->id; + + if ( $db->query( $sql) ) + { + $num = $db->num_rows(); + if ( $num > 0 ) + { + $i = 0; + + $ligne = new LigneTel($db); + + print ''; + + print "\n"; + + while ($i < $num) + { + $obj = $db->fetch_object($i); + $var=!$var; + + print "\n"; + + print '\n"; + print '\n"; + + print '\n"; + print "\n"; + print "\n"; + $i++; + } + } + $db->free(); + + } + else + { + print $sql; + } + + print "
Numéro'.dolibarr_print_phone($ligne->numero).'Facturée : '.$ligne->facturable.'
Ligne'; + print 'Agence/FilialeStatutRemise LMN'; + print 'Fournisseur
"; + + print ' '; + + print ''; + print img_file(); + + print ' '; + + print ''.dolibarr_print_phone($obj->ligne)."'.$obj->agence."'.$ligne->statuts[$obj->statut]."'.$obj->remise." %".$obj->fournisseur."
"; + } + } +} +else +{ + print "Error"; +} + + +print ''; + +/* ************************************************************************** */ +/* */ +/* Barre d'action */ +/* */ +/* ************************************************************************** */ + +$db->close(); + +llxFooter("Dernière modification $Date$ révision $Revision$"); +?> diff --git a/htdocs/telephonie/ligne/commande/historique.php b/htdocs/telephonie/ligne/commande/historique.php new file mode 100644 index 00000000000..73e0c667b36 --- /dev/null +++ b/htdocs/telephonie/ligne/commande/historique.php @@ -0,0 +1,168 @@ + + * + * 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"); + +$page = $_GET["page"]; +$sortorder = $_GET["sortorder"]; +$sortfield = $_GET["sortfield"]; + +llxHeader('','Telephonie - Ligne - Liste'); +/* + * Sécurité accés client + */ +if ($user->societe_id > 0) +{ + $action = ''; + $socidp = $user->societe_id; +} + +if ($sortorder == "") { + $sortorder="DESC"; +} +if ($sortfield == "") { + $sortfield="ls.tms"; +} + +/* + * Recherche + * + * + */ + +if ($page == -1) { $page = 0 ; } + +$offset = $conf->liste_limit * $page ; +$pageprev = $page - 1; +$pagenext = $page + 1; + +/* + * Mode Liste + * + * + * + */ + +$sql = "SELECT s.idp as socidp, s.nom, l.ligne, f.nom as fournisseur, l.statut, l.rowid, l.remise"; +$sql .= " , ".$db->pdate("ls.tms")." as dc"; +$sql .= " FROM ".MAIN_DB_PREFIX."societe as s"; +$sql .= " ,".MAIN_DB_PREFIX."telephonie_societe_ligne as l"; +$sql .= " , ".MAIN_DB_PREFIX."telephonie_societe_ligne_statut as ls"; +$sql .= " , ".MAIN_DB_PREFIX."telephonie_fournisseur as f"; +$sql .= " WHERE l.fk_soc = s.idp AND l.fk_fournisseur = f.rowid"; +$sql .= " AND ls.fk_ligne = l.rowid"; +$sql .= " AND ls.statut = 2"; + +if ($_GET["search_ligne"]) +{ + $sel =urldecode($_GET["search_ligne"]); + $sel = ereg_replace("\.","",$sel); + $sel = ereg_replace(" ","",$sel); + $sql .= " AND l.ligne LIKE '%".$sel."%'"; +} + +if ($_GET["search_client"]) +{ + $sel =urldecode($_GET["search_client"]); + $sql .= " AND s.nom LIKE '%".$sel."%'"; +} + +$sql .= " ORDER BY $sortfield $sortorder " . $db->plimit($conf->liste_limit+1, $offset); + +$result = $db->query($sql); +if ($result) +{ + $num = $db->num_rows(); + $i = 0; + + $urladd= "&statut=".$_GET["statut"]; + + print_barre_liste("Lignes", $page, "historique.php", $urladd, $sortfield, $sortorder, '', $num); + print"\n\n"; + print ''; + print ''; + + print ''; + + print_liste_field_titre("Ligne","historique.php","l.ligne"); + print_liste_field_titre("Client (Agence/Filiale)","historique.php","s.nom"); + + print ''; + + print ''; + + print "\n"; + + print ''; + print ''; + print ''; + print ''; + + print ''; + + print ''; + print ''; + + print ''; + print ''; + + + $var=True; + + $ligne = new LigneTel($db); + + while ($i < min($num,$conf->liste_limit)) + { + $obj = $db->fetch_object($i); + $var=!$var; + + print ""; + print ''; + print '\n"; + + print ''; + + + print '\n"; + + + print "\n"; + print "\n"; + $i++; + } + print "
 StatutFournisseur
   
'.strftime("%d/%m/%Y %H:%M", $obj->dc).' '; + + print ''; + print img_file(); + print ' '; + + print ''.dolibarr_print_phone($obj->ligne)."'.stripslashes($obj->nom).''.$ligne->statuts[$obj->statut]."".$obj->fournisseur."
"; + $db->free(); +} +else +{ + print $db->error() . ' ' . $sql; +} + +$db->close(); + +llxFooter("Dernière modification $Date$ révision $Revision$"); +?>