fhiiqm/vertrag_report.php
changeset 13 741b35e9ebbe
child 25 482252ff12fd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/fhiiqm/vertrag_report.php	Wed Oct 05 16:46:09 2011 +0200
@@ -0,0 +1,70 @@
+<?php
+
+/**
+ * @author Bettina Schwarzer, Fritz-Haber-Institut
+ * @copyright 08/2011
+ * 
+ * Liste Partner
+ */
+
+    error_reporting(E_ALL ^ E_NOTICE);
+    
+    session_start();
+    if (! isset($_SESSION["userid"]))
+    { 
+        include_once ("inc/func_lib.inc.php");	
+        login("vertrag_report.php");
+        exit;
+    }
+    
+    if (is_null($_SESSION["recht"]) || (!is_null($_SESSION["recht"]) && !in_array("vr",$_SESSION["recht"]) && !in_array("ve",$_SESSION["recht"])))
+    {
+        header("Location: start.php");
+        exit;
+    }    
+    
+?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+
+<head>
+	<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
+   	<link href="css/db.css" rel="STYLESHEET" type="TEXT/CSS" /> 
+   	<link href="css/navio.css" rel="STYLESHEET" type="TEXT/CSS" /> 
+	<meta name="author" content="Bettina Schwarzer,FHI" />
+
+	<title>Reports Vertrag</title>
+</head>
+
+<body>
+<?php
+    echo "&nbsp;";  
+    echo "<div class=\"float-br smaller\" valign='top'>";
+    echo "&nbsp;&nbsp;&nbsp;user: " . $_SESSION["userid"];
+    echo "&nbsp;&nbsp;&nbsp;<a class='sc' href='/fhiiqm/logout.php' title='Session beenden'>logout</a></div>\n";
+?>
+    <div class="float-r"><img src="/fhiiqm/img/document_mark_as_final.png" border="0" alt="Bericht" title="Bericht"/></div>
+    <h3>&nbsp;&nbsp;&nbsp;Berichte zu Vertr&auml;gen</h3>
+    <div align="center">
+    <table width="94%" cellspacing="4" cellpadding="4">
+        <tr>
+            <td class="bigger">
+                <a href="/fhiiqm/report/vertrag_report_kost.php" title="Vertr&auml;ge - Kosten">Vertr&auml;ge und Kosten pro Jahr</a>
+                <br />&nbsp;&nbsp;&nbsp;Auswahl: Produktgruppe, Produkt, Vertragstyp, Kostenjahr
+                <br />&nbsp;&nbsp;&nbsp;Ansicht: Vertragsbezeichnung, -beschreibung, Vertragstyp, Kosten, Kostenjahr
+            </td>
+        </tr>
+        <tr>
+            <td class="bigger">
+                <a href="/fhiiqm/report/vertrag_report_kuend.php" title="Vertr&auml;ge - K&uuml;ndigungstermin">Vertr&auml;ge - K&uuml;ndigungstermin</a>
+                <br />&nbsp;&nbsp;&nbsp;Auswahl: Produktgruppe, Vertragstyp, gew&uuml;nschtes K&uuml;ndigungsdatum
+                <br />&nbsp;&nbsp;&nbsp;Ansicht: Vertragsbezeichnung, -beginn, -ende, Verlängerung, Kündigungsfrist(mon), 
+                    Produktgruppe, Vertragstyp, Partner, K&uuml;ndigung zum
+            </td>
+        </tr>
+    </table>
+    </div>    
+
+
+</body>
+</html>
\ No newline at end of file