📄 office_document_sent_modify.jsp
字号:
<input type="hidden" name="workflowId" value= "<%= dsvb.getWorkflowId() %>">
<input type="text" name="title" value="<%= FieldUtil.filterQuotTag( dsvb.getTitle() ) %>" class="file">
* (注:带*为必填内容)</td>
</tr>
<tr bgcolor="#e0e0e0">
<td width="100"> <font class="strong"> 紧急程度:</font>
</td>
<td width="456">
<select name="instancyType">
<%
Iterator itypes = InstancyType.getAvailableInstancyTypes().iterator();
while ( itypes.hasNext() )
{
InstancyType itype = ( InstancyType )itypes.next();
%>
<option value="<%= itype.getId() %>" <% if( dsvb.getInstancyType()!= null && itype.getId()==dsvb.getInstancyType().getId() ) out.print("selected"); %>>
<%= itype.getName() %></option>
<%
}
%>
</select>
</td>
</tr>
<tr bgcolor="#fafafa">
<td width="100"> <font class="strong"> 秘密等级:</font>
</td>
<td width="456">
<select name="securityType">
<%
Iterator types = SecurityType.getAvailableSecurityTypes().iterator();
while ( types.hasNext() )
{
SecurityType rtype = ( SecurityType )types.next();
%>
<option value="<%= rtype.getId() %>" <% if ( dsvb.getSecurityType()!= null && rtype.getId()==dsvb.getSecurityType().getId() ) out.print("selected"); %>>
<%= rtype.getName() %></option>
<%
}
%>
</select>
</td>
</tr>
<tr bgcolor="#e0e0e0">
<td width="100"><font class="strong"> 主题词:</font></td>
<td width="456">
<input type="text" name="keyword" value="<%= FieldUtil.filterQuotTag( dsvb.getKeyword() ) %>" size="24" class="file">
</td>
</tr>
<tr bgcolor="#fafafa">
<td width="100"><font class="strong"> 发件摘要:</font></td>
<td width="456">
<textarea name="description" cols="59" rows="5"><%= FieldUtil.filterQuotTag( dsvb.getDescription() ) %></textarea>
</td>
</tr>
<tr bgcolor="#e0e0e0">
<td rowspan="2"><font class="strong"> 上传附件:<br>(注:点击附件名称就可以查看附件. )</font></td>
<td rowspan="2">
<!--select name="attachments" size="6" multiple style="width:350" onChange="openAttach( document.forms[0].attachments )"-->
<select name="attachments" size="6" multiple style="width:350" >
<vnex_workflow:fileList collection="<%=dsvb.getFiles()%>">
<vnex:items>
<option value = "<vnex_workflow:fileAttribute attribute="workflowfile_title"/>">
<vnex_workflow:fileAttribute attribute="workflowfile_name"/></option>
</vnex:items>
</vnex_workflow:fileList>
</select>
<input type="button" name="Button22" value="删除" onClick="deleteDoc( this.form )" class="file">
<input type="file" name="file" class="file" size="24">
<input type="button" name="Submit22" value="上传" class="file" onClick="uploadDoc(this.form)">
</td>
</tr>
<tr bgcolor="#ffffff"> </tr>
<!-- 6-28 modify begin -->
<tr bgcolor="#fafafa">
<td colspan =3 > <font class="strong"> 发文路径:</font></td>
</tr>
</table>
<table border="0" cellspacing="1" cellpadding="2" class=title width="600">
<tr class="table_row_title">
<td height="30" colspan="6" bgcolor="#fafafa">
<input type="button" name="Submit3" style="width:70px" value="新建子任务" class="file" onClick="addSub( this.form )" >
<input type="button" name="Submit23" value="删除" class="file" onClick="deleteSub( this.form )" >
</td>
</tr>
<tr class="table_row_title" >
<td align="center" width="7%"><font class="strong">选择</font></td>
<td width="85" align="center" nowrap><font class="strong">顺序</font></td>
<td width="167" align="center" nowrap><font class="strong">子任务名称</font></td>
<td width="87" align="center" nowrap><font class="strong">执行者</font></td>
<td width="59" align="center" nowrap><font class="strong">角色</font></td>
<td width="147" align="center" nowrap><font class="strong">截止时间</font></td>
</tr>
<%
for( int i = 0; i < subtasks.size(); i++ )
{
SubTaskValueBean sub = ( SubTaskValueBean )subtasks.get(i);
int jj = 0;
if( i%2 == 0)
{
%>
<tr bgcolor="#fafafa" align="center">
<%}else{
%>
<tr bgcolor="#e0e0e0" align="center">
<%}
%>
<td align="center" width="7%">
<input type="checkbox" name="subId" value="<%=sub.getSubtaskId() %>">
</td>
<td width="103" align="center">
<select name="stepNos">
<% for( int j = 0; j < subtasks.size(); j++)
{
%>
<option value="<%=j+1%>"
<%if( sub.getSubStepNo() == j+1 ) {
jj++;
%>
selected
<%}%>
><%=j+1%></option>
<%
}
if( jj == 0 )
{
%>
<option value="<%=sub.getSubStepNo()%>" selected ><%=sub.getSubStepNo()%></option>
<%
}
%>
</select></td>
<td width="112" align="center">
<a onclick="modifySubtask(myform,'<%= sub.getSubtaskId() %>');return false;" href="#"><%= FieldUtil.filterScriptTag( sub.getSubTitle() ) %></a>
</td>
<td width="109" align="center">
<div align="center"><%=sub.getSubExecutorName() %></div>
</td>
<td width="104" align="center">
<div align="center"><%= WorkflowLoader.getSubtaskStatus( sub.getSubStatusId() ) %></div>
</td>
<td width="93" align="center">
<div align="center"><%= sub.getSubPlanEndTimeS() %></div>
</td>
</tr>
<%
}
if( subtasks.size() > 0 )
{
%>
<tr bgcolor="#e0e0e0">
<td align="center" width="42">
<input type="checkbox" name="C1" value="ON" onClick="SelectAll( this.form )" >
</td>
<td colspan="5"> 全选</td>
</tr>
<%
}
%>
</table>
<table width="600" border="0" cellspacing="0" cellpadding="0">
<tr align="center">
<td height="30">
<input type="button" name="Submit" value="保存" class="file" onClick="updateDoc(this.form, 'false')">
<input type="button" style="width:70px" name="Submit" value="保存并发布" class="file" onClick="updateDoc( this.form, 'true')">
<input type="button" style="width:85px" name="Submit" value="存为个人模板" class="file" onClick="saveTemplate(this.form)">
<input type="reset" name="Submit2" value="放弃" class="file" onclick="location='/mainctrl/office/document/sentdetail?id=<%= dsvb.getWorkflowId() %>'">
</td>
</tr>
</table>
</td>
</tr>
</table>
<jsp:include page="/vnex/page/TTOA_HELP.jsp" />
</TD>
</TR>
<jsp:include page="/vnex/page/TTOA_TABLE_BOTTOM.jsp" />
</TABLE>
<BR>
<jsp:include page="/vnex/page/TTOA_PRODUCER_LOGO.jsp" />
</form></DIV>
</BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -