mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-21 08:51:24 +01:00
109 lines
2.7 KiB
PHP
109 lines
2.7 KiB
PHP
<?php
|
|
/* Copyright (C) 2001-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
*
|
|
* 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$
|
|
*
|
|
*/
|
|
|
|
|
|
/*!
|
|
\file htdocs/product/fiche.php
|
|
\ingroup product
|
|
\brief Page de la fiche produit
|
|
\version $Revision$
|
|
|
|
*/
|
|
|
|
require("./pre.inc.php");
|
|
|
|
$mesg = '';
|
|
|
|
if ($_POST["action"] == 'add' && $user->rights->compta->ventilation->parametrer)
|
|
{
|
|
$compte = new ComptaCompte($db);
|
|
|
|
$compte->numero = $_POST["numero"];
|
|
$compte->intitule = $_POST["intitule"];
|
|
|
|
$e_compte = $compte;
|
|
|
|
$res = $compte->create($user);
|
|
|
|
if ($res == 0)
|
|
{
|
|
Header("Location: liste.php");
|
|
}
|
|
else
|
|
{
|
|
if ($res == -3)
|
|
{
|
|
$_error = 1;
|
|
$_GET["action"] = "create";
|
|
$_GET["type"] = $_POST["type"];
|
|
}
|
|
if ($res == -4)
|
|
{
|
|
$_error = 2;
|
|
$_GET["action"] = "create";
|
|
$_GET["type"] = $_POST["type"];
|
|
}
|
|
}
|
|
}
|
|
|
|
llxHeader("","Comptes Généraux");
|
|
|
|
/*
|
|
* Création d'un compte
|
|
*
|
|
*/
|
|
if ($_GET["action"] == 'create' && $user->rights->compta->ventilation->parametrer)
|
|
{
|
|
$html = new Form($db);
|
|
$nbligne=0;
|
|
|
|
print_fiche_titre('Comptes Généraux');
|
|
|
|
print '<form action="fiche.php" method="post">';
|
|
print '<input type="hidden" name="action" value="add">';
|
|
print '<input type="hidden" name="type" value="'.$_GET["type"].'">'."\n";
|
|
|
|
print '<table class="border" width="100%">';
|
|
print '<tr>';
|
|
print '<td>Numéro de compte</td><td><input name="numero" size="20" value="'.$compte->numero.'">';
|
|
if ($_error == 1)
|
|
{
|
|
print "Ce numéro de compte existe déjà";
|
|
}
|
|
if ($_error == 2)
|
|
{
|
|
print "Valeur(s) manquante(s)";
|
|
}
|
|
print '</td></tr>';
|
|
print '<tr><td>Intitulé</td><td><input name="intitule" size="40" value="'.$compte->intitule.'"></td></tr>';
|
|
|
|
print '<tr><td> </td><td><input type="submit" value="'.$langs->trans("Create").'"></td></tr>';
|
|
print '</table>';
|
|
print '</form>';
|
|
}
|
|
|
|
$db->close();
|
|
|
|
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
|
?>
|