2005-07-03 15:06:02 +02:00
|
|
|
<?php
|
2009-02-19 20:06:12 +01:00
|
|
|
/* Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
|
2005-07-03 15:06:02 +02: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
|
2013-01-16 15:36:08 +01:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2005-07-03 15:06:02 +02:00
|
|
|
* (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
|
2011-08-01 01:45:11 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-07-03 15:06:02 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2011-08-27 17:14:31 +02:00
|
|
|
* \file htdocs/contrat/info.php
|
|
|
|
|
* \ingroup contrat
|
|
|
|
|
* \brief Page des informations d'un contrat
|
|
|
|
|
*/
|
2005-07-03 15:06:02 +02:00
|
|
|
|
2010-03-27 15:50:05 +01:00
|
|
|
require ("../main.inc.php");
|
2012-08-22 23:11:24 +02:00
|
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
|
|
|
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/contract.lib.php';
|
|
|
|
|
require_once DOL_DOCUMENT_ROOT.'/contrat/class/contrat.class.php';
|
2005-07-03 15:06:02 +02:00
|
|
|
|
|
|
|
|
$langs->load("contracts");
|
|
|
|
|
|
2008-02-25 17:30:43 +01:00
|
|
|
// Security check
|
2006-03-13 14:29:27 +01:00
|
|
|
$contratid = isset($_GET["id"])?$_GET["id"]:'';
|
2008-02-25 21:03:21 +01:00
|
|
|
if ($user->societe_id) $socid=$user->societe_id;
|
2008-03-01 02:26:41 +01:00
|
|
|
$result = restrictedArea($user, 'contrat',$contratid,'');
|
2005-07-03 15:06:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2008-02-25 17:30:43 +01:00
|
|
|
* View
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
llxHeader();
|
2005-07-03 15:06:02 +02:00
|
|
|
|
|
|
|
|
$contrat = new Contrat($db);
|
|
|
|
|
$contrat->fetch($_GET["id"]);
|
|
|
|
|
$contrat->info($_GET["id"]);
|
|
|
|
|
|
2006-02-17 00:25:41 +01:00
|
|
|
$head = contract_prepare_head($contrat);
|
|
|
|
|
|
2009-08-05 20:22:40 +02:00
|
|
|
dol_fiche_head($head, 'info', $langs->trans("Contract"), 0, 'contract');
|
2005-07-03 15:06:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
print '<table width="100%"><tr><td>';
|
2009-01-07 11:57:36 +01:00
|
|
|
dol_print_object_info($contrat);
|
2005-07-03 15:06:02 +02:00
|
|
|
print '</td></tr></table>';
|
|
|
|
|
|
2005-07-11 02:49:16 +02:00
|
|
|
print '</div>';
|
2005-07-03 15:06:02 +02:00
|
|
|
|
|
|
|
|
$db->close();
|
|
|
|
|
|
2011-08-27 16:24:16 +02:00
|
|
|
llxFooter();
|
2005-07-03 15:06:02 +02:00
|
|
|
?>
|