| | |
| | | contentScrollW: 0, // 导航区宽度 |
| | | scrollLeft: 0, // 横向滚动条位置 |
| | | fullHeight: "", |
| | | sectionCode:"", |
| | | depotData: [], |
| | | ItemDetail: [], |
| | | } |
| | | }, |
| | | mounted() { |
| | |
| | | var that = this; |
| | | that.isLoading = true; |
| | | that.AxiosHttp("post", 'MesDepotSections/GetSectionName', { |
| | | sectionCode: that.formData.sectionCode |
| | | sectionCode: that.sectionCode |
| | | }, false) |
| | | .then(function (res) { |
| | | var json = res; |
| | | if (json.status == 0) { |
| | | that.formData.sectionName = json.data.tbBillList; |
| | | that.depotData = json.data.tbBillList; |
| | | that.$refs.barcode.focus(); |
| | | } |
| | | else { |
| | | that.$toast.fail(json.message); |
| | | that.formData.sectionName = ""; |
| | | that.depotData = []; |
| | | that.sectionCode = ""; |
| | | } |
| | | that.isLoading = false; |
| | | }) |
| | | .catch(function (error) { |
| | | that.isLoading = false; |
| | | that.$toast.fail("网络错误,请重试!"); |
| | | console.log(error); |
| | | that.$refs.daa001.focus(); |
| | | that.depotData = []; |
| | | that.sectionCode = ""; |
| | | that.$refs.sectionCode.focus(); |
| | | }); |
| | | }, |
| | | getScan() { |
| | |
| | | |
| | | that.isLoading = true; |
| | | that.AxiosHttp("post", 'MesInvItemInCDetails/SaveBarCodes', { |
| | | sectionCode: that.formData.sectionCode, |
| | | sectionCode: that.sectionCode, |
| | | userName: that.userInfo.loginAccount, |
| | | barcode: that.formData.barcode, |
| | | }, false) |
| | | .then(function (res) { |
| | | var json = res; |
| | | if (json.status == 0) { |
| | | that.formData.itemNo = json.data.tbBillList.itemNo; |
| | | that.formData.sumQuantity = json.data.tbBillList.sumQuantity; |
| | | |
| | | that.itemInsFormData = json.data.tbBillList.itemIns; |
| | | that.itemTableData = json.data.tbBillList.itemInDetails; |
| | | that.tableData = json.data.tbBillList.invItemInCDetails; |
| | | that.barMessage = json.data.tbBillList.message; |
| | | //that.formData.itemNo = json.data.tbBillList.itemNo; |
| | | //that.formData.sumQuantity = json.data.tbBillList.sumQuantity; |
| | | that.ItemDetail = json.data.tbBillList.itemInDetails; |
| | | //that.itemInsFormData = json.data.tbBillList.itemIns; |
| | | //that.itemTableData = json.data.tbBillList.itemInDetails;g |
| | | that.tableData = json.data.tbBillList.itemBarCDetails; |
| | | //that.barMessage = json.data.tbBillList.message; |
| | | that.$refs.barcode.focus(); |
| | | that.formData.barcode = null; |
| | | } |
| | |
| | | }); |
| | | }, |
| | | cleraCode() { |
| | | this.formData.sectionCode = null; |
| | | this.sectionCode = ""; |
| | | this.$refs.sectionCode.focus(); |
| | | }, |
| | | ToErp() { |
| | | this.Message = ""; |