|
@@ -136,6 +136,8 @@ $(function () {
|
|
|
if (!confirm("确定审核出库吗?(注意:审核后本张出库单将不能再修改)")) {
|
|
|
return;
|
|
|
}
|
|
|
+ // 限制重复点击审核按钮
|
|
|
+ $("#btn_audit").attr("disabled",true);
|
|
|
request({
|
|
|
url: '/auditYpOutDetl',
|
|
|
method: 'GET',
|
|
@@ -143,8 +145,11 @@ $(function () {
|
|
|
drawNo: $("#drawNoLabel").html()
|
|
|
}
|
|
|
}).then((res) => {
|
|
|
+ $("#btn_audit").attr("disabled",false);
|
|
|
$("#btn_clean").click();
|
|
|
successMesage(res);
|
|
|
+ }).catch((res) => {
|
|
|
+ $("#btn_audit").attr("disabled",false);
|
|
|
});
|
|
|
});
|
|
|
$("#btn_daily").click(function (t) {
|