Commit 68c67e50 authored by zhengyi's avatar zhengyi

如果订单无收货人,但是最新的发货人不允许无收货人则重置状态=》逻辑bug修复

parent d5505982
......@@ -1348,10 +1348,11 @@ export default {
this.noConsignee = false
}
// 如果订单无收货人,但是最新的发货人不允许无收货人则重置状态
if (!this.noConsignee && !this.hasConsignee) {
if (this.noConsignee && !this.hasConsignee) {
// 最新的发货人不允许无收货人,则重置为有收货人
this.hasConsignee = true
}
})
},
async getOrder() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment