diff --git a/src/views/emis/emisWaybill/waybillGot.vue b/src/views/emis/emisWaybill/waybillGot.vue index 11692a72..238a3650 100644 --- a/src/views/emis/emisWaybill/waybillGot.vue +++ b/src/views/emis/emisWaybill/waybillGot.vue @@ -1718,13 +1718,22 @@ methods: { } // }); // 获取企业税号 - if(['2', '4', '5'].includes(this.form.paymentType)){ // 月结 - const res = await listMonthUserAll({monthlyPayCode: this.form.custNo ,pageNum: 1,pageSize: 1,customerType:2}); + if(['2', '4', '5'].includes(this.form.paymentType) || this.form.customerType == 2){ // 月结或者月结客户 + let params = { + pageNum: 1, pageSize: 1, customerType: 2 + } + if (['2', '4', '5'].includes(this.form.paymentType)) { + params.monthlyPayCode = this.form.custNo; // 支付类型为月结 + } else { + params.customerCode = this.form.customerCode; // 月结客户下单的现金单 + } + + const res = await listMonthUserAll(params); if(res.rows.length > 0){ this.form.sender.enterpriseName = res.rows[0].enterpriseName; this.form.sender.enterpriseTaxId = res.rows[0].enterpriseTaxId; } - }else{ // 非月结 + }else{ // 非月结客户下的非月结单 if (this.form.sender.id) { const res = await getEmisCustomerAddress(this.form.sender.id); if (res.data) {