|
|
|
@ -9,349 +9,364 @@
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<tags:padtitle value="用章记录"/>
|
|
|
|
|
<div class="col-xs-12">
|
|
|
|
|
<tags:message content="${message}" id="message" />
|
|
|
|
|
<div class="tab-content no-border padding-5">
|
|
|
|
|
<div id="FormDiv" class="panel-group accordion-style1">
|
|
|
|
|
<form:form id="inputForm" modelAttribute="chapter" action="" method="post" class="form-horizontal" role="form">
|
|
|
|
|
|
|
|
|
|
<div class="message-header clearfix">
|
|
|
|
|
<div class="pull-left"style="padding-left: 10px;text-align: left">
|
|
|
|
|
<span class="blue bolder bigger-110"> </span>
|
|
|
|
|
<div class="space-4"></div>
|
|
|
|
|
<i class="normal-icon ace-icon fa fa-user red bigger-100 middle" style="padding-right: 10px" title="申请人"><span class="grey" style="padding-left: 5px">申请人:${fns:getUserRealname(chapter.applyUser)}</span></i>
|
|
|
|
|
<i class="ace-icon fa fa-globe blue bigger-100 middle"style="padding-right: 10px" title="所属单位"><span class="grey"style="padding-left: 5px">所属单位:${fns:getOrgName(chapter.orgId)}</span></i>
|
|
|
|
|
<i class="ace-icon fa fa-star orange2 bigger-100 middle"style="padding-right: 10px" title="科室"><span class="grey"style="padding-left: 5px">科室:${not empty chapter.applyDept ? fns:getDeptNameByDeptId(chapter.applyDept) : "--"}</span></i>
|
|
|
|
|
<i class="ace-icon fa fa-clock-o bigger-100 orange middle"style="padding-right: 10px" title="时间"><span class="grey" style="padding-left: 5px">时间:${fns:formatDate(chapter.applyTime,"yyyy-MM-dd HH:mm")}</span></i>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="hr hr-double"></div>
|
|
|
|
|
|
|
|
|
|
<input type="hidden" name="orgId" value="${orgId}" />
|
|
|
|
|
<input type="hidden"name="id" id="id" value="${chapter.id}"/>
|
|
|
|
|
<input type="hidden" name="token" value="${token}" />
|
|
|
|
|
<input type="hidden" name="createTime" id="createTime" value="${createTime}">
|
|
|
|
|
<input type="hidden" id="orgType" name="orgType" value="${chapter.orgType}"/>
|
|
|
|
|
<input type="hidden" id="chapterType" name="chapterType" value="${chapter.chapterType}"/>
|
|
|
|
|
<input type="hidden" name="showType" id="showType" value="${showType}">
|
|
|
|
|
<input type="hidden" name="checkTime" id="checkTime" value="${checkTime}">
|
|
|
|
|
<input type="hidden" id="item" name="item" value="${item}">
|
|
|
|
|
<input type="hidden" id="cachetIdAndNums" name="cachetIdAndNums" >
|
|
|
|
|
<input type="hidden" id="paramMapString" name="paramMapString" value="${paramMapString}" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">申请内容:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
${chapter.chapterContent} <c:if test="${not empty chapter.orgDeptId and not empty chapter.orgDeptName}">(<span class="grey" style="padding-left: 5px">提交审核科室:${chapter.orgDeptName}</span>)</c:if>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<c:if test="${! empty chapter.cost}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">涉及费用金额:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
${chapter.cost}(万元)
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
<c:if test="${! empty chapter.applyCapitalFlag}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">请款报告用章:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
<c:if test="${chapter.applyCapitalFlag eq 0 or empty chapter.applyCapitalFlag}"><span class="orange">否</span></c:if>
|
|
|
|
|
<c:if test="${chapter.applyCapitalFlag eq 1}"><span class="green">是</span></c:if>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
<c:if test="${! empty chapter.wxlFlag and (chapter.orgDeptId eq 'B7515DC9-0F5C-4F76-8EC7-BC4740A0E38F' or chapter.orgDeptId eq '717FBE52-9FC4-407B-A719-B79FE6A13AAB') }">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<c:if test="${chapter.orgDeptId eq 'B7515DC9-0F5C-4F76-8EC7-BC4740A0E38F'}"><span class="blue">维修类用章:</span></c:if>
|
|
|
|
|
<c:if test="${chapter.orgDeptId eq '717FBE52-9FC4-407B-A719-B79FE6A13AAB'}"><span class="blue">专业技术职务分级审批类用章:</span></c:if>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
<c:if test="${chapter.wxlFlag eq 0 or empty chapter.wxlFlag}"><span class="orange">否</span></c:if>
|
|
|
|
|
<c:if test="${chapter.wxlFlag eq 1}"><span class="green">是</span></c:if>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
|
|
|
|
|
<c:if test="${not empty chapter.projectTypeFirstLevel && not empty chapter.projectTypeSecondLevel}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">用章类型:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
${chapter.projectTypeFirstLevelName} ${chapter.projectTypeSecondLevelName}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<c:if test="${not empty chapter.projectTaskSn && not empty chapter.projectTaskName}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">关联项目:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
${chapter.projectTaskName}
|
|
|
|
|
<tags:padtitle value="用章记录"/>
|
|
|
|
|
<div class="col-xs-12">
|
|
|
|
|
<tags:message content="${message}" id="message" />
|
|
|
|
|
<div class="tab-content no-border padding-5">
|
|
|
|
|
<div id="FormDiv" class="panel-group accordion-style1">
|
|
|
|
|
<form:form id="inputForm" modelAttribute="chapter" action="" method="post" class="form-horizontal" role="form">
|
|
|
|
|
|
|
|
|
|
<div class="message-header clearfix">
|
|
|
|
|
<div class="pull-left"style="padding-left: 10px;text-align: left">
|
|
|
|
|
<span class="blue bolder bigger-110"> </span>
|
|
|
|
|
<div class="space-4"></div>
|
|
|
|
|
<i class="normal-icon ace-icon fa fa-user red bigger-100 middle" style="padding-right: 10px" title="申请人"><span class="grey" style="padding-left: 5px">申请人:${fns:getUserRealname(chapter.applyUser)}</span></i>
|
|
|
|
|
<i class="ace-icon fa fa-globe blue bigger-100 middle"style="padding-right: 10px" title="所属单位"><span class="grey"style="padding-left: 5px">所属单位:${fns:getOrgName(chapter.orgId)}</span></i>
|
|
|
|
|
<i class="ace-icon fa fa-star orange2 bigger-100 middle"style="padding-right: 10px" title="科室"><span class="grey"style="padding-left: 5px">科室:${not empty chapter.applyDept ? fns:getDeptNameByDeptId(chapter.applyDept) : "--"}</span></i>
|
|
|
|
|
<i class="ace-icon fa fa-clock-o bigger-100 orange middle"style="padding-right: 10px" title="时间"><span class="grey" style="padding-left: 5px">时间:${fns:formatDate(chapter.applyTime,"yyyy-MM-dd HH:mm")}</span></i>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
</c:if>
|
|
|
|
|
|
|
|
|
|
<c:if test="${! empty chapter.remarks}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">备注:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
${chapter.remarks}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<c:if test="${fn:length(chapter.attachList) > 0}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<%--<label class="visible-lg visible-md visible-sm col-sm-2 no-padding-right" style="text-align: right;"> 附件:</label>
|
|
|
|
|
<label class="visible-xs col-xs-12 no-padding-right"> 附件:</label>--%>
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">附件:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-xs-12 col-sm-9">
|
|
|
|
|
<c:forEach items="${chapter.attachList}" var="attach" varStatus="status">
|
|
|
|
|
<div id="attachDiv_${attach.id}">
|
|
|
|
|
<a class="attached" href="${attach.webUrl }" title="下载附件" target="_blank" download="${attach.attachName }">
|
|
|
|
|
<i class="ace-icon fa fa-file-o bigger-100 middle" style="padding-right: 2px"></i>
|
|
|
|
|
<span class="attached-name middle" title="${attach.attachName }">${fns:abbr(attach.attachName, 100)}</span>
|
|
|
|
|
</a>
|
|
|
|
|
<div class="hr hr-double"></div>
|
|
|
|
|
|
|
|
|
|
<input type="hidden" name="orgId" value="${orgId}" />
|
|
|
|
|
<input type="hidden"name="id" id="id" value="${chapter.id}"/>
|
|
|
|
|
<input type="hidden" name="token" value="${token}" />
|
|
|
|
|
<input type="hidden" name="createTime" id="createTime" value="${createTime}">
|
|
|
|
|
<input type="hidden" id="orgType" name="orgType" value="${chapter.orgType}"/>
|
|
|
|
|
<input type="hidden" id="chapterType" name="chapterType" value="${chapter.chapterType}"/>
|
|
|
|
|
<input type="hidden" name="showType" id="showType" value="${showType}">
|
|
|
|
|
<input type="hidden" name="checkTime" id="checkTime" value="${checkTime}">
|
|
|
|
|
<input type="hidden" id="item" name="item" value="${item}">
|
|
|
|
|
<input type="hidden" id="cachetIdAndNums" name="cachetIdAndNums" >
|
|
|
|
|
<input type="hidden" id="paramMapString" name="paramMapString" value="${paramMapString}" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">申请内容:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
${chapter.chapterContent} <c:if test="${not empty chapter.orgDeptId and not empty chapter.orgDeptName}">(<span class="grey" style="padding-left: 5px">提交审核科室:${chapter.orgDeptName}</span>)</c:if>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:forEach>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
<c:if test="${fn:length(chapterFlowList) > 0}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">审批意见:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
<c:forEach items="${chapterFlowList}" var="chapterFlow" varStatus="num">
|
|
|
|
|
<c:if test="${not empty chapterFlow.checkDecision}">
|
|
|
|
|
<span class="width-15 label label-default ${chapterFlow.state} arrowed-in " style="margin-top: 1px;">${chapterFlow.id}</span>
|
|
|
|
|
</c:if>
|
|
|
|
|
<c:if test="${not empty chapterFlow.checkDecision and chapterFlow.checkDecision eq '0'}">
|
|
|
|
|
<span class="purple">申请</span>
|
|
|
|
|
${chapterFlow.checkOpinion}(<i class="normal-icon ace-icon fa fa-user purple bigger-100 middle" style="padding-right: 10px" title="申请人"><span class="grey" style="padding-left: 5px">申请人:${chapterFlow.userName}</span></i>
|
|
|
|
|
<i class="ace-icon fa fa-clock-o bigger-100 orange middle"style="padding-right: 10px" title="时间"><span class="grey" style="padding-left: 5px">申请时间:${fns:formatDate(chapterFlow.checkTime,"yyyy-MM-dd HH:mm")}</span></i>)<br/>
|
|
|
|
|
</c:if>
|
|
|
|
|
<c:if test="${not empty chapterFlow.checkDecision and chapterFlow.checkDecision ne '0'}">
|
|
|
|
|
<c:if test="${chapterFlow.checkDecision eq '1'}"><span class="green">同意</span> </c:if>
|
|
|
|
|
<c:if test="${chapterFlow.checkDecision eq '-1'}"><span class="red">不同意</span> </c:if>
|
|
|
|
|
${chapterFlow.checkOpinion}(<i class="normal-icon ace-icon fa fa-user purple bigger-100 middle" style="padding-right: 10px" title="审批人"><span class="grey" style="padding-left: 5px">审批人:${chapterFlow.userName}</span></i>
|
|
|
|
|
<i class="ace-icon fa fa-clock-o bigger-100 orange middle"style="padding-right: 10px" title="时间"><span class="grey" style="padding-left: 5px">审批时间:${fns:formatDate(chapterFlow.checkTime,"yyyy-MM-dd HH:mm")}</span></i>)<br/>
|
|
|
|
|
</c:if>
|
|
|
|
|
</c:forEach>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
<div class="hr hr-double"></div>
|
|
|
|
|
<c:if test="${fn:length(partyCachetList) > 0}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">申请党委章:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
<ul id="partyCachetUl" class="nav nav-pills" style="line-height: 0.7;margin-left: 0;margin-top: 8px">
|
|
|
|
|
<c:forEach var="cachetChapter" items="${partyCachetList}" varStatus="status">
|
|
|
|
|
<c:if test="${cachetChapter.cachetDeleteFlag==0}">
|
|
|
|
|
<span class="chapter_dwgz"> ${cachetChapter.cachetName} </span><c:if test="${cachetChapter.cachetNum>0||chapter.state==6||chapter.state==7}"> ${cachetChapter.cachetNum} 枚</c:if>
|
|
|
|
|
</c:if>
|
|
|
|
|
</c:forEach>
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
|
|
|
|
|
<c:if test="${fn:length(cachetList) >0}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">申请公章:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
<ul id="cachetUl" class="nav nav-pills" style="line-height: 0.7;margin-left: 0;margin-top: 8px">
|
|
|
|
|
<c:forEach var="cachetChapter" items="${cachetList}" varStatus="status">
|
|
|
|
|
<c:if test="${cachetChapter.cachetDeleteFlag==0}">
|
|
|
|
|
<span class="chapter_dwgz"> ${cachetChapter.cachetName} </span><c:if test="${cachetChapter.cachetNum>0||chapter.state==6||chapter.state==7}"> ${cachetChapter.cachetNum} 枚</c:if>
|
|
|
|
|
</c:if>
|
|
|
|
|
</c:forEach>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
|
|
|
|
|
<c:if test="${fn:length(personCachetList) >0}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">申请法人章:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
|
|
|
|
|
<ul id="personCachetUl" class="nav nav-pills" style="line-height: 0.7;margin-left: 0;margin-top: 8px">
|
|
|
|
|
<c:forEach var="cachetChapter" items="${personCachetList}" varStatus="status">
|
|
|
|
|
<c:if test="${cachetChapter.cachetDeleteFlag==0}">
|
|
|
|
|
<span class="chapter_frz"> ${cachetChapter.cachetName} </span><c:if test="${cachetChapter.cachetNum>0||chapter.state==6||chapter.state==7}"> ${cachetChapter.cachetNum} 枚</c:if>
|
|
|
|
|
</c:if>
|
|
|
|
|
</c:forEach>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
|
|
|
|
|
<c:if test="${fn:length(showCachetChapterDeleteList) > 0}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="red">以下印章已被删除:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
<ul id="manyCachetUl" class="nav nav-pills" style="line-height: 1.0;margin-left: 0;margin-top: 5px">
|
|
|
|
|
<c:forEach var="cachetChapter" items="${showCachetChapterDeleteList}" varStatus="status">
|
|
|
|
|
<li>
|
|
|
|
|
<input type="hidden" id="${cachetChapter.cachetId}" name="cachetNum1" value="0">
|
|
|
|
|
<label >${cachetChapter.cachetName}</label>
|
|
|
|
|
</li>
|
|
|
|
|
</c:forEach>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<c:if test="${! empty chapter.borrowTime}">
|
|
|
|
|
<div class="hr hr-double"></div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue"> 登记时间:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="input-group input-group-sm col-xs-12 col-sm-12" style="padding-left: 15px;padding-right: 0px;">
|
|
|
|
|
${fns:formatDate(chapter.borrowTime,"yyyy-MM-dd HH:mm")}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
|
|
|
|
|
<c:if test="${! empty chapter.returnTime}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue"> 返还时间:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="input-group input-group-sm col-xs-12 col-sm-12" style="padding-left: 15px;padding-right: 0px;">
|
|
|
|
|
${fns:formatDate(chapter.returnTime,"yyyy-MM-dd HH:mm")}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">审批流程:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
<c:forEach items="${chapterFlowList}" var="chapterFlow" varStatus="num">
|
|
|
|
|
<c:if test="${! empty chapter.cost}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">涉及费用金额:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
${chapter.cost}(万元)
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
<c:if test="${! empty chapter.applyCapitalFlag}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">请款报告用章:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
<c:if test="${chapter.applyCapitalFlag eq 0 or empty chapter.applyCapitalFlag}"><span class="orange">否</span></c:if>
|
|
|
|
|
<c:if test="${chapter.applyCapitalFlag eq 1}"><span class="green">是</span></c:if>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
<c:if test="${! empty chapter.assetTransferFlag}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">资产报废(调拨)用章:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
<c:if test="${chapter.assetTransferFlag eq 0 or empty chapter.assetTransferFlag}"><span class="orange">否</span></c:if>
|
|
|
|
|
<c:if test="${chapter.assetTransferFlag eq 1}"><span class="green">是</span></c:if>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
<c:if test="${! empty chapter.wxlFlag and (chapter.orgDeptId eq 'B7515DC9-0F5C-4F76-8EC7-BC4740A0E38F' or chapter.orgDeptId eq '717FBE52-9FC4-407B-A719-B79FE6A13AAB') }">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<c:if test="${chapter.orgDeptId eq 'B7515DC9-0F5C-4F76-8EC7-BC4740A0E38F'}"><span class="blue">维修类用章:</span></c:if>
|
|
|
|
|
<c:if test="${chapter.orgDeptId eq '717FBE52-9FC4-407B-A719-B79FE6A13AAB'}"><span class="blue">专业技术职务分级审批类用章:</span></c:if>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
<c:if test="${chapter.wxlFlag eq 0 or empty chapter.wxlFlag}"><span class="orange">否</span></c:if>
|
|
|
|
|
<c:if test="${chapter.wxlFlag eq 1}"><span class="green">是</span></c:if>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
|
|
|
|
|
<c:if test="${not empty chapter.projectTypeFirstLevel && not empty chapter.projectTypeSecondLevel}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">用章类型:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
${chapter.projectTypeFirstLevelName} ${chapter.projectTypeSecondLevelName}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<c:if test="${not empty chapter.projectTaskSn && not empty chapter.projectTaskName}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">关联项目:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
${chapter.projectTaskName}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
</c:if>
|
|
|
|
|
|
|
|
|
|
<c:if test="${! empty chapter.remarks}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">备注:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
${chapter.remarks}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<c:if test="${fn:length(chapter.attachList) > 0}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<%--<label class="visible-lg visible-md visible-sm col-sm-2 no-padding-right" style="text-align: right;"> 附件:</label>
|
|
|
|
|
<label class="visible-xs col-xs-12 no-padding-right"> 附件:</label>--%>
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">附件:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-xs-12 col-sm-9">
|
|
|
|
|
<c:forEach items="${chapter.attachList}" var="attach" varStatus="status">
|
|
|
|
|
<div id="attachDiv_${attach.id}">
|
|
|
|
|
<a class="attached" href="${attach.webUrl }" title="下载附件" target="_blank" download="${attach.attachName }">
|
|
|
|
|
<i class="ace-icon fa fa-file-o bigger-100 middle" style="padding-right: 2px"></i>
|
|
|
|
|
<span class="attached-name middle" title="${attach.attachName }">${fns:abbr(attach.attachName, 100)}</span>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</c:forEach>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
<c:if test="${fn:length(chapterFlowList) > 0}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">审批意见:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
<c:forEach items="${chapterFlowList}" var="chapterFlow" varStatus="num">
|
|
|
|
|
<c:if test="${not empty chapterFlow.checkDecision}">
|
|
|
|
|
<span class="width-15 label label-default ${chapterFlow.state} arrowed-in " style="margin-top: 1px;">${chapterFlow.id}</span>
|
|
|
|
|
</c:if>
|
|
|
|
|
<c:if test="${not empty chapterFlow.checkDecision and chapterFlow.checkDecision eq '0'}">
|
|
|
|
|
<span class="purple">申请</span>
|
|
|
|
|
${chapterFlow.checkOpinion}(<i class="normal-icon ace-icon fa fa-user purple bigger-100 middle" style="padding-right: 10px" title="申请人"><span class="grey" style="padding-left: 5px">申请人:${chapterFlow.userName}</span></i>
|
|
|
|
|
<i class="ace-icon fa fa-clock-o bigger-100 orange middle"style="padding-right: 10px" title="时间"><span class="grey" style="padding-left: 5px">申请时间:${fns:formatDate(chapterFlow.checkTime,"yyyy-MM-dd HH:mm")}</span></i>)<br/>
|
|
|
|
|
</c:if>
|
|
|
|
|
<c:if test="${not empty chapterFlow.checkDecision and chapterFlow.checkDecision ne '0'}">
|
|
|
|
|
<c:if test="${chapterFlow.checkDecision eq '1'}"><span class="green">同意</span> </c:if>
|
|
|
|
|
<c:if test="${chapterFlow.checkDecision eq '-1'}"><span class="red">不同意</span> </c:if>
|
|
|
|
|
${chapterFlow.checkOpinion}(<i class="normal-icon ace-icon fa fa-user purple bigger-100 middle" style="padding-right: 10px" title="审批人"><span class="grey" style="padding-left: 5px">审批人:${chapterFlow.userName}</span></i>
|
|
|
|
|
<i class="ace-icon fa fa-clock-o bigger-100 orange middle"style="padding-right: 10px" title="时间"><span class="grey" style="padding-left: 5px">审批时间:${fns:formatDate(chapterFlow.checkTime,"yyyy-MM-dd HH:mm")}</span></i>)<br/>
|
|
|
|
|
</c:if>
|
|
|
|
|
</c:forEach>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
<div class="hr hr-double"></div>
|
|
|
|
|
<c:if test="${fn:length(partyCachetList) > 0}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">申请党委章:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
<ul id="partyCachetUl" class="nav nav-pills" style="line-height: 0.7;margin-left: 0;margin-top: 8px">
|
|
|
|
|
<c:forEach var="cachetChapter" items="${partyCachetList}" varStatus="status">
|
|
|
|
|
<c:if test="${cachetChapter.cachetDeleteFlag==0}">
|
|
|
|
|
<span class="chapter_dwgz"> ${cachetChapter.cachetName} </span><c:if test="${cachetChapter.cachetNum>0||chapter.state==6||chapter.state==7}"> ${cachetChapter.cachetNum} 枚</c:if>
|
|
|
|
|
</c:if>
|
|
|
|
|
</c:forEach>
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
|
|
|
|
|
<c:if test="${fn:length(cachetList) >0}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">申请公章:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
<ul id="cachetUl" class="nav nav-pills" style="line-height: 0.7;margin-left: 0;margin-top: 8px">
|
|
|
|
|
<c:forEach var="cachetChapter" items="${cachetList}" varStatus="status">
|
|
|
|
|
<c:if test="${cachetChapter.cachetDeleteFlag==0}">
|
|
|
|
|
<span class="chapter_dwgz"> ${cachetChapter.cachetName} </span><c:if test="${cachetChapter.cachetNum>0||chapter.state==6||chapter.state==7}"> ${cachetChapter.cachetNum} 枚</c:if>
|
|
|
|
|
</c:if>
|
|
|
|
|
</c:forEach>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
|
|
|
|
|
<c:if test="${fn:length(personCachetList) >0}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">申请法人章:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
|
|
|
|
|
<ul id="personCachetUl" class="nav nav-pills" style="line-height: 0.7;margin-left: 0;margin-top: 8px">
|
|
|
|
|
<c:forEach var="cachetChapter" items="${personCachetList}" varStatus="status">
|
|
|
|
|
<c:if test="${cachetChapter.cachetDeleteFlag==0}">
|
|
|
|
|
<span class="chapter_frz"> ${cachetChapter.cachetName} </span><c:if test="${cachetChapter.cachetNum>0||chapter.state==6||chapter.state==7}"> ${cachetChapter.cachetNum} 枚</c:if>
|
|
|
|
|
</c:if>
|
|
|
|
|
</c:forEach>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
|
|
|
|
|
<c:if test="${fn:length(showCachetChapterDeleteList) > 0}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="red">以下印章已被删除:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
<ul id="manyCachetUl" class="nav nav-pills" style="line-height: 1.0;margin-left: 0;margin-top: 5px">
|
|
|
|
|
<c:forEach var="cachetChapter" items="${showCachetChapterDeleteList}" varStatus="status">
|
|
|
|
|
<li>
|
|
|
|
|
<input type="hidden" id="${cachetChapter.cachetId}" name="cachetNum1" value="0">
|
|
|
|
|
<label >${cachetChapter.cachetName}</label>
|
|
|
|
|
</li>
|
|
|
|
|
</c:forEach>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<c:if test="${! empty chapter.borrowTime}">
|
|
|
|
|
<div class="hr hr-double"></div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue"> 登记时间:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="input-group input-group-sm col-xs-12 col-sm-12" style="padding-left: 15px;padding-right: 0px;">
|
|
|
|
|
${fns:formatDate(chapter.borrowTime,"yyyy-MM-dd HH:mm")}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
|
|
|
|
|
<c:if test="${! empty chapter.returnTime}">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue"> 返还时间:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="input-group input-group-sm col-xs-12 col-sm-12" style="padding-left: 15px;padding-right: 0px;">
|
|
|
|
|
${fns:formatDate(chapter.returnTime,"yyyy-MM-dd HH:mm")}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<div class="col-xs-12 col-sm-11">
|
|
|
|
|
<div class="attachment-title">
|
|
|
|
|
<span class="blue">审批流程:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="pull">
|
|
|
|
|
<div class="col-xs-11">
|
|
|
|
|
<c:forEach items="${chapterFlowList}" var="chapterFlow" varStatus="num">
|
|
|
|
|
<span class="width-15 label label-default ${chapterFlow.state} arrowed-in
|
|
|
|
|
${chapterFlow.hasNext ? 'arrowed-right' : ''}" style="font-size:12px; margin-top: 1px;">
|
|
|
|
|
${chapterFlow.userName} ${chapterFlow.action} ${chapterFlow.decision}
|
|
|
|
|
</span>
|
|
|
|
|
</c:forEach>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</c:forEach>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="space-2"></div>
|
|
|
|
|
<div class="space-2"></div>
|
|
|
|
|
|
|
|
|
|
<div class="clearfix form-actions form-submit">
|
|
|
|
|
<div class="col-xs-12" align="center">
|
|
|
|
|
<a id="btnCancel" class="btn btn-default" data-trigger="ajax" data-target="#ajax_target" onclick="pageRedirect('inputForm','${ctx}/oa/chapter/listChapterApplyHistory?repage&${paramMapString}')" style="cursor: pointer;">
|
|
|
|
|
<i class="ace-icon fa fa-undo bigger-110"></i>返回
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="clearfix form-actions form-submit">
|
|
|
|
|
<div class="col-xs-12" align="center">
|
|
|
|
|
<a id="btnCancel" class="btn btn-default" data-trigger="ajax" data-target="#ajax_target" onclick="pageRedirect('inputForm','${ctx}/oa/chapter/listChapterApplyHistory?repage&${paramMapString}')" style="cursor: pointer;">
|
|
|
|
|
<i class="ace-icon fa fa-undo bigger-110"></i>返回
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</form:form>
|
|
|
|
|
</div>
|
|
|
|
|
</form:form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|