Merge remote-tracking branch 'origin/master'
commit
f97c24c4f2
|
@ -191,6 +191,7 @@
|
||||||
|
|
||||||
|
|
||||||
var deploy = function (id) {
|
var deploy = function (id) {
|
||||||
|
if (window.confirm('部署后请在流程定义里配置任务审批人,新发起的审批将按最新的流程定义运行,确定要部署吗? ')) {
|
||||||
var params = {id: id};
|
var params = {id: id};
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: '${base}/actModel/deploy',
|
url: '${base}/actModel/deploy',
|
||||||
|
@ -202,6 +203,7 @@
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
$(function () {
|
$(function () {
|
||||||
|
|
|
@ -230,8 +230,8 @@
|
||||||
</button>
|
</button>
|
||||||
</#if>
|
</#if>
|
||||||
|
|
||||||
<#-- 项目为结算状态 并且结算审批通过 才能发起决算-->
|
<#-- 项目为结算状态 并且结算审批通过 或者 结算审批不通过 才能发起决算-->
|
||||||
<#if list.status== 10 && list.approveStatusSettle== 2 >
|
<#if (list.status== 10 && list.approveStatusSettle== 2) || (list.status== 15 && list.approveStatusFinal== 0) || (list.status== 15 && list.approveStatusFinal== 3)>
|
||||||
<button type="button"
|
<button type="button"
|
||||||
class="am-btn am-btn-default am-btn-xs am-text-secondary"
|
class="am-btn am-btn-default am-btn-xs am-text-secondary"
|
||||||
onclick="location.href='${base}/project/final/edit?id=${list.id}'"><span
|
onclick="location.href='${base}/project/final/edit?id=${list.id}'"><span
|
||||||
|
|
Loading…
Reference in New Issue