* Copyright (C) 2004-2008 Laurent Destailleur * * 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. */ /** \file htdocs/admin/taxes.php \ingroup tax \brief Page de configuration du module tax \version $Id$ */ require('./pre.inc.php'); require_once(DOL_DOCUMENT_ROOT."/lib/admin.lib.php"); $langs->load('admin'); $langs->load('compta'); $langs->load('taxes'); if (!$user->admin) accessforbidden(); llxHeader(); // 0=normal, 1=option vat for services is on debit $tax_mode = defined('TAX_MODE')?TAX_MODE:0; if ($_POST['action'] == 'settaxmode') { $tax_mode = $_POST['tax_mode']; if (! dolibarr_set_const($db, 'TAX_MODE', $tax_mode)) { print $db->error(); } } if ($_POST['action'] == 'update' || $_POST['action'] == 'add') { if (! dolibarr_set_const($db, $_POST['constname'], $_POST['constvalue'], $typeconst[$_POST['consttype']], 0, isset($_POST['constnote']) ? $_POST['constnote'] : '')); { print $db->error(); } } if ($_GET['action'] == 'delete') { if (! dolibarr_del_const($db, $_GET['constname'])); { print $db->error(); } } /* * Affichage page */ $html=new Form($db); $linkback=''.$langs->trans("BackToModuleList").''; print_fiche_titre($langs->trans('TaxSetup'),$linkback,'setup'); print '
'; print ''; // Cas du parametre TAX_MODE print ''; print ''; print ''; print ''; print ''; print "\n"; print ''; print '\n"; print ''; print '\n"; print ''; print "
'.$langs->trans('OptionVatMode').''.$langs->trans('Description').'
'.$langs->trans('OptionVATDefault').''.nl2br($langs->trans('OptionVatDefaultDesc')); print "
'.$langs->trans('OptionVATDebitOption').''.nl2br($langs->trans('OptionVatDebitOptionDesc'))."
\n"; $db->close(); llxFooter('$Date$ - $Revision$'); ?>