* * 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"); $message_erreur = ''; if ($_POST["action"] == 'addtarif') { $error = 0; $saisieok = 1; if (strlen(trim($_POST["temporel"])) == 0 OR strlen(trim($_POST["fixe"])) == 0) { $saisieok = 0; } else { $temporel = ereg_replace(",",".",trim($_POST["temporel"])); $fixe = ereg_replace(",",".",trim($_POST["fixe"])); } if(! is_numeric($temporel)) { $saisieok = 0; } if(! is_numeric($fixe)) { $saisieok = 0; } if ($temporel < 0 OR $fixe < 0) { $saisieok = 0; } if ($saisieok) { $db->begin(); $sql = "REPLACE INTO ".MAIN_DB_PREFIX."telephonie_tarif_client"; $sql .= " (fk_tarif, fk_client, temporel, fixe, fk_user) VALUES "; $sql .= " (".$_POST["tarifid"].",".$_GET["id"].",'".$temporel."','".$fixe."',".$user->id.")"; if (! $db->query($sql) ) { $error++; } $sql = "INSERT INTO ".MAIN_DB_PREFIX."telephonie_tarif_client_log"; $sql .= " (fk_tarif, fk_client, temporel, fixe, fk_user, datec) VALUES "; $sql .= " (".$_POST["tarifid"].",".$_GET["id"].",'".$temporel."','".$fixe."',".$user->id.",now())"; if (! $db->query($sql) ) { $error++; } if ( $error == 0 ) { $db->commit(); Header("Location: tarifs.php?id=".$_GET["id"]); } else { $db->rollback(); print $db->error(); } } else { $message_erreur = " Saisie invalide"; } } /* if ($_GET["special"] == 'done') { $sql = "SELECT DISTINCT(fk_tarif), fixe, temporel FROM llx_telephonie_prefix as p, llx_telephonie_tarif_vente as v where p.prefix=v.prefix and fixe= 0.14; "; if ( $db->query( $sql) ) { $tt = array(); $num = $db->num_rows(); if ( $num > 0 ) { $i = 0; while ($i < $num) { $row = $db->fetch_row(); $tt[$row[0]] = $row[2]; $i++; } } $db->free(); foreach($tt as $key=>$value) { $sql = "REPLACE INTO ".MAIN_DB_PREFIX."telephonie_tarif_client"; $sql .= " (fk_tarif, fk_client, temporel, fixe, fk_user) VALUES "; $sql .= " (".$key.",".$_GET["id"].",'".$value."','0.07',".$user->id.")"; } } } */ if ($_GET["action"] == 'delete') { if (strlen(trim($_GET["tid"])) > 0) { $sql = "DELETE FROM ".MAIN_DB_PREFIX."telephonie_tarif_client"; $sql .= " WHERE rowid = ".$_GET["tid"]; if ( $db->query($sql) ) { Header("Location: tarifs.php?id=".$_GET["id"]); } else { print $db->error(); } } } llxHeader("","Téléphonie - Fiche Tarif client"); if ($cancel == $langs->trans("Cancel")) { $action = ''; } /* * * */ 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"); $h++; $head[$h][0] = DOL_URL_ROOT."/telephonie/client/lignes.php?id=".$soc->id; $head[$h][1] = $langs->trans("Lignes"); $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"); $hselected = $h; $h++; dolibarr_fiche_head($head, $hselected, 'Client : '.$soc->nom); print ''; print ''; print ""; print ''; print ''; print ''; print '
'.$langs->trans('Name').''.$soc->nom.''.$langs->trans('Code client').''.$soc->code_client.'
".$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 '
'; print ''; print "\n"; if($message_erreur) { print ''; } print ''; print ''; print ''; print ''; print ''; /* Tarifs */ $sql = "SELECT t.rowid , t.libelle, tc.temporel, tc.fixe, u.code, tc.rowid, u.code"; $sql .= " FROM ".MAIN_DB_PREFIX."telephonie_tarif as t"; $sql .= "," . MAIN_DB_PREFIX."telephonie_tarif_client as tc"; $sql .= "," . MAIN_DB_PREFIX."societe as s"; $sql .= "," . MAIN_DB_PREFIX."user as u"; $sql .= " WHERE t.rowid = tc.fk_tarif AND tc.fk_client = s.idp"; $sql .= " AND u.rowid = tc.fk_user"; $sql .= " AND s.idp = ".$soc->id; $sql .= " ORDER BY t.libelle ASC"; if ( $db->query( $sql) ) { $num = $db->num_rows(); if ( $num > 0 ) { $i = 0; $ligne = new LigneTel($db); while ($i < $num) { $obj = $db->fetch_object($i); $var=!$var; print "\n"; print '\n"; print '\n"; print '\n"; print '\n"; print ''; $i++; } } $db->free(); } else { print $sql; } print "
Tarif (coût en euros par minutes)'; print 'TemporelFixe'; print '  
'.$message_erreur.'
'; print ' 
"; print $obj->libelle."'.$obj->temporel."'.$obj->fixe."'; print img_delete()."'.$obj->code."
"; } } } else { print "Error"; } print ''; /* ************************************************************************** */ /* */ /* Barre d'action */ /* */ /* ************************************************************************** */ $db->close(); llxFooter("Dernière modification $Date$ révision $Revision$"); ?>