|
|
@@ -399,8 +399,9 @@ public class LawyerClientConsultationOrderServiceImpl extends ServiceImpl<Lawyer
|
|
|
} else {
|
|
|
// 默认查询非待支付的订单
|
|
|
Integer waitPayStatus = LawyerStatusEnum.WAIT_PAY.getStatus();
|
|
|
- queryWrapper.notIn("lco.order_status", Collections.singletonList(
|
|
|
- String.valueOf(waitPayStatus)));
|
|
|
+ Integer cancelStatus = LawyerStatusEnum.CANCEL.getStatus();
|
|
|
+ queryWrapper.notIn("lco.order_status", Arrays.asList(
|
|
|
+ String.valueOf(cancelStatus), String.valueOf(waitPayStatus)));
|
|
|
}
|
|
|
|
|
|
// 律师ID条件
|