|
|
|
@ -141,7 +141,7 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<!-- :label="this.formDataVisible.unitTittle + ':'"-->
|
|
|
|
|
<el-form-item class="query-form-item" label="收货方">
|
|
|
|
|
<el-form-item class="query-form-item" label="收货方:">
|
|
|
|
|
<el-select v-model="formData.fromCorp"
|
|
|
|
|
filterable
|
|
|
|
|
:disabled="formData.billNo"
|
|
|
|
@ -468,7 +468,7 @@ export default {
|
|
|
|
|
formDataVisible: {
|
|
|
|
|
scanType: null,
|
|
|
|
|
unitTittle: "往来单位",
|
|
|
|
|
corpType: 1,
|
|
|
|
|
corpType: 3,
|
|
|
|
|
},
|
|
|
|
|
curWorkPlaces: [],
|
|
|
|
|
erpList: [],
|
|
|
|
@ -631,7 +631,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
findFromInvList(val) {
|
|
|
|
|
let cQuery = {
|
|
|
|
|
corpType: this.formDataVisible.corpType,
|
|
|
|
|
corpType: 3,
|
|
|
|
|
invCode: this.formData.invCode
|
|
|
|
|
};
|
|
|
|
|
findFromCorp(cQuery)
|
|
|
|
@ -829,7 +829,7 @@ export default {
|
|
|
|
|
//todo 拆零扫码确认
|
|
|
|
|
const codeArray = this.filterQuery.code.split(";");
|
|
|
|
|
let query = {
|
|
|
|
|
orderId: this.formData.billNo,
|
|
|
|
|
billNo: this.formData.billNo,
|
|
|
|
|
codeList: codeArray
|
|
|
|
|
}
|
|
|
|
|
//更新扫码确认
|
|
|
|
@ -839,6 +839,7 @@ export default {
|
|
|
|
|
this.$message.success('确认成功')
|
|
|
|
|
this.result = ''
|
|
|
|
|
this.$refs.inputRef.focus()
|
|
|
|
|
this.$refs.inputRef.select()
|
|
|
|
|
this.getBizDetailList();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message)
|
|
|
|
@ -1048,7 +1049,6 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
saveDraftOrder() {
|
|
|
|
|
|
|
|
|
|
this.$confirm('此操作将挂起当前正在处理单据,是否继续?', '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
@ -1308,6 +1308,10 @@ export default {
|
|
|
|
|
if (!this.autoFinishOrderFlag) {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.formDataVisible.scanType == 1)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
vailOrderFinish(this.formData).then(res => {
|
|
|
|
|
this.loading = false
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
@ -1647,6 +1651,8 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
overdeleteCode() {
|
|
|
|
|
this.warnVisible = false
|
|
|
|
|
this.warnResult = "";
|
|
|
|
|
this.labelName = 1
|
|
|
|
|
this.scanStatus = null
|
|
|
|
|
this.scanTip = "扫码录入:"
|
|
|
|
|