81 lines
2.0 KiB
PHP
81 lines
2.0 KiB
PHP
<?php
|
|
/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2003 Éric Seigne <erics@rycks.com>
|
|
* Copyright (C) 2004-2006 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/comm/action/index.php
|
|
\ingroup agenda
|
|
\brief Page accueil des rapports des actions
|
|
\version $Id$
|
|
*/
|
|
|
|
require_once("./pre.inc.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/contact.class.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/actioncomm.class.php");
|
|
|
|
$page = $_GET["page"];
|
|
$sortfield=$_GET["sortfield"];
|
|
$sortorder=$_GET["sortorder"];
|
|
if ($page == -1) { $page = 0 ; }
|
|
$limit = $conf->liste_limit;
|
|
$offset = $limit * $page ;
|
|
if (! $sortorder) $sortorder="DESC";
|
|
if (! $sortfield) $sortfield="a.datea";
|
|
|
|
// Sécurité accés client
|
|
if ($user->societe_id > 0)
|
|
{
|
|
$action = '';
|
|
$socid = $user->societe_id;
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
* Actions
|
|
*/
|
|
if ($_GET["action"] == 'builddoc')
|
|
{
|
|
$cat = new CommActionRapport($db, $_GET["month"], $_GET["year"]);
|
|
$result=$cat->generate($_GET["id"]);
|
|
}
|
|
|
|
if ($action=='delete_action')
|
|
{
|
|
$actioncomm = new ActionComm($db);
|
|
$actioncomm->fetch($actionid);
|
|
$result=$actioncomm->delete();
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
* Affichage liste
|
|
*/
|
|
|
|
llxHeader();
|
|
|
|
print $langs->trans("FeatureNotYetAvailable");
|
|
|
|
|
|
$db->close();
|
|
|
|
llxFooter('$Date$ - $Revision$');
|
|
?>
|