|
|
|
@ -122,7 +122,7 @@
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import A from "../../plugins/KeyScaner"
|
|
|
|
|
import {updateStatus, enterCodeWeb} from "@/api/inout/order";
|
|
|
|
|
import {updateStatus, enterCodeWeb, thirdUpdateStatus} from "@/api/inout/order";
|
|
|
|
|
import {getAcceptOrder, acceptClear, acceptAddCode} from "@/api/inout/acceptOrder";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -137,6 +137,11 @@ export default {
|
|
|
|
|
type: Object,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
reviewType: {
|
|
|
|
|
type: Object,
|
|
|
|
|
required: true,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
@ -255,7 +260,7 @@ export default {
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
}else {
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.success("匹配成功!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -285,19 +290,38 @@ export default {
|
|
|
|
|
let query = {
|
|
|
|
|
orderId: this.orderQuery.billNo,
|
|
|
|
|
};
|
|
|
|
|
updateStatus(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.$message.success("验收成功!");
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
this.$emit('childByValue', 1)
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
if (this.reviewType != null && this.reviewType == 2) {
|
|
|
|
|
thirdUpdateStatus(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.$message.success("验收成功!");
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
this.$emit('childByValue', 1)
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
updateStatus(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.$message.success("验收成功!");
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
this.$emit('childByValue', 1)
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
// this.$message.info('回退失败');
|
|
|
|
|
});
|
|
|
|
|