dolibarr/htdocs/compta/param/index.php

85 lines
2.1 KiB
PHP
Raw Normal View History

2004-12-01 15:54:23 +01:00
<?php
/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2005-07-10 21:54:48 +02:00
* Copyright (C) 2004-2005 Laurent Destailleur <eldy@users.sourceforge.net>
2004-12-01 15:54:23 +01:00
*
* 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$
*
*/
2005-07-10 20:37:47 +02:00
/**
2005-07-10 21:54:48 +02:00
\file htdocs/compta/param/index.php
2004-12-01 15:54:23 +01:00
\ingroup compta
2005-07-10 21:54:48 +02:00
\brief Page acceuil zone param<EFBFBD>trage comptabilit<EFBFBD>
2004-12-01 15:54:23 +01:00
\version $Revision$
*/
require("./pre.inc.php");
$user->getrights('banque');
$langs->load("compta");
2005-07-10 20:37:47 +02:00
$langs->load("admin");
$langs->load("bills");
2004-12-01 15:54:23 +01:00
/*
* S<EFBFBD>curit<EFBFBD> acc<EFBFBD>s client
*/
if ($user->societe_id > 0)
{
$action = '';
$socidp = $user->societe_id;
}
2005-07-10 20:37:47 +02:00
llxHeader("",$langs->trans("AccountancySetup"));
2004-12-01 15:54:23 +01:00
/*
* Affichage page
*
*/
2005-07-10 20:37:47 +02:00
print_titre($langs->trans("AccountancySetup"));
2004-12-01 15:54:23 +01:00
print '<table border="0" width="100%">';
print '<tr><td valign="top" width="30%">';
/*
* Zone recherche facture
*/
print '<form method="post" action="facture.php">';
print '<table class="noborder" width="100%">';
print "<tr class=\"liste_titre\">";
print '<td colspan="2">'.$langs->trans("SearchABill").'</td></tr>';
2004-12-01 15:54:23 +01:00
print "<tr $bc[0]><td>";
print $langs->trans("Ref").' : <input type="text" name="sf_ref">&nbsp;<input type="submit" value="'.$langs->trans("Search").'" class="button"></td></tr>';
2004-12-01 15:54:23 +01:00
print "</table></form><br>";
print '</td><td valign="top" width="70%">';
print '</td></tr>';
print '</table>';
$db->close();
llxFooter("<em>Derni&egrave;re modification $Date$ r&eacute;vision $Revision$</em>");
?>