|
|
@@ -175,7 +175,8 @@ public class AdminOrderServiceImpl implements AdminOrderService {
|
|
|
String maxRole = userDomain.getUserMaxRole();
|
|
|
if (org.apache.commons.lang3.StringUtils.isNotBlank(req.getIssuedStartDate())){
|
|
|
qw.ge("issued_time",req.getIssuedStartDate());
|
|
|
- }else if(org.apache.commons.lang3.StringUtils.isNotBlank(req.getIssuedEndDate())){
|
|
|
+ }
|
|
|
+ if(org.apache.commons.lang3.StringUtils.isNotBlank(req.getIssuedEndDate())){
|
|
|
qw.le("issued_time",req.getIssuedEndDate());
|
|
|
}
|
|
|
if ("超级管理员".equals(maxRole)) {
|