H5/Js/Dbck.js
@@ -17,6 +17,8 @@
            active: 0,
            show: false,
            actions: [],
            ItemDetail: [],
            scanInfo: { barcodeNum: "", splitNum: "", barcode: "" },
        }
    },
    mounted() {
@@ -82,22 +84,30 @@
                .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 = "";
                    }
                    else {
                        that.$toast.fail(json.message);
                        that.$refs.billNo.focus();
                        that.billNo = "";
                        that.ItemDetail = null;
                    }
                    that.isLoading = false;
                })
                .catch(function (error) {
                    that.isLoading = false;
                    that.$toast.fail("网络错误,请重试!");
                    console.log(error);
                    that.$refs.billNo.focus();
                    that.billNo = "";
                    that.ItemBlDetail = null;
                    //console.log(error);
                });
        },
        getBarcode(value) {
        getScan() {
            this.barcode = value;
            //this.barcode = value;
            var that = this;
            that.isLoading = true;
@@ -129,75 +139,103 @@
                    var json = res;
                    if (json.status == 0) {
                        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.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);
                        that.$refs.barcode.focus();
                        that.barcode = "";
                    }
                    that.isLoading = false;
                })
                .catch(function (error) {
                    that.isLoading = false;
                    that.$toast.fail("网络错误,请重试!");
                    console.log(error);
                    //console.log(error);
                    that.$refs.barcode.focus();
                    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');
                });
        }
        },
    }
})