|
|
|
@ -126,6 +126,8 @@
|
|
|
|
|
<el-select v-model="formData.shipper" placeholder="请选择发货方" clearable
|
|
|
|
|
:disabled="formData.billNo"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
@change="changeShipper"
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in invList"
|
|
|
|
@ -1008,6 +1010,7 @@ export default {
|
|
|
|
|
fromCorp: this.formData.fromCorp,
|
|
|
|
|
fromCorpName: this.formData.fromCorpName,
|
|
|
|
|
shipper: this.formData.invCode,
|
|
|
|
|
shipperName: this.formData.shipperName,
|
|
|
|
|
billNo: this.formData.billNo,
|
|
|
|
|
code: this.filterQuery.code.trim(),
|
|
|
|
|
insert: this.formData.insert,
|
|
|
|
@ -1419,6 +1422,10 @@ export default {
|
|
|
|
|
let corp = this.fromInvOptions.find(item => item.code === this.formData.fromCorp);
|
|
|
|
|
this.formData.fromCorpName = corp.name
|
|
|
|
|
},
|
|
|
|
|
changeShipper(){
|
|
|
|
|
let corp = this.invList.find(item => item.code === this.formData.shipper);
|
|
|
|
|
this.formData.shipperName = corp.name
|
|
|
|
|
},
|
|
|
|
|
//处理事件
|
|
|
|
|
handleRecCodesEvent(event) {
|
|
|
|
|
console.log('接收 recCodes event:', event.detail.recCodes);
|
|
|
|
|