| Line 1... |
Line 1... |
| 1 |
<%@LANGUAGE="VBSCRIPT"%>
|
1 |
<%@LANGUAGE="VBSCRIPT"%>
|
| 2 |
<%
|
2 |
<%
|
| 3 |
Option explicit
|
3 |
Option explicit
|
| 4 |
Response.Expires = 0 ' always load the page, dont store
|
4 |
Response.Expires = 0 ' always load the page, dont store
|
| 5 |
%>
|
5 |
%>
|
| 6 |
<%
|
6 |
<%
|
| 7 |
'=====================================================
|
7 |
'=====================================================
|
| 8 |
' ISSUE DETAILS
|
8 |
' ISSUE DETAILS
|
| 9 |
'=====================================================
|
9 |
'=====================================================
|
| 10 |
%>
|
10 |
%>
|
| 11 |
<!--#include file="common/conf.asp"-->
|
11 |
<!--#include file="common/conf.asp"-->
|
| 12 |
<!--#include file="common/globals.asp"-->
|
12 |
<!--#include file="common/globals.asp"-->
|
| 13 |
<!--#include file="common/formating.asp"-->
|
13 |
<!--#include file="common/formating.asp"-->
|
| Line 24... |
Line 24... |
| 24 |
'------------ Variable Definition -------------
|
24 |
'------------ Variable Definition -------------
|
| 25 |
Dim rsCQ
|
25 |
Dim rsCQ
|
| 26 |
Dim ddWidth
|
26 |
Dim ddWidth
|
| 27 |
Dim parIss_db
|
27 |
Dim parIss_db
|
| 28 |
Dim parIss_id
|
28 |
Dim parIss_id
|
| - |
|
29 |
Dim childDevis()
|
| - |
|
30 |
Dim numChildDevis
|
| - |
|
31 |
Dim i
|
| 29 |
'------------ Constants Declaration -----------
|
32 |
'------------ Constants Declaration -----------
|
| 30 |
'------------ Variable Init -------------------
|
33 |
'------------ Variable Init -------------------
|
| 31 |
Set pkgInfoHash = CreateObject("Scripting.Dictionary")
|
34 |
Set pkgInfoHash = CreateObject("Scripting.Dictionary")
|
| 32 |
Set rsCQ = Server.CreateObject("ADODB.Recordset")
|
35 |
Set rsCQ = Server.CreateObject("ADODB.Recordset")
|
| 33 |
Call Get_Iss_Parameters ( parIss_db, parIss_id )
|
36 |
Call Get_Iss_Parameters ( parIss_db, parIss_id )
|
| 34 |
ddWidth = 20
|
37 |
ddWidth = 20
|
| - |
|
38 |
|
| - |
|
39 |
numChildDevis = 0
|
| 35 |
'----------------------------------------------
|
40 |
'----------------------------------------------
|
| 36 |
%>
|
41 |
%>
|
| 37 |
<%
|
42 |
<%
|
| 38 |
Sub Get_Issue_Details ( NNiss_db, NNiss_id, OOrsCQ )
|
43 |
Sub Get_Issue_Details ( NNiss_db, NNiss_id, OOrsCQ )
|
| 39 |
Dim SQLstr
|
44 |
Dim SQLstr
|
| - |
|
45 |
Dim objRegEx
|
| - |
|
46 |
Dim objMatches
|
| - |
|
47 |
Dim match
|
| - |
|
48 |
Dim rsCQ2
|
| - |
|
49 |
|
| 40 |
If Cint(NNiss_db) = enumCLEARQUEST_DEVI_ID Then
|
50 |
If Cint(NNiss_db) = enumCLEARQUEST_DEVI_ID Then
|
| 41 |
SQLstr = _
|
51 |
SQLstr = _
|
| 42 |
" SELECT si.dbid, si.new_num AS iss_num, si.headline AS summary, sdef.name AS status, si.priority AS priority, si.issue_type, si.release_part1, "&_
|
52 |
" SELECT si.dbid, si.new_num AS iss_num, si.headline AS summary, sdef.name AS status, si.priority AS priority, si.issue_type, si.release_part1, "&_
|
| 43 |
" si.release_part2, si.release_part3, si.project, si.product AS product, si.package_ref AS package, sb.fullname AS submitter, si.submit_date, ow.fullname AS owner, "&_
|
53 |
" si.release_part2, si.release_part3, si.project, si.product AS product, si.package_ref AS package, sb.fullname AS submitter, si.submit_date, ow.fullname AS owner, "&_
|
| 44 |
" ap.fullname AS approver, si.description"&_
|
54 |
" ap.fullname AS approver, si.description, si.dependant_devis"&_
|
| 45 |
" FROM devi_prod.admin.software_issue si INNER JOIN"&_
|
55 |
" FROM cq_devi.admin.software_issue si INNER JOIN"&_
|
| 46 |
" devi_prod.admin.statedef sdef ON si.state = sdef.id INNER JOIN"&_
|
56 |
" cq_devi.admin.statedef sdef ON si.state = sdef.id INNER JOIN"&_
|
| 47 |
" devi_prod.admin.users sb ON si.submitter = sb.dbid INNER JOIN"&_
|
57 |
" cq_devi.admin.users sb ON si.submitter = sb.dbid INNER JOIN"&_
|
| 48 |
" devi_prod.admin.users ow ON si.owner = ow.dbid INNER JOIN"&_
|
58 |
" cq_devi.admin.users ow ON si.owner = ow.dbid INNER JOIN"&_
|
| 49 |
" devi_prod.admin.users ap ON si.approver = ap.dbid"&_
|
59 |
" cq_devi.admin.users ap ON si.approver = ap.dbid"&_
|
| 50 |
" WHERE si.dbid = "& NNiss_id
|
60 |
" WHERE si.dbid = "& NNiss_id
|
| 51 |
|
61 |
|
| 52 |
ElseIf Cint(NNiss_db) = enumCLEARQUEST_VT5DM_ID Then
|
62 |
ElseIf Cint(NNiss_db) = enumCLEARQUEST_VT5DM_ID Then
|
| 53 |
SQLstr = _
|
63 |
SQLstr = _
|
| 54 |
" SELECT si.dbid, si.new_num AS iss_num, si.headline AS summary, sdef.name AS status, si.priority AS priority, si.issue_type, si.release_part1, "&_
|
64 |
" SELECT si.dbid, si.new_num AS iss_num, si.headline AS summary, sdef.name AS status, si.priority AS priority, si.issue_type, si.release_part1, "&_
|
| 55 |
" si.release_part2, si.release_part3, si.project, si.product AS product, si.package_ref AS package, sb.fullname AS submitter, si.submit_date, ow.fullname AS owner, "&_
|
65 |
" si.release_part2, si.release_part3, si.project, si.product AS product, si.package_ref AS package, sb.fullname AS submitter, si.submit_date, ow.fullname AS owner, "&_
|
| 56 |
" ap.fullname AS approver, si.description"&_
|
66 |
" ap.fullname AS approver, si.description"&_
|
| 57 |
" FROM VT5DM.admin.software_issue si INNER JOIN"&_
|
67 |
" FROM CQ_VT5DM.admin.software_issue si INNER JOIN"&_
|
| 58 |
" VT5DM.admin.statedef sdef ON si.state = sdef.id INNER JOIN"&_
|
68 |
" CQ_VT5DM.admin.statedef sdef ON si.state = sdef.id INNER JOIN"&_
|
| 59 |
" VT5DM.admin.users sb ON si.submitter = sb.dbid INNER JOIN"&_
|
69 |
" CQ_VT5DM.admin.users sb ON si.submitter = sb.dbid INNER JOIN"&_
|
| 60 |
" VT5DM.admin.users ow ON si.owner = ow.dbid INNER JOIN"&_
|
70 |
" CQ_VT5DM.admin.users ow ON si.owner = ow.dbid INNER JOIN"&_
|
| 61 |
" VT5DM.admin.users ap ON si.approver = ap.dbid"&_
|
71 |
" CQ_VT5DM.admin.users ap ON si.approver = ap.dbid"&_
|
| 62 |
" WHERE si.dbid = "& NNiss_id
|
72 |
" WHERE si.dbid = "& NNiss_id
|
| 63 |
|
73 |
|
| 64 |
End If
|
74 |
End If
|
| 65 |
|
75 |
|
| 66 |
OOrsCQ.ActiveConnection = CQ_conn
|
76 |
OOrsCQ.ActiveConnection = CQ_conn
|
| 67 |
OOrsCQ.Source = SQLstr
|
77 |
OOrsCQ.Source = SQLstr
|
| 68 |
OOrsCQ.CursorType = 0
|
78 |
OOrsCQ.CursorType = 0
|
| 69 |
OOrsCQ.CursorLocation = 2
|
79 |
OOrsCQ.CursorLocation = 2
|
| 70 |
OOrsCQ.LockType = 3
|
80 |
OOrsCQ.LockType = 3
|
| 71 |
OOrsCQ.Open()
|
81 |
OOrsCQ.Open()
|
| - |
|
82 |
|
| - |
|
83 |
' Experimental code to obtain parent and child DEVIs for the currently displaying DEVI
|
| - |
|
84 |
If Cint(NNiss_db) = enumCLEARQUEST_DEVI_ID Then
|
| - |
|
85 |
Set objRegEx = New RegExp
|
| - |
|
86 |
objRegEx.IgnoreCase = True
|
| - |
|
87 |
objRegEx.Pattern = "[1-9][0-9]+"
|
| - |
|
88 |
|
| - |
|
89 |
If NOT IsNull(OOrsCQ("iss_num") ) Then
|
| - |
|
90 |
set objMatches = objRegEx.Execute(OOrsCQ("iss_num") )
|
| - |
|
91 |
Set rsCQ2 = Server.CreateObject("ADODB.Recordset")
|
| - |
|
92 |
For each match in objMatches
|
| - |
|
93 |
rsCQ2.ActiveConnection = CQ_conn
|
| - |
|
94 |
rsCQ2.Source = " SELECT si.new_num AS iss_num"&_
|
| - |
|
95 |
" FROM cq_devi.admin.software_issue si"&_
|
| - |
|
96 |
" WHERE si.dependant_devis like '%" & match & "%'"
|
| - |
|
97 |
rsCQ2.CursorType = 0
|
| - |
|
98 |
rsCQ2.CursorLocation = 2
|
| - |
|
99 |
rsCQ2.LockType = 3
|
| - |
|
100 |
rsCQ2.Open()
|
| - |
|
101 |
While (NOT rsCQ2.BOF) AND (NOT rsCQ2.EOF)
|
| - |
|
102 |
numChildDevis = numChildDevis + 1
|
| - |
|
103 |
ReDim Preserve childDevis(numChildDevis)
|
| - |
|
104 |
childDevis(numChildDevis-1) = rsCQ2("iss_num")
|
| - |
|
105 |
rsCQ2.MoveNext
|
| - |
|
106 |
Wend
|
| - |
|
107 |
rsCQ2.Close()
|
| - |
|
108 |
Next
|
| - |
|
109 |
set objMatches = Nothing
|
| - |
|
110 |
Set rsCQ2 = Nothing
|
| - |
|
111 |
End If
|
| - |
|
112 |
Set objRegEx = Nothing
|
| - |
|
113 |
End If
|
| - |
|
114 |
|
| - |
|
115 |
|
| 72 |
End Sub
|
116 |
End Sub
|
| 73 |
%>
|
117 |
%>
|
| 74 |
<%If parIss_db <> enumCLEARQUEST_DEVI_ID AND parIss_db <> enumCLEARQUEST_VT5DM_ID Then Call RaiseMsg ( enum_WMSG_ERROR, "This option is not available for this issue's database!" )%>
|
118 |
<%If parIss_db <> enumCLEARQUEST_DEVI_ID AND parIss_db <> enumCLEARQUEST_VT5DM_ID Then Call RaiseMsg ( enum_WMSG_ERROR, "This option is not available for this issue's database!" )%>
|
| 75 |
<%Call Get_Issue_Details ( parIss_db, parIss_id, rsCQ )%>
|
119 |
<%Call Get_Issue_Details ( parIss_db, parIss_id, rsCQ )%>
|
| 76 |
<!--#include file="_menu_def.asp"-->
|
120 |
<!--#include file="_menu_def.asp"-->
|
| 77 |
<html>
|
121 |
<html>
|
| Line 83... |
Line 127... |
| 83 |
<link rel="stylesheet" href="images/navigation.css" type="text/css">
|
127 |
<link rel="stylesheet" href="images/navigation.css" type="text/css">
|
| 84 |
<script language="JavaScript" src="images/common.js"></script>
|
128 |
<script language="JavaScript" src="images/common.js"></script>
|
| 85 |
<script language="JavaScript">
|
129 |
<script language="JavaScript">
|
| 86 |
<!--
|
130 |
<!--
|
| 87 |
function height()
|
131 |
function height()
|
| 88 |
{
|
132 |
{
|
| 89 |
if( typeof( window.innerWidth ) == 'number' )
|
133 |
if( typeof( window.innerWidth ) == 'number' )
|
| 90 |
{
|
134 |
{
|
| 91 |
h = window.innerHeight;
|
135 |
h = window.innerHeight;
|
| 92 |
}
|
136 |
}
|
| 93 |
else if(document.documentElement&&(document.documentElement.clientHeight ))
|
137 |
else if(document.documentElement&&(document.documentElement.clientHeight ))
|
| 94 |
{
|
138 |
{
|
| 95 |
h = document.documentElement.clientHeight;
|
139 |
h = document.documentElement.clientHeight;
|
| 96 |
}
|
140 |
}
|
| 97 |
else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) )
|
141 |
else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) )
|
| 98 |
{
|
142 |
{
|
| 99 |
h = document.body.clientHeight;
|
143 |
h = document.body.clientHeight;
|
| 100 |
}
|
144 |
}
|
| 101 |
|
145 |
|
| 102 |
var e = document.getElementById("LayerDescription");
|
146 |
var e = document.getElementById("LayerDescription");
|
| 103 |
|
147 |
|
| 104 |
if (navigator.userAgent.indexOf('Internet Explorer'))
|
148 |
if (navigator.userAgent.indexOf('Internet Explorer'))
|
| 105 |
{
|
149 |
{
|
| 106 |
e.style.height = h - 350 + "px";
|
150 |
e.style.height = h - 350 + "px";
|
| 107 |
e.style.overflow = "auto";
|
151 |
e.style.overflow = "auto";
|
| 108 |
}
|
152 |
}
|
| 109 |
else
|
153 |
else
|
| 110 |
{
|
154 |
{
|
| 111 |
// This line shouldn't be run by IE; it doesn't seem to work. It gets run in Firefox, etc.
|
155 |
// This line shouldn't be run by IE; it doesn't seem to work. It gets run in Firefox, etc.
|
| 112 |
e.style.minHeight= h - 350 + "px";
|
156 |
e.style.minHeight= h - 350 + "px";
|
| 113 |
e.style.overflow = "auto";
|
157 |
e.style.overflow = "auto";
|
| 114 |
}
|
158 |
}
|
| 115 |
}
|
159 |
}
|
| 116 |
//-->
|
160 |
//-->
|
| 117 |
</script>
|
161 |
</script>
|
| 118 |
</head>
|
162 |
</head>
|
| 119 |
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" onload="self.focus();height();" onresize="height();" >
|
163 |
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" onload="self.focus();height();" onresize="height();" >
|
| 120 |
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
|
164 |
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
|
| 121 |
<tr>
|
165 |
<tr>
|
| 122 |
<td width="1%" background="images/bg_lght_gray.gif"> </td>
|
166 |
<td width="1%" background="images/bg_lght_gray.gif"> </td>
|
| 123 |
<td width="100%" background="images/bg_lght_gray.gif"><span class="form_field"><br> Issue</span>
|
167 |
<td width="100%" background="images/bg_lght_gray.gif"><span class="form_field"><br> Issue</span>
|
| 124 |
<input name="FRpname" type="text" class="form_item" size="12" value="<%=rsCQ("iss_num")%>" readonly>
|
168 |
<input name="FRpname" type="text" class="form_item" size="12" value="<%=rsCQ("iss_num")%>" readonly>
|
| 125 |
<input name="FRpname2" type="text" class="form_item" size="80" value="<%=HTMLEncode(rsCQ("summary"))%>" readonly> </td>
|
169 |
<input name="FRpname2" type="text" class="form_item" size="80" value="<%=HTMLEncode(rsCQ("summary"))%>" readonly>
|
| 126 |
</tr>
|
170 |
</td>
|
| 127 |
<tr>
|
171 |
</tr>
|
| 128 |
<td background="images/bg_lght_gray.gif"><img src="images/h_trsp_dot.gif" width="1" height="400"></td>
|
172 |
<tr>
|
| 129 |
<td valign="top" background="images/bg_form_lightbluedark.gif">
|
173 |
<td background="images/bg_lght_gray.gif"><img src="images/h_trsp_dot.gif" width="1" height="400"></td>
|
| 130 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
174 |
<td valign="top" background="images/bg_form_lightbluedark.gif">
|
| 131 |
<tr>
|
175 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 132 |
<td align="right" background="images/bg_lght_gray.gif"><br>
|
176 |
<tr>
|
| 133 |
<!-- TABS ------------------------------------------->
|
177 |
<td align="right" background="images/bg_lght_gray.gif"><br>
|
| 134 |
<%Call Generate_Tab_Menu ( TABarray4, "Details", "blue" )%>
|
178 |
<!-- TABS ------------------------------------------->
|
| 135 |
<!------------------------------------------------------------->
|
179 |
<%Call Generate_Tab_Menu ( TABarray4, "Details", "blue" )%>
|
| 136 |
</td>
|
180 |
<!------------------------------------------------------------->
|
| 137 |
</tr>
|
181 |
</td>
|
| 138 |
<tr>
|
182 |
</tr>
|
| 139 |
<td background="images/lbox_bg_blue.gif"> </td>
|
183 |
<tr>
|
| 140 |
</tr>
|
184 |
<td background="images/lbox_bg_blue.gif"> </td>
|
| 141 |
</table><br>
|
185 |
</tr>
|
| 142 |
<table width="100%" border="0" cellspacing="5" cellpadding="1">
|
186 |
</table><br>
|
| 143 |
<tr>
|
187 |
<table width="100%" border="0" cellspacing="5" cellpadding="1">
|
| 144 |
<td background="images/bg_vtree_h1.gif">
|
188 |
<tr>
|
| 145 |
<table width="100%" border="0" cellspacing="0" cellpadding="2">
|
189 |
<td background="images/bg_vtree_h1.gif">
|
| 146 |
<tr>
|
190 |
<table width="100%" border="0" cellspacing="0" cellpadding="2">
|
| 147 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Issue Type</td>
|
191 |
<tr>
|
| 148 |
<td background="images/bg_lght_gray.gif">
|
192 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Issue Type</td>
|
| 149 |
<select name="group_id" class="form_item" disabled>
|
193 |
<td background="images/bg_lght_gray.gif">
|
| 150 |
<option selected><%=rsCQ("issue_type")%></option>
|
194 |
<select name="group_id" class="form_item" disabled>
|
| 151 |
<option><%=String(ddWidth, "_")%></option>
|
195 |
<option selected><%=rsCQ("issue_type")%></option>
|
| 152 |
</select></td>
|
196 |
<option><%=String(ddWidth, "_")%></option>
|
| 153 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Submitter</td>
|
197 |
</select>
|
| 154 |
<td background="images/bg_lght_gray.gif">
|
198 |
</td>
|
| 155 |
<select name="group_id" class="form_item" disabled>
|
199 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Submitter</td>
|
| 156 |
<option selected><%=rsCQ("submitter")%></option>
|
200 |
<td background="images/bg_lght_gray.gif">
|
| 157 |
<option><%=String(ddWidth, "_")%></option>
|
201 |
<select name="group_id" class="form_item" disabled>
|
| 158 |
</select></td>
|
202 |
<option selected><%=rsCQ("submitter")%></option>
|
| 159 |
</tr>
|
203 |
<option><%=String(ddWidth, "_")%></option>
|
| 160 |
<tr>
|
204 |
</select>
|
| 161 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Detected in Version</td>
|
205 |
</td>
|
| 162 |
<td background="images/bg_lght_gray.gif">
|
206 |
</tr>
|
| 163 |
<select name="group_id" class="form_item" disabled>
|
207 |
<tr>
|
| 164 |
<option selected><%=rsCQ("release_part1") &"."& rsCQ("release_part2") &"."& rsCQ("release_part3") %></option>
|
208 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Detected in Version</td>
|
| 165 |
<option><%=String(ddWidth, "_")%></option>
|
209 |
<td background="images/bg_lght_gray.gif">
|
| 166 |
</select></td>
|
210 |
<select name="group_id" class="form_item" disabled>
|
| 167 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Submitted on Date</td>
|
211 |
<option selected><%=rsCQ("release_part1") &"."& rsCQ("release_part2") &"."& rsCQ("release_part3") %></option>
|
| 168 |
<td background="images/bg_lght_gray.gif">
|
212 |
<option><%=String(ddWidth, "_")%></option>
|
| 169 |
<select name="group_id" class="form_item" disabled>
|
213 |
</select>
|
| 170 |
<option selected><%=ToLongDate( rsCQ("submit_date")+1 )%></option>
|
214 |
</td>
|
| 171 |
<option><%=String(ddWidth, "_")%></option>
|
215 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Submitted on Date</td>
|
| 172 |
</select></td>
|
216 |
<td background="images/bg_lght_gray.gif">
|
| 173 |
</tr>
|
217 |
<select name="group_id" class="form_item" disabled>
|
| 174 |
<tr>
|
218 |
<option selected><%=ToLongDate( rsCQ("submit_date")+1 )%></option>
|
| 175 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Project</td>
|
219 |
<option><%=String(ddWidth, "_")%></option>
|
| 176 |
<td background="images/bg_lght_gray.gif">
|
220 |
</select>
|
| 177 |
<select name="group_id" class="form_item" disabled>
|
221 |
</td>
|
| 178 |
<option selected><%=rsCQ("project")%></option>
|
222 |
</tr>
|
| 179 |
<option><%=String(ddWidth, "_")%></option>
|
223 |
<tr>
|
| 180 |
</select></td>
|
224 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Project</td>
|
| 181 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Owner</td>
|
225 |
<td background="images/bg_lght_gray.gif">
|
| 182 |
<td background="images/bg_lght_gray.gif">
|
226 |
<select name="group_id" class="form_item" disabled>
|
| 183 |
<select name="group_id" class="form_item" disabled>
|
227 |
<option selected><%=rsCQ("project")%></option>
|
| 184 |
<option selected><%=rsCQ("owner")%></option>
|
228 |
<option><%=String(ddWidth, "_")%></option>
|
| 185 |
<option><%=String(ddWidth, "_")%></option>
|
229 |
</select>
|
| 186 |
</select></td>
|
230 |
</td>
|
| 187 |
</tr>
|
231 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Owner</td>
|
| 188 |
<tr>
|
232 |
<td background="images/bg_lght_gray.gif">
|
| 189 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Product</td>
|
233 |
<select name="group_id" class="form_item" disabled>
|
| 190 |
<td background="images/bg_lght_gray.gif">
|
234 |
<option selected><%=rsCQ("owner")%></option>
|
| 191 |
<select name="group_id" class="form_item" disabled>
|
235 |
<option><%=String(ddWidth, "_")%></option>
|
| 192 |
<option selected><%=rsCQ("product")%></option>
|
236 |
</select>
|
| 193 |
<option><%=String(ddWidth, "_")%></option>
|
237 |
</td>
|
| 194 |
</select></td>
|
238 |
</tr>
|
| 195 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Approver</td>
|
239 |
<tr>
|
| 196 |
<td background="images/bg_lght_gray.gif">
|
240 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Product</td>
|
| 197 |
<select name="group_id" class="form_item" disabled>
|
241 |
<td background="images/bg_lght_gray.gif">
|
| 198 |
<option selected><%=rsCQ("approver")%></option>
|
242 |
<select name="group_id" class="form_item" disabled>
|
| 199 |
<option><%=String(ddWidth, "_")%></option>
|
243 |
<option selected><%=rsCQ("product")%></option>
|
| 200 |
</select></td>
|
244 |
<option><%=String(ddWidth, "_")%></option>
|
| 201 |
</tr>
|
245 |
</select>
|
| 202 |
<tr>
|
246 |
</td>
|
| 203 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Package</td>
|
247 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Approver</td>
|
| 204 |
<td background="images/bg_lght_gray.gif">
|
248 |
<td background="images/bg_lght_gray.gif">
|
| 205 |
<select name="group_id" class="form_item" disabled>
|
249 |
<select name="group_id" class="form_item" disabled>
|
| 206 |
<option selected><%=rsCQ("package")%></option>
|
250 |
<option selected><%=rsCQ("approver")%></option>
|
| 207 |
<option><%=String(ddWidth, "_")%></option>
|
251 |
<option><%=String(ddWidth, "_")%></option>
|
| 208 |
</select></td>
|
252 |
</select>
|
| 209 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field"> </td>
|
253 |
</td>
|
| 210 |
<td background="images/bg_lght_gray.gif"> </td>
|
254 |
</tr>
|
| 211 |
</tr>
|
255 |
<tr>
|
| 212 |
<tr>
|
256 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Package</td>
|
| 213 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Priority</td>
|
257 |
<td background="images/bg_lght_gray.gif">
|
| 214 |
<td background="images/bg_lght_gray.gif">
|
258 |
<select name="group_id" class="form_item" disabled>
|
| 215 |
<select name="group_id" class="form_item" disabled>
|
259 |
<option selected><%=rsCQ("package")%></option>
|
| 216 |
<option selected><%=rsCQ("priority")%></option>
|
260 |
<option><%=String(ddWidth, "_")%></option>
|
| 217 |
<option><%=String(ddWidth, "_")%></option>
|
261 |
</select>
|
| 218 |
</select></td>
|
262 |
</td>
|
| 219 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field"> </td>
|
263 |
<%If parIss_db = enumCLEARQUEST_DEVI_ID Then%>
|
| 220 |
<td background="images/bg_lght_gray.gif"> </td>
|
264 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Parent Devi</td>
|
| 221 |
</tr>
|
265 |
<td background="images/bg_lght_gray.gif">
|
| 222 |
<tr>
|
266 |
<select name="group_id" class="form_item" disabled>
|
| 223 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Status</td>
|
267 |
<option selected><%=rsCQ("dependant_devis")%></option>
|
| 224 |
<td background="images/bg_lght_gray.gif">
|
268 |
<option><%=String(ddWidth, "_")%></option>
|
| 225 |
<select name="group_id" class="form_item" disabled>
|
269 |
</select>
|
| 226 |
<option selected><%=rsCQ("status")%></option>
|
270 |
</td>
|
| 227 |
<option><%=String(ddWidth, "_")%></option>
|
271 |
<%else%>
|
| 228 |
</select></td>
|
272 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field"> </td>
|
| 229 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">
|
273 |
<td background="images/bg_lght_gray.gif"> </td>
|
| 230 |
</td>
|
274 |
<%end if%>
|
| 231 |
<td background="images/bg_lght_gray.gif"> </td>
|
275 |
</tr>
|
| 232 |
</tr>
|
276 |
<tr>
|
| 233 |
<tr>
|
277 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Priority</td>
|
| 234 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field"><br></td>
|
278 |
<td background="images/bg_lght_gray.gif">
|
| 235 |
<td background="images/bg_lght_gray.gif"></td>
|
279 |
<select name="group_id" class="form_item" disabled>
|
| 236 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field"></td>
|
280 |
<option selected><%=rsCQ("priority")%></option>
|
| 237 |
<td background="images/bg_lght_gray.gif"></td>
|
281 |
<option><%=String(ddWidth, "_")%></option>
|
| 238 |
</tr>
|
282 |
</select>
|
| 239 |
</table>
|
283 |
</td>
|
| 240 |
</td>
|
284 |
<%If parIss_db = enumCLEARQUEST_DEVI_ID AND numChildDevis > 0 Then%>
|
| 241 |
</tr>
|
285 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Child Devis</td>
|
| 242 |
<tr>
|
286 |
<td background="images/bg_lght_gray.gif">
|
| 243 |
<td background="images/bg_vtree_h1.gif">
|
287 |
<select name="group_id" class="form_item" enabled>
|
| 244 |
<table width="100%" border="0" cellspacing="0" cellpadding="2">
|
288 |
<%For i = 0 To numChildDevis - 1%>
|
| 245 |
<tr>
|
289 |
<%If i = 0 Then%>
|
| 246 |
<td bgcolor="White" class="form_item"><span class="form_field">Description</span><br>
|
290 |
<option selected><%=childDevis(i)%></option>
|
| 247 |
<div id="LayerDescription" style="height:height(); overflow: auto;"><%=NewLine_To_BR( Server.HTMLEncode( rsCQ("description") ) )%></div>
|
291 |
<%else%>
|
| 248 |
</td>
|
292 |
<option><%=childDevis(i)%></option>
|
| 249 |
</tr>
|
293 |
<%End If%>
|
| 250 |
</table>
|
294 |
<%Next%>
|
| 251 |
</td>
|
295 |
</select>
|
| 252 |
</tr>
|
296 |
</td>
|
| 253 |
</table>
|
297 |
|
| 254 |
</td>
|
298 |
<%else%>
|
| 255 |
</tr>
|
299 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field"> </td>
|
| 256 |
<tr>
|
300 |
<td background="images/bg_lght_gray.gif"> </td>
|
| 257 |
<td background="images/bg_lght_gray.gif"> </td>
|
301 |
<%end if%>
|
| 258 |
<td background="images/lbox_bg_blue.gif"> </td>
|
302 |
</tr>
|
| 259 |
</tr>
|
303 |
<tr>
|
| - |
|
304 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field">Status</td>
|
| - |
|
305 |
<td background="images/bg_lght_gray.gif">
|
| - |
|
306 |
<select name="group_id" class="form_item" disabled>
|
| - |
|
307 |
<option selected><%=rsCQ("status")%></option>
|
| - |
|
308 |
<option><%=String(ddWidth, "_")%></option>
|
| - |
|
309 |
</select>
|
| - |
|
310 |
</td>
|
| - |
|
311 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field"> </td>
|
| - |
|
312 |
<td background="images/bg_lght_gray.gif"> </td>
|
| - |
|
313 |
</tr>
|
| - |
|
314 |
<tr>
|
| - |
|
315 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field"><br></td>
|
| - |
|
316 |
<td background="images/bg_lght_gray.gif"></td>
|
| - |
|
317 |
<td align="right" background="images/bg_lght_gray.gif" class="form_field"></td>
|
| - |
|
318 |
<td background="images/bg_lght_gray.gif"></td>
|
| - |
|
319 |
</tr>
|
| - |
|
320 |
</table>
|
| - |
|
321 |
</td>
|
| - |
|
322 |
</tr>
|
| - |
|
323 |
<tr>
|
| - |
|
324 |
<td background="images/bg_vtree_h1.gif">
|
| - |
|
325 |
<table width="100%" border="0" cellspacing="0" cellpadding="2">
|
| - |
|
326 |
<tr>
|
| - |
|
327 |
<td bgcolor="White" class="form_item"><span class="form_field">Description</span><br>
|
| - |
|
328 |
<div id="LayerDescription" style="height:height(); overflow: auto;"><%=NewLine_To_BR( Server.HTMLEncode( rsCQ("description") ) )%></div>
|
| - |
|
329 |
</td>
|
| - |
|
330 |
</tr>
|
| - |
|
331 |
</table>
|
| - |
|
332 |
</td>
|
| - |
|
333 |
</tr>
|
| - |
|
334 |
</table>
|
| - |
|
335 |
</td>
|
| - |
|
336 |
</tr>
|
| - |
|
337 |
<tr>
|
| - |
|
338 |
<td background="images/bg_lght_gray.gif"> </td>
|
| - |
|
339 |
<td background="images/lbox_bg_blue.gif"> </td>
|
| - |
|
340 |
</tr>
|
| 260 |
</table>
|
341 |
</table>
|
| 261 |
</body>
|
342 |
</body>
|
| 262 |
</html>
|
343 |
</html>
|
| 263 |
|
344 |
|
| 264 |
|
345 |
|
| 265 |
<!-- DESTRUCTOR ------->
|
346 |
<!-- DESTRUCTOR ------->
|
| 266 |
<!--#include file="common/destructor.asp"-->
|
- |
|
| 267 |
|
347 |
<!--#include file="common/destructor.asp"-->
|
| - |
|
348 |
|