-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprint_case.php
141 lines (133 loc) · 4.67 KB
/
print_case.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?php
// ReqHeap - a simple requirement management program.
//
// Copyright (C) 2007 Slav Peev , Matthias Gunter
// Programmed by i-nature.com
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// -----------------------------------------------------------------
//
// Page: "print" - converting the requirement tree into pdf file
session_start();
include ("admin/inc/conn.php");//include settings file
include ("admin/inc/func.php");//include functions file
include ("ini/params.php");//include configuration file
//default language
$_SESSION['chlang']=$_lng;
if (!$_SESSION['chlang']) $_SESSION['chlang']="en";
include ("ini/lng/".$_SESSION['chlang'].".php");//include language file
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="description" content="<?=$lng[1][2]?>"/>
<meta name="keywords" content="<?=$lng[1][3]?>"/>
<title><?=$lng[1][1]?></title>
<link rel="stylesheet" href="s.css" type="text/css"/>
</head>
<body>
<a href="index.php"><img src="img/logo.jpg" border="0"></a>
<?
//parse url vaiables
$_vars = explode("|", $c_id);
$c_id=$_vars[0];
$_lng=$_vars[1];
//getting case info
$query="select * from cases where c_id=".$c_id;
$rs = mysql_query($query) or die(mysql_error());
if($row=mysql_fetch_array($rs))
{
$c_name=htmlspecialchars($row['c_name']);
$c_desc=$row['c_desc'];
$c_result=$row['c_result'];
$c_status=htmlspecialchars($row['c_status']);
}
?>
<table border="0" width="100%">
<tr valign="top">
<td>
<table border="0" cellpadding="2" cellspacing="2" class="content" width="100%">
<tr class="gray">
<td class="gray" colspan="2" align="center"><b><?=$lng[31][1]?></b></td>
</tr>
<tr class="blue">
<td class="blue" align="right" width="50%"> <?=$lng[31][2]?> : </td>
<td class="blue"> <?=$c_name?></td>
</tr>
<tr class="blue">
<td class="blue" align="right" width="50%"> <?=$lng[31][3]?> : </td>
<td class="blue"> <?=$c_desc?></td>
</tr>
<tr class="blue">
<td class="blue" align="right" width="50%"> <?=$lng[31][4]?> : </td>
<td class="blue"> <?=$c_result?></td>
</tr>
<tr class="blue">
<td class="blue" align="right"> <?=$lng[31][5]?> : </td>
<td class="blue">
<?
if ($c_status==0) echo $lng[31][6];
elseif ($c_status==1) echo $lng[31][7];
?>
</td>
</tr>
<tr class="blue" valign="top">
<td class="blue" align="right"> <?=$lng[31][14]?> : </td>
<td class="blue">
<?
$query2="select p.* from projects p left outer join project_cases pc on p.p_id=pc.pc_p_id where pc.pc_c_id='".$c_id."' order by p.p_name asc";
$rs2 = mysql_query($query2) or die(mysql_error());
while($row2=mysql_fetch_array($rs2))
{
echo htmlspecialchars($row2['p_name']);
echo "<br>";
}
?>
</td>
</tr>
<tr class="blue" valign="top">
<td class="blue" align="right"> <?=$lng[31][15]?> : </td>
<td class="blue">
<?
$query2="select r.* from releases r left outer join release_cases rc on r.r_id=rc.rc_r_id where rc.rc_c_id='".$c_id."' order by r.r_name asc";
$rs2 = mysql_query($query2) or die(mysql_error());
while($row2=mysql_fetch_array($rs2))
{
echo htmlspecialchars($row2['r_name']);
echo "<br>";
}
?>
</td>
</tr>
<tr class="blue" valign="top">
<td class="blue" align="right"> <?=$lng[31][16]?> : </td>
<td class="blue">
<?
$query2="select * from requirements where CONCAT(',',r_c_id) like ('%,".$c_id.",%') order by r_name asc";
$rs2 = mysql_query($query2) or die(mysql_error());
while($row2=mysql_fetch_array($rs2))
{
echo htmlspecialchars($row2['r_name']);
echo "<br>";
}
?>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>