处理单据

yanshishuju
yewj 7 months ago
parent de663da475
commit a89c74d555

@ -15,13 +15,13 @@
<el-button-group> <el-button-group>
<el-button <el-button
type="primary" type="primary"
:disabled="formData.billNo" :disabled="formData.billNo || (this.formDataVisible != null && this.formDataVisible.scanType == 1)"
@click.native="nextCollectOrder()" @click.native="nextCollectOrder()"
>下一单 >下一单
</el-button> </el-button>
<el-button <el-button
type="primary" type="primary"
:disabled="formData.billNo" :disabled="formData.billNo ||(this.formDataVisible != null && this.formDataVisible.scanType == 1)"
@click.native="selectPrescribe()" @click.native="selectPrescribe()"
>选单 >选单
</el-button> </el-button>
@ -113,8 +113,8 @@
<!-- </el-col>--> <!-- </el-col>-->
<el-col :span="6"> <el-col :span="6">
<el-form-item prop="locInvCode" label="发货方:"> <el-form-item prop="locInvCode" label="发货方:">
<el-select v-model="formData.invCode" placeholder="请选择发货方" clearable <el-select v-model="formData.shipper" placeholder="请选择发货方" clearable
disabled :disabled="formData.billNo"
style="width: 90%" style="width: 90%"
> >
<el-option <el-option
@ -132,6 +132,7 @@
<el-form-item class="query-form-item" label="收货方"> <el-form-item class="query-form-item" label="收货方">
<el-select v-model="formData.fromCorp" <el-select v-model="formData.fromCorp"
filterable filterable
:disabled="formData.billNo"
remote remote
reserve-keyword reserve-keyword
@change="changeCorp" @change="changeCorp"
@ -178,9 +179,9 @@
style="margin-left: 15px" style="margin-left: 15px"
> >
</el-button> </el-button>
<!-- :disabled="!formData.billNo || (this.formDataVisible != null && this.formDataVisible.scanType == 1)"-->
<el-button type="primary" <el-button type="primary"
:disabled="!formData.billNo" @click="addGs">ALT+29 @click="addGs">ALT+29
</el-button> </el-button>
<el-button <el-button
type="primary" type="primary"
@ -664,12 +665,11 @@ export default {
getInputFocus(event) { getInputFocus(event) {
event.currentTarget.select(); event.currentTarget.select();
``
}, },
enterKey() { enterKey() {
if (this.formData.billNo == null) { if (this.formData.billNo == null && (this.formDataVisible === null || this.formDataVisible.scanType != 1)) {
this.enterBillNoKey() this.enterBillNoKey()
return; return;
} }
@ -851,6 +851,8 @@ export default {
let tagQuery = { let tagQuery = {
workPlaceCode: this.formData.workPlaceCode, workPlaceCode: this.formData.workPlaceCode,
fromCorp: this.formData.fromCorp, fromCorp: this.formData.fromCorp,
fromCorpName: this.formData.fromCorpName,
shipper: this.formData.invCode,
billNo: this.formData.billNo, billNo: this.formData.billNo,
code: this.filterQuery.code.trim(), code: this.filterQuery.code.trim(),
insert: this.formData.insert, insert: this.formData.insert,
@ -1219,7 +1221,7 @@ export default {
}) })
}, },
changeCorp() { changeCorp() {
let corp = this.fromInvOptions.find(item => item.erpId === this.formData.fromCorp); let corp = this.fromInvOptions.find(item => item.code === this.formData.fromCorp);
this.formData.fromCorpName = corp.name this.formData.fromCorpName = corp.name
}, },
// //
@ -1257,6 +1259,8 @@ export default {
billNo: this.formData.billNo, billNo: this.formData.billNo,
insert: this.formData.insert, insert: this.formData.insert,
busType: this.formData.busType, busType: this.formData.busType,
fromCorpName: this.formData.fromCorpName,
invCode: this.formData.invCode,
} }
orderbatchAddCode(params2).then((res) => { orderbatchAddCode(params2).then((res) => {
if (res.code === 20000) { if (res.code === 20000) {

Loading…
Cancel
Save