Commit d5505982 authored by zhengyi's avatar zhengyi

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

parent 2bf4ba5d
......@@ -1348,7 +1348,7 @@ export default {
this.noConsignee = false
}
// 如果订单无收货人,但是最新的发货人不允许无收货人则重置状态
if (this.noConsignee && !this.hasConsignee) {
if (!this.noConsignee && !this.hasConsignee) {
// 最新的发货人不允许无收货人,则重置为有收货人
this.hasConsignee = true
}
......
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