mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 17:48:25 +01:00
78 lines
2.1 KiB
PHP
78 lines
2.1 KiB
PHP
<?php
|
||
/* Copyright (C) 2001-2004 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.
|
||
*/
|
||
|
||
/**
|
||
\file htdocs/compta/param/index.php
|
||
\ingroup compta
|
||
\brief Page acceuil zone parametrage comptabilite
|
||
\version $Id$
|
||
*/
|
||
|
||
require("../../main.inc.php");
|
||
|
||
$langs->load("compta");
|
||
$langs->load("bills");
|
||
|
||
/*
|
||
* S<>curit<69> acc<63>s client
|
||
*/
|
||
if ($user->societe_id > 0)
|
||
{
|
||
$action = '';
|
||
$socid = $user->societe_id;
|
||
}
|
||
|
||
llxHeader("",$langs->trans("AccountancySetup"));
|
||
|
||
/*
|
||
* Affichage page
|
||
*
|
||
*/
|
||
print_fiche_titre($langs->trans("AccountancySetup"));
|
||
|
||
print '<table border="0" width="100%" class="notopnoleftnoright">';
|
||
|
||
print '<tr><td valign="top" width="30%" class="notopnoleft">';
|
||
|
||
/*
|
||
* Zone recherche facture
|
||
*/
|
||
print '<form method="get" action="../facture.php">';
|
||
print '<table class="noborder" width="100%">';
|
||
print "<tr class=\"liste_titre\">";
|
||
print '<td colspan="3">'.$langs->trans("SearchABill").'</td></tr>';
|
||
print "<tr $bc[0]><td>";
|
||
print $langs->trans("Ref").':</td><td><input type="text" class="flat" name="search_ref"></td><td><input type="submit" class="button" value="'.$langs->trans("Search").'"></td></tr>';
|
||
print "</table></form><br>";
|
||
|
||
|
||
|
||
print '</td><td valign="top" width="70%" class="notopnoleft">';
|
||
|
||
|
||
|
||
print '</td></tr>';
|
||
|
||
print '</table>';
|
||
|
||
$db->close();
|
||
|
||
llxFooter('$Date$ - $Revision$');
|
||
?>
|