dolibarr/htdocs/contrat/info.php

69 lines
1.8 KiB
PHP
Raw Normal View History

2005-07-03 15:06:02 +02:00
<?php
2007-11-19 03:35:43 +01:00
/* Copyright (C) 2004-2007 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
* 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/contrat/info.php
\ingroup contrat
\brief Page des informations d'un contrat
2008-02-25 21:03:21 +01:00
\version $Id$
2005-07-03 15:06:02 +02:00
*/
require("./pre.inc.php");
require_once(DOL_DOCUMENT_ROOT.'/lib/contract.lib.php');
require_once(DOL_DOCUMENT_ROOT."/contrat/contrat.class.php");
2005-07-03 15:06:02 +02:00
$langs->load("contracts");
2008-02-25 17:30:43 +01:00
// Security check
$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"]);
$head = contract_prepare_head($contrat);
$hselected = 3;
2005-07-03 15:06:02 +02:00
dolibarr_fiche_head($head, $hselected, $langs->trans("Contract"));
2005-07-03 15:06:02 +02:00
print '<table width="100%"><tr><td>';
dolibarr_print_object_info($contrat);
print '</td></tr></table>';
print '</div>';
2005-07-03 15:06:02 +02:00
// Juste pour <20>viter bug IE qui r<>organise mal div pr<70>c<EFBFBD>dents si celui-ci absent
print '<div class="tabsAction">';
print '</div>';
2005-07-03 15:06:02 +02:00
$db->close();
llxFooter('$Date$ - $Revision$');
?>