dolibarr/htdocs/compta/param/index.php

84 lines
2.2 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-10-19 07:12:45 +02:00
print_fiche_titre($langs->trans("AccountancySetup"));
2004-12-01 15:54:23 +01:00
2005-10-19 07:12:45 +02:00
print '<table border="0" width="100%" class="notopnoleftnoright">';
2004-12-01 15:54:23 +01:00
2005-10-19 07:12:45 +02:00
print '<tr><td valign="top" width="30%" class="notopnoleft">';
2004-12-01 15:54:23 +01:00
/*
* Zone recherche facture
*/
print '<form method="post" action="facture.php">';
print '<table class="noborder" width="100%">';
print "<tr class=\"liste_titre\">";
2005-10-19 07:12:45 +02:00
print '<td colspan="3">'.$langs->trans("SearchABill").'</td></tr>';
2004-12-01 15:54:23 +01:00
print "<tr $bc[0]><td>";
2005-10-19 07:12:45 +02:00
print $langs->trans("Ref").':</td><td><input type="text" class="flat" name="sf_ref"></td><td><input type="submit" class="button" value="'.$langs->trans("Search").'"></td></tr>';
2004-12-01 15:54:23 +01:00
print "</table></form><br>";
2005-10-19 07:12:45 +02:00
print '</td><td valign="top" width="70%" class="notopnoleft">';
2004-12-01 15:54:23 +01:00
print '</td></tr>';
print '</table>';
$db->close();
llxFooter('$Date$ - $Revision$');
2004-12-01 15:54:23 +01:00
?>