|
|
|
@ -493,7 +493,7 @@ export default {
|
|
|
|
|
1: '确认',
|
|
|
|
|
0: '未确认'
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
cowEn:null,
|
|
|
|
|
//产品信息汇总相关参数
|
|
|
|
|
productDetailLoading: false,
|
|
|
|
|
productDetailList: [],
|
|
|
|
@ -680,6 +680,8 @@ export default {
|
|
|
|
|
// this.resultDetailList = [];
|
|
|
|
|
},
|
|
|
|
|
handleInvoiceChange(val) {
|
|
|
|
|
debugger
|
|
|
|
|
this.cowEn=val;
|
|
|
|
|
this.getOrderList(val)
|
|
|
|
|
this.getProductDetailList(val)
|
|
|
|
|
},
|
|
|
|
@ -688,11 +690,11 @@ export default {
|
|
|
|
|
getProductDetailList(row) {
|
|
|
|
|
this.productDetailLoading = true
|
|
|
|
|
this.productDetailList = []
|
|
|
|
|
if (row == null || isBlank(row.invoiceEncode)) {
|
|
|
|
|
if (this.cowEn == null || isBlank(this.cowEn.invoiceEncode)) {
|
|
|
|
|
this.$message.error('请选择对应发票!')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
this.productQuery.invoiceEncode = row.invoiceEncode
|
|
|
|
|
this.productQuery.invoiceEncode = this.cowEn.invoiceEncode
|
|
|
|
|
productDetail(this.productQuery).then((res) => {
|
|
|
|
|
this.productDetailLoading = false
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|