forked from Wavyzz/dolibarr
57 lines
1.6 KiB
PHP
57 lines
1.6 KiB
PHP
<?php
|
||
/* Copyright (C) 2004-2008 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/resultat/bilan.php
|
||
* \ingroup compta
|
||
* \brief Fichier page bilan compta
|
||
* \version $Id$
|
||
*/
|
||
|
||
require("./pre.inc.php");
|
||
require_once(DOL_DOCUMENT_ROOT."/compta/tva/tva.class.php");
|
||
require_once(DOL_DOCUMENT_ROOT."/chargesociales.class.php");
|
||
|
||
if (!$user->rights->compta->resultat->lire)
|
||
accessforbidden();
|
||
|
||
|
||
/*
|
||
* Views
|
||
*/
|
||
|
||
llxHeader();
|
||
|
||
$year=$_GET["year"];
|
||
$month=$_GET["month"];
|
||
if (! $year) { $year = strftime("%Y", time()); }
|
||
|
||
|
||
/* Le compte de r<>sultat est un document officiel requis par l'administration selon le status ou activit<69> */
|
||
|
||
print_titre("Bilan".($year?" ann<6E>e $year":""));
|
||
|
||
print '<br>';
|
||
|
||
print "Cet <20>tat n'est pas disponible.";
|
||
|
||
|
||
$db->close();
|
||
|
||
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
||
?>
|