diff --git a/htdocs/telephonie/distributeurs/fiche.php b/htdocs/telephonie/distributeurs/fiche.php new file mode 100644 index 00000000000..aab51fa0fc3 --- /dev/null +++ b/htdocs/telephonie/distributeurs/fiche.php @@ -0,0 +1,106 @@ + + * + * 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"); + +if (!$user->rights->telephonie->lire) accessforbidden(); + +$distri = new DistributeurTelephonie($db); + +if($_POST["action"] == 'add') +{ + $distri->nom = $_POST["nom"]; + $distri->avance = $_POST["avance"]; + $distri->duree = $_POST["duree"]; + $distri->prelev = $_POST["prelev"]; + $distri->autre = $_POST["autre"]; + + if ($distri->create() <> 0) + { + $_GET["action"] = "create"; + } + else + { + Header("Location: index.php"); + } + +} + + +llxHeader('','Telephonie - Statistiques - Distributeurs'); + +/* + * + * + * + */ + +$h = 0; + +$head[$h][0] = DOL_URL_ROOT.'/telephonie/distributeurs/fiche.php?action=create'; +$head[$h][1] = "Nouveau distributeur"; +$hselected = $h; +$h++; + +dolibarr_fiche_head($head, $hselected, "Distributeurs"); + + + +if ($_GET["action"] == 'create') +{ + print '
"; + +} + +$db->close(); + +llxFooter("Dernière modification $Date$ révision $Revision$"); +?>