forked from Wavyzz/dolibarr
111 lines
3.8 KiB
PHP
111 lines
3.8 KiB
PHP
<?PHP
|
||
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||
*
|
||
* $Id$
|
||
* $Source$
|
||
*
|
||
* 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.
|
||
*
|
||
*/
|
||
require("../main.inc.php3");
|
||
|
||
function llxHeader($head = "") {
|
||
global $PREFIX;
|
||
|
||
print "<HTML>\n<HEAD>$head\n</HEAD>\n";
|
||
?>
|
||
<BODY BGCOLOR="#c0c0c0" TOPMARGIN="0" BOTTOMMARGIN="0" LEFTMARGIN="0" RIGHTMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0">
|
||
<?PHP
|
||
|
||
print "<TABLE border=\"0\" width=\"100%\">\n";
|
||
print "<TR bgcolor=\"".$GLOBALS["TOPBAR_BGCOLOR"]."\">";
|
||
print "<TD width=\"20%\" bgcolor=\"#e0e0e0\"><B>" . $GLOBALS["MAIN_TITLE"] . "</B></TD>";
|
||
print "<TD width=\"20%\" bgcolor=\"#e0e0e0\" align=\"center\"><A href=\"../tech/\">Technique</A></TD>";
|
||
print "<TD width=\"20%\" bgcolor=\"#e0e0e0\" align=\"center\"><A href=\"../comm/\">Commercial</A></TD>";
|
||
print "<TD width=\"20%\" align=\"center\"><A href=\"../compta/\">Compta</A></TD>";
|
||
print "<TD width=\"20%\" bgcolor=\"#e0e0e0\" align=\"center\"><A href=\"../stats/\">Stats</A></TD>";
|
||
print "</TR></TABLE>\n";
|
||
|
||
print "<TABLE border=\"1\" width=\"100%\">";
|
||
print "<TR><TD valign=\"top\" align=\"right\">";
|
||
|
||
print "<TABLE border=\"1\" cellspacing=\"0\" width=\"100%\" cellpadding=\"3\">";
|
||
print "<TR><TD valign=\"top\" align=\"right\">";
|
||
|
||
print "<center><b>" . $GLOBALS["dbname"] . " - " . $GLOBALS["REMOTE_USER"] ."</B></center>";
|
||
print "<A href=\"/\">Accueil</A>";
|
||
|
||
print "</td></tr>";
|
||
print "<TR><TD valign=\"top\" align=\"right\">";
|
||
|
||
print "<CENTER><A href=\"/compta/index.php3\">Factures</A></CENTER><p>\n";
|
||
print "<A href=\"paiement.php3\">Paiements</A><BR>\n";
|
||
print "<A href=\"fac.php3\">admin fac</A><BR>\n";
|
||
|
||
print "</td></tr>";
|
||
print "<TR><TD valign=\"top\" align=\"right\">";
|
||
|
||
print "<CENTER>Chiffres d'affaires</CENTER><br>\n";
|
||
print "<A href=\"ca.php3\">R<>alis<69></A><BR>\n";
|
||
print "<A href=\"prev.php3\">Pr<50>visionnel</A><BR>\n";
|
||
print "<A href=\"comp.php3\">Comparatif</A>\n";
|
||
|
||
print "</td></tr>";
|
||
|
||
print "<TR><TD valign=\"top\" align=\"right\">";
|
||
print "<CENTER>Analyses</CENTER><br>\n";
|
||
print "<A href=\"casoc.php3\">CA par societe</A><BR>\n";
|
||
print "<A href=\"pointmort.php3\">Point mort</A><BR>\n";
|
||
print "<A href=\"tva.php3\">TVA</A><BR>\n";
|
||
print "</td></tr>";
|
||
|
||
print "<TR><TD valign=\"top\" align=\"center\">";
|
||
print "<A href=\"/comm/propal.php3\">Propal</A><BR>\n";
|
||
print "</td></tr>";
|
||
|
||
print "<TR><TD valign=\"top\" align=\"center\">";
|
||
print "<A href=\"bank/index.php3\">Bank</A><BR>\n";
|
||
print "</td></tr>";
|
||
|
||
|
||
print "<TR><TD valign=\"top\" align=\"center\">";
|
||
print "<A href=\"/comm/index.php3\">Societes</A>\n";
|
||
print "<form action=\"/comm/index.php3\">";
|
||
print "<input type=\"text\" name=\"socname\" size=\"8\">";
|
||
print "<input type=\"submit\" value=\"nom\">";
|
||
print "</form>";
|
||
|
||
print "<form action=\"/comm/index.php3\">";
|
||
print "<input type=\"text\" name=\"socid\" size=\"5\">";
|
||
print "<input type=\"submit\" value=\"id\">";
|
||
print "</form>";
|
||
print "</td></tr>";
|
||
|
||
print "</table>";
|
||
|
||
|
||
print "</TD>\n<TD valign=\"top\" width=\"85%\">\n";
|
||
}
|
||
/*
|
||
*
|
||
*/
|
||
function llxFooter($foot='') {
|
||
print "</TD></TR></TABLE>\n";
|
||
print "$foot</BODY></HTML>";
|
||
}
|
||
// $Id$
|
||
// $Source$
|
||
?>
|