📄 office_document_sending_create.jsp
字号:
<table class=title width="600" border="0" cellspacing="1" cellpadding="2">
<tr bgcolor="#666666" >
<td colspan="2" height="15"><font class="strongw"><a href="/mainctrl/system/main"><font color="#FFFFFF">首页</font></a>>><a href="/mainctrl/office/main"><font color="#FFFFFF">办公室管理</font></a>>><a href="/mainctrl/office/document/sentlist"><font color="#FFFFFF">发文管理</font></a>>>新建发文
</font></td>
</tr>
<tr>
<td width="100" bgcolor="#e0e0e0"> <font class="strong"> 标题:</font>
</td>
<td width="456" bgcolor="#e0e0e0">
<input type="text" name="title" size="24" class="file" value="<%= FieldUtil.filterQuotTag( dsvb.getTitle() ) %>">
* (注:带*为必填内容)</td>
</tr>
<tr bgcolor="#ffffff">
<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>
<td width="100" bgcolor="#e0e0e0"> <font class="strong"> 秘密等级:</font> </td>
<td width="456" bgcolor="#e0e0e0">
<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="#fafafa">
<td width="100"><font class="strong"> 主题词: </font></td>
<td width="456">
<input type="text" name="keyword" size="24" class="file" value="<%= FieldUtil.filterQuotTag( dsvb.getKeyword() ) %>">
</td>
</tr>
<tr bgcolor="#e0e0e0">
<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="#fafafa">
<td rowspan="2"><font class="strong"> 上传附件:<br>(注:点击附件名称查看附件内容)</font></td>
<td rowspan="2">
<!--select name="attachments" size="4" multiple style="width:350" onChange="openAttach( document.forms[0].attachments )"-->
<select name="attachments" size="4" 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="Submit222" value="删除" class="file" onClick="deleteDoc( this.form )">
<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="#e0e0e0"> </tr>
<!-- 6-28 modify begin -->
<tr bgcolor="#e0e0e0">
<td colspan =4 ><font class="strong"> 发文路径:</font> </td>
</tr>
</table>
<table border="0" cellspacing="1" cellpadding="2" class=title width="600">
<tr class="table_row_title">
<td colspan="6" height="30" bgcolor="#fafafa">
<input type="button" name="Submit3" style="width:70px" value="新建子任务" class="file" onClick="addSub( this.form )">
<input type="reset" name="Submit23" value="删除" class="file" onClick="deleteSub( this.form )">
</td>
</tr>
<tr class="table_row_title">
<td align="center" width="42"><font class="strong">选择</font>
</td>
<td align="center" nowrap width="7%"><font class="strong">顺序</font></td>
<td align="center" nowrap width="112"><font class="strong">子任务名称</font></td>
<td align="center" nowrap width="109"><font class="strong">执行者</font></td>
<td align="center" nowrap width="104"><font class="strong">子任务类型</font></td>
<td align="center" nowrap width="93"><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="42">
<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 ) {%>
selected
<%jj++;}%>
><%=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="#"><%= 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.getSubtaskType( sub.getSubTypeId() ) %></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="createDoc(this.form, 'false')">
<input type="button" style="width:70px" name="Submit" value="保存并发布" class="file" onClick="createDoc( this.form, 'true')">
<input type="button" style="width:85px" name="Submit" value="存为个人模板" class="file" onClick="saveRoute(this.form)">
<input type="button" name="Submit2" value="放弃" class="file" onClick="location='/mainctrl/office/document/sentlist'">
</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 + -