发票优化

pro
wangwei 2 years ago
parent 6ee57130ea
commit 3cc66c41e0

@ -294,7 +294,7 @@ export default {
required: true,
},
getOrderDetails: {
type: Object,
type: Function,
required: true,
},
invoiceRow: {
@ -519,6 +519,7 @@ export default {
.then((response) => {
if (response.code === 20000) {
this.statusCode = response.code;
this.getOrderDetails();
} else {
this.$message.error(response.message);
}

@ -460,6 +460,7 @@
<checkInvoice
:closeDialog="closecheckInvoice"
:input="inputInv"
:getOrderDetails="getOrderDetails"
></checkInvoice>
</el-dialog>
@ -835,6 +836,9 @@ export default {
deleteById(row)
.then((response) => {
if (response.code == 20000) {
if(response.data.length == 0){
this.getList();
}
this.getBizDetailListInv(this.subRow);
this.$message({
type: "success",
@ -1015,7 +1019,7 @@ export default {
}
this.codeQuery.orderIdFk = this.currentRow.billNo;
this.codeDetailLoading = true;
this.codeDetailList=[];
filterBizOrderList(this.codeQuery).then((res) => {
this.codeDetailLoading = false;
if (res.code === 20000) {

Loading…
Cancel
Save