|
@@ -234,7 +234,7 @@
|
|
|
<div class="layui-input-block">
|
|
|
<form:select path="projectReportRecordStatus" class=" form-control simple-select">
|
|
|
<form:option value="" label=""/>
|
|
|
- <form:options items="${fns:getDictList('audit_state')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
|
|
|
+ <form:options items="${fns:getDictList('archive_state')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
|
|
|
</form:select>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -303,7 +303,7 @@
|
|
|
return xml;
|
|
|
}}
|
|
|
,{align:'center', title: '归档状态', width:70,templet:function(d){
|
|
|
- var st = getAuditState(d.projectReportRecordStatus);
|
|
|
+ var st = getRuralProjectArchiveState(d.projectReportRecordStatus);
|
|
|
if(st.action)
|
|
|
var xml = "<span onclick=\"openDialogView('流程追踪', '${ctx}/ruralProject/ruralCostProjectMessage/getReportRecordProcessOne?processInstanceId=" + d.prrProcessInstanceId + "','95%','95%')\" class=\"status-label status-label-" + st.label + "\" >" + st.status + "</span>";
|
|
|
else
|
|
@@ -366,6 +366,11 @@
|
|
|
xml+="<a href=\"${ctx}/ruralProject/ruralCostProjectMessage/cancelInvalidate?id=" + d.prrId + "&processInstanceId=" + d.prrProcessInstanceId + "\" onclick=\"return confirmx('确认要撤回该报告归档审批吗?', this.href)\" class=\"op-btn op-btn-cancel\" ><i class=\"glyphicon glyphicon-share-alt\"></i> 撤回归档信息</a>";
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ /*上报相关按钮*/
|
|
|
+ if(d.projectReportRecordStatus == 5){
|
|
|
+ xml+="<a href=\"javascript:void(0)\" style='background-color: #5FB878' class=\"op-btn\" ><i class=\"fa fa-plus\"></i> 上报</a>";
|
|
|
+ }
|
|
|
return xml;
|
|
|
|
|
|
}}
|