Commit b3b3b124 by 江和松

Merge remote-tracking branch 'origin/dev' into dev

parents 1471df14 c6a22c3a
...@@ -292,7 +292,7 @@ public class ServiceHGCW014 extends ServiceBase { ...@@ -292,7 +292,7 @@ public class ServiceHGCW014 extends ServiceBase {
for (int i = 0; i < resultRows.size(); i++) { for (int i = 0; i < resultRows.size(); i++) {
HGCW014 HGCW014 = new HGCW014(); HGCW014 HGCW014 = new HGCW014();
HGCW014.fromMap(resultRows.get(i)); HGCW014.fromMap(resultRows.get(i));
if (!HGCW014.getReviewStatus().equals(ReviewStatusEnum.UNREVIEWED.getCode())){ if (HGCW014.getReviewStatus().equals(ReviewStatusEnum.UNREVIEWED.getCode())){
throw new RuntimeException("当前状态为未审核提交,请先审核提交!"); throw new RuntimeException("当前状态为未审核提交,请先审核提交!");
} }
HGCW014.setCancelStatus(2); HGCW014.setCancelStatus(2);
......
...@@ -177,7 +177,7 @@ function submitFunc() { ...@@ -177,7 +177,7 @@ function submitFunc() {
message("选中的第"+(index+1)+"行未保存的数据,请先保存!"); message("选中的第"+(index+1)+"行未保存的数据,请先保存!");
flag = false; flag = false;
} }
if (row.reviewStatus == "3") { if (row.reviewStatus == "1") {
message("勾选的数据中有已经提交的单据!"); message("勾选的数据中有已经提交的单据!");
flag = false; flag = false;
return; return;
......
...@@ -308,7 +308,9 @@ $(function () { ...@@ -308,7 +308,9 @@ $(function () {
title: "<div style='text-align: center;'>文档权限管理</div>", title: "<div style='text-align: center;'>文档权限管理</div>",
width: "90%", width: "90%",
height: "90%", height: "90%",
callbackName: editCallback callbackName: function () {
editCallback($("#inqu_status-0-orgParentId").val());
}
}); });
}) })
......
...@@ -64,8 +64,7 @@ let save = function () { ...@@ -64,8 +64,7 @@ let save = function () {
function (e) { function (e) {
var status = e.status; var status = e.status;
if (status !== -1) { if (status !== -1) {
let fileId = $("#inqu_status-0-fileId").val(); parent.JSColorbox.setValueCallback();
parent.JSColorbox.setValueCallback(fileId);
} }
}); });
} }
...@@ -98,8 +97,7 @@ let auth = function () { ...@@ -98,8 +97,7 @@ let auth = function () {
* 授权回调 * 授权回调
*/ */
let authCallback = function (res) { let authCallback = function (res) {
let fileId = $("#inqu_status-0-fileId").val(); parent.JSColorbox.setValueCallback();
parent.JSColorbox.setValueCallback(fileId);
// 刷新页面 // 刷新页面
query(); query();
...@@ -120,7 +118,12 @@ let removeUser = function () { ...@@ -120,7 +118,12 @@ let removeUser = function () {
JSUtils.confirm("确定对勾选中的[" + rows.length + "]条数据做\"取消授权用户\"操作? ", { JSUtils.confirm("确定对勾选中的[" + rows.length + "]条数据做\"取消授权用户\"操作? ", {
ok: function () { ok: function () {
JSUtils.submitGridsData("result", "HGWD003", "removeUser", JSUtils.submitGridsData("result", "HGWD003", "removeUser",
true true,function (e) {
var status = e.status;
if (status !== -1) {
parent.JSColorbox.setValueCallback();
}
}
); );
} }
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment