发票价格不匹配时 状态是未登记

pro
wangwei 2 years ago
parent d720668a63
commit faf8e0521f

@ -510,7 +510,7 @@ export default {
type: "warning",
})
.then(() => {
this.postInvoice();
this.postInvoice("key");
})
.catch(() => {
});
@ -522,7 +522,7 @@ export default {
},
postInvoice() {
postInvoice(val) {
insertInvoice(this.inputQuery)
.then((response) => {
if (response.code === 20000) {
@ -537,7 +537,11 @@ export default {
});
//
updateorderBiz(this.inputQuery.list).then((res) => {
let param={
list:this.inputQuery.list,
key:val
}
updateorderBiz(param).then((res) => {
this.closeDialog();
});
},

Loading…
Cancel
Save