From 789e2f52acc82eb9ba9b089e39c5e3b1c0823bf6 Mon Sep 17 00:00:00 2001
From: 南骏 池 <chiffly@163.com>
Date: 星期三, 24 九月 2025 09:59:24 +0800
Subject: [PATCH] 1.IPQC巡检新增'/' 2.巡检查询优化 3.巡检分组织 4.受托优化
---
H5/Js/Dbck.js | 95 +++++++++++++++++++++++++++++------------------
1 files changed, 59 insertions(+), 36 deletions(-)
diff --git a/H5/Js/Dbck.js b/H5/Js/Dbck.js
index 4a5a8c4..42df939 100644
--- a/H5/Js/Dbck.js
+++ b/H5/Js/Dbck.js
@@ -17,6 +17,8 @@
active: 0,
show: false,
actions: [],
+ ItemDetail: [],
+ scanInfo: { barcodeNum: "", splitNum: "", barcode: "" },
}
},
mounted() {
@@ -82,7 +84,7 @@
.then(function (res) {
var json = res;
if (json.status == 0) {
- that.ItemBlDetail = json.data.tbBillList;
+ that.ItemDetail = json.data.tbBillList;
that.$refs.barcode.focus();
that.barcode = "";
}
@@ -90,7 +92,7 @@
that.$toast.fail(json.message);
that.$refs.billNo.focus();
that.billNo = "";
- that.ItemBlDetail = null;
+ that.ItemDetail = null;
}
that.isLoading = false;
})
@@ -103,7 +105,7 @@
//console.log(error);
});
},
- getBarcode() {
+ getScan() {
//this.barcode = value;
@@ -137,15 +139,22 @@
var json = res;
if (json.status == 0) {
- that.itemNo = json.data.form.itemNo;
- //that.num = json.data.form.num;
- //that.fum = json.data.form.fum;
- that.ItemBlDetail = json.data.items
+ //that.itemNo = json.data.tbBillList.itemNo;
+ ////that.num = json.data.form.num;
+ ////that.fum = json.data.form.fum;
+ //that.ItemBlDetail = json.data.items
that.$notify({ type: 'success', message: '鎵爜鎴愬姛' });
that.$refs.barcode.focus();
that.barcode = "";
//that.GetMesItemBlDetailByBillNo();
+ that.GetMesItemBlDetailByBillNo();
+ }
+ else if (json.status == 2) {
+ that.itemNo = json.data.tbBillList.itemNo;
+ that.$refs.splitNum.focus();
+ that.scanInfo.splitNum = json.data.tbBillList.splitNum;
+ that.scanInfo.barcodeNum = json.data.tbBillList.barcodeNum;
}
else {
that.$toast.fail(json.message);
@@ -162,57 +171,71 @@
that.barcode = "";
});
},
- tmcf() {
+ getChaiFen() {
+ //this.isPrinterPopupVisible = true; // 鏄剧ず寮圭獥
+
+ if (this.isLoading) {
+ return;
+ }
+
var that = this;
-
- if (!that.userInfo.loginAccount) {
- this.$toast.fail("璇烽噸鏂版鏌ョ櫥褰曠姸鎬�");
+ if (that.billNo.length <= 0) {
+ that.$toast.fail("鐢宠鍗曞彿涓嶈兘涓虹┖锛�");
return;
}
+ if (that.scanInfo.splitNum * 1 <= 0) {
+ that.$toast.fail("鎷嗗垎鏁伴噺涓嶈兘涓虹┖锛�");
+ return;
+ }
+ if (that.barcode.length * 1 <= 0) {
+ that.$toast.fail("鐗╂枡鏉$爜涓嶈兘涓虹┖锛�");
+ return;
+ }
+ //that.ip = "";
+ //that.prot = "";
+ //that.getPrintInfo();
- if (!that.barcode) {
- this.$toast.fail("鏉$爜涓嶈兘涓虹┖");
- return;
- }
-
- if (!that.billNo) {
- this.$toast.fail("鐢宠鍗曞彿涓嶈兘涓虹┖");
- return;
- }
-
- if (!that.fum) {
- this.$toast.fail("鎷嗗垎鏁颁笉鑳戒负绌�");
- return;
- }
+ //if (that.ip.length <= 0 || that.prot.length <= 0) {
+ // alert(that.ip);
+ // alert(that.prot);
+ // return;
+ //}
that.isLoading = true;
- that.AxiosHttp("post", 'TransferOut/SplitBarcode', {
+ that.AxiosHttp("post", 'TransferOut/ScanCodeCF', {
+ daa001: that.billNo,
userName: that.userInfo.loginAccount,
barcode: that.barcode,
- billNo: that.billNo,
- fum: that.fum
+ Num: that.scanInfo.splitNum,
}, false)
.then(function (res) {
var json = res;
if (json.status == 0) {
+ // that.modeInfo = json.data.tbBillList;
+ that.scanInfo.splitNum = null;
+ that.scanInfo.barcodeNum = null;
+ that.scanInfo.barcode = null;
+ that.$notify({ type: 'success', message: json.message });
+ that.$playSound('success');
- that.itemNo = json.data.form.itemNo;
- that.num = json.data.form.num;
- that.barcode = json.data.form.barcode;
- that.fum = json.data.form.fum;
- that.ItemBlDetail = json.data.items
- that.$notify({ type: 'success', message: '鎵爜鎴愬姛' });
+ that.sendPrintMessage(json.data.tbBillList);
+
+ that.$refs.barcode.focus();
+ that.barcode = "";
+ //that.GetMesItemBlDetailByBillNo();
+ that.GetMesItemBlDetailByBillNo();
}
else {
that.$toast.fail(json.message);
+ that.$playSound('error');
}
that.isLoading = false;
})
.catch(function (error) {
that.isLoading = false;
that.$toast.fail("缃戠粶閿欒锛岃閲嶈瘯锛�");
- console.log(error);
+ that.$playSound('error');
});
- }
+ },
}
})
\ No newline at end of file
--
Gitblit v1.9.3