Commit 44e8abeb authored by zhengyi's avatar zhengyi

Merge branch 'release-fix' into dev

parents 55eded11 98a18787
...@@ -616,6 +616,14 @@ public class OrderQueryVO { ...@@ -616,6 +616,14 @@ public class OrderQueryVO {
} }
} }
} }
public void setStatusList(List<Integer> statusList) {
this.asStatusList = statusList;
if (CollectionUtil.isNotEmpty(this.asStatusList)) {
for (Integer asStatus : asStatusList) {
combinedStateList(asStatus, this.transportId);
}
}
}
public void setTransportId(Integer transportId) { public void setTransportId(Integer transportId) {
this.transportId = transportId; this.transportId = transportId;
...@@ -725,7 +733,7 @@ public class OrderQueryVO { ...@@ -725,7 +733,7 @@ public class OrderQueryVO {
this.airShipmentList.add(1); this.airShipmentList.add(1);
this.auditTypeList.add(0); this.auditTypeList.add(0);
this.abnormalStateList.add(0); this.abnormalStateList.add(0);
this.transportId = 3; // 空运待出查询,只查空运的订单 // this.transportId = 3; // 空运待出查询,只查空运的订单
break; break;
case 10502: case 10502:
// 空运可出 // 空运可出
...@@ -737,7 +745,7 @@ public class OrderQueryVO { ...@@ -737,7 +745,7 @@ public class OrderQueryVO {
} }
this.statusList.add(5); this.statusList.add(5);
this.airShipmentList.add(12); this.airShipmentList.add(12);
this.transportId = 3; // 空运待出查询,只查空运的订单 // this.transportId = 3; // 空运待出查询,只查空运的订单
break; break;
case 10503: case 10503:
// 空运已备货 // 空运已备货
...@@ -749,7 +757,7 @@ public class OrderQueryVO { ...@@ -749,7 +757,7 @@ public class OrderQueryVO {
} }
this.statusList.add(5); this.statusList.add(5);
this.airShipmentList.add(4); this.airShipmentList.add(4);
this.transportId = 3; // 空运待出查询,只查空运的订单 // this.transportId = 3; // 空运待出查询,只查空运的订单
break; break;
case 10504: case 10504:
// 待排单 // 待排单
...@@ -825,6 +833,11 @@ public class OrderQueryVO { ...@@ -825,6 +833,11 @@ public class OrderQueryVO {
this.shipmentStateList.add(428); this.shipmentStateList.add(428);
this.transportId = 3; // 空运待出查询,只查空运的订单 this.transportId = 3; // 空运待出查询,只查空运的订单
break; break;
default:
if (Objects.isNull(this.statusList)){
this.statusList = new ArrayList<>();
this.statusList.add(asStatus);
}
} }
} }
......
...@@ -2642,7 +2642,7 @@ ...@@ -2642,7 +2642,7 @@
or o.`cargo_control_status` = 1 AND (select count(1) from ecw_order_cargo_control_pick ccp2 where ccp2.order_id = o.order_id and ccp2.status = 1) > 0 or o.`cargo_control_status` = 1 AND (select count(1) from ecw_order_cargo_control_pick ccp2 where ccp2.order_id = o.order_id and ccp2.status = 1) > 0
</when> </when>
<otherwise> <otherwise>
or o.`cargo_control_status` = #{query.cargoControlStatus} or o.`cargo_control_status` = #{cargoControlStatus}
</otherwise> </otherwise>
</choose> </choose>
</foreach> </foreach>
......
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