equal
deleted
inserted
replaced
1 <?php |
1 <?php |
2 |
2 |
3 /** |
3 /** |
4 * @author Bettina Schwarzer, Fritz-Haber-Institut |
4 * @author Bettina Schwarzer, Fritz-Haber-Institut |
5 * @copyright 04/2012 |
5 * @copyright 04/2012 |
|
6 * |
|
7 * Reportauswahl Info (GVP) |
|
8 * |
6 */ |
9 */ |
7 |
10 |
8 |
11 |
9 |
12 |
10 error_reporting(E_ALL ^ E_NOTICE); |
13 error_reporting(E_ALL ^ E_NOTICE); |
11 |
14 |
12 session_start(); |
15 session_start(); |
13 if (! isset($_SESSION["userid"])) |
16 if (! isset($_SESSION["userid"])) |
14 { |
17 { |
15 include_once ("inc/func_lib.inc.php"); |
18 include_once ("inc/func_lib.inc.php"); |
16 login("vertrag_report.php"); |
19 login("info_report.php"); |
17 exit; |
20 exit; |
18 } |
21 } |
19 |
22 |
20 if (is_null($_SESSION["recht"]) || (!is_null($_SESSION["recht"]) && !in_array("ir",$_SESSION["recht"]) && !in_array("ie",$_SESSION["recht"]))) |
23 if (is_null($_SESSION["recht"]) || (!is_null($_SESSION["recht"]) && !in_array("ir",$_SESSION["recht"]) && !in_array("ie",$_SESSION["recht"]))) |
21 { |
24 { |
49 <table width="94%" cellspacing="4" cellpadding="4"> |
52 <table width="94%" cellspacing="4" cellpadding="4"> |
50 <tr> |
53 <tr> |
51 <td class="bigger"> |
54 <td class="bigger"> |
52 <a href="/fhiiqm/report/info_report_gvp.php" title="Geschäftsverteilungsplan 1">Geschäftsverteilungsplan nach Produkten</a> |
55 <a href="/fhiiqm/report/info_report_gvp.php" title="Geschäftsverteilungsplan 1">Geschäftsverteilungsplan nach Produkten</a> |
53 <br /> Auswahl: Produktbereich, Produktgruppe |
56 <br /> Auswahl: Produktbereich, Produktgruppe |
54 <br /> Ansicht: Kennzeichen, Aufgabe(Produkt), Teilgebiet(Info), Verantwortliche(r) |
57 <br /> Ansicht: Kennzeichen, Aufgabe(Produkt), Teilgebiet(Kurz-Info), Verantwortliche(r) |
55 </td> |
58 </td> |
56 </tr> |
59 </tr> |
57 <tr> |
60 <tr> |
58 <td class="bigger"> |
61 <td class="bigger"> |
59 <a href="/fhiiqm/report/info_report_gvp.php?r=k" title="Geschäftsverteilungsplan 2">Geschäftsverteilungsplan nach Kennzahlen</a> |
62 <a href="/fhiiqm/report/info_report_gvp.php?r=k" title="Geschäftsverteilungsplan 2">Geschäftsverteilungsplan nach Kennzeichen</a> |
60 <br /> Auswahl: Kennzahl |
63 <br /> Auswahl: Kennzeichen |
61 <br /> Ansicht: Kennzeichen, Produktgruppe, Aufgabe(Produkt), Teilgebiet(Info), Verantwortliche(r) |
64 <br /> Ansicht: Kennzeichen, Aufgabe(Produkt), Teilgebiet(Kurz-Info), Verantwortliche(r) |
62 </td> |
65 </td> |
63 </tr> |
66 </tr> |
64 </table> |
67 </table> |
65 </div> |
68 </div> |
66 |
69 |