forked from Wavyzz/dolibarr
122 lines
3.1 KiB
PHP
122 lines
3.1 KiB
PHP
<?php
|
|
/* Copyright (C) 2001-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2004-2005 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/compta/bank/categ.php
|
|
\ingroup compta
|
|
\brief Page ajout de catégories bancaires
|
|
\version $Revision$
|
|
*/
|
|
|
|
require("./pre.inc.php");
|
|
|
|
if (!$user->rights->banque->configurer)
|
|
accessforbidden();
|
|
|
|
llxHeader();
|
|
|
|
|
|
/*
|
|
* Actions ajout catégorie
|
|
*/
|
|
if ($_POST["action"] == 'add')
|
|
{
|
|
if ($_POST["label"])
|
|
{
|
|
$sql = "INSERT INTO ".MAIN_DB_PREFIX."bank_categ (label) VALUES ('".$_POST["label"]."')";
|
|
$result = $db->query($sql);
|
|
|
|
if (!$result)
|
|
{
|
|
dolibarr_print_error($db);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Action suppression catégorie
|
|
*/
|
|
if ( $_REQUEST['action'] == 'delete' )
|
|
{
|
|
if ( $_REQUEST['categid'] )
|
|
{
|
|
$sql = "DELETE FROM ".MAIN_DB_PREFIX."bank_categ WHERE rowid='".$_REQUEST['categid']."'";
|
|
$result = $db->query($sql);
|
|
|
|
if (!$result)
|
|
{
|
|
dolibarr_print_error($db);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Affichage liste des catégories
|
|
*/
|
|
|
|
print_titre($langs->trans("Categories"));
|
|
print '<form method="post" action="categ.php">';
|
|
print "<input type=\"hidden\" name=\"action\" value=\"add\">";
|
|
print '<table class="noborder" width="100%">';
|
|
print '<tr class="liste_titre">';
|
|
print '<td>'.$langs->trans("Ref").'</td><td colspan="2">'.$langs->trans("Label").'</td>';
|
|
print "</tr>\n";
|
|
|
|
$sql = "SELECT rowid, label FROM ".MAIN_DB_PREFIX."bank_categ ORDER BY label";
|
|
|
|
$result = $db->query($sql);
|
|
if ($result)
|
|
{
|
|
$num = $db->num_rows();
|
|
$i = 0; $total = 0;
|
|
|
|
$var=True;
|
|
while ($i < $num)
|
|
{
|
|
$objp = $db->fetch_object($result);
|
|
$var=!$var;
|
|
print "<tr $bc[$var]>";
|
|
print '<td><a href="'.DOL_URL_ROOT.'/compta/bank/budget.php?bid='.$objp->rowid.'">'.$objp->rowid.'</td>';
|
|
print "<td>$objp->label</td>";
|
|
print '<td style="text-align: center;"><a href="categ.php?categid='.$objp->rowid.'&action=delete"'.img_delete().'</a></td>';
|
|
print "</tr>";
|
|
$i++;
|
|
}
|
|
$db->free();
|
|
}
|
|
|
|
/*
|
|
* Affichage ligne ajout de catégorie
|
|
*/
|
|
$var=!$var;
|
|
print "<tr $bc[$var]>";
|
|
print "<td> </td><td><input name=\"label\" type=\"text\" size=45></td>";
|
|
print '<td align="center"><input type="submit" class="button" value="'.$langs->trans("Add").'"></td></tr>';
|
|
print "</table></form>";
|
|
|
|
|
|
|
|
$db->close();
|
|
|
|
llxFooter('$Date$ - $Revision$');
|
|
?>
|