Commit 27ff2b5e authored by hanfeng's avatar hanfeng

Merge branch 'master-Member-bug-modify'

parents 78153632 e92122e3
...@@ -120,6 +120,12 @@ public class BackStageOrderController extends CommonBaseController implements Us ...@@ -120,6 +120,12 @@ public class BackStageOrderController extends CommonBaseController implements Us
dto.setEndTime(new Date().getTime()); dto.setEndTime(new Date().getTime());
} }
} }
//车辆排班表查询订单详情
if (dto.getOneNo()!=null) {
dto.setPage(1);
dto.setLimit(1);
dto.setType(1);
}
if (StringUtils.isNotBlank(dto.getPhone()) || StringUtils.isNotBlank(dto.getRealName())) { if (StringUtils.isNotBlank(dto.getPhone()) || StringUtils.isNotBlank(dto.getRealName())) {
List<AppUserLogin> appUserLoins = userFeign.getOne(dto.getPhone(), dto.getRealName()); List<AppUserLogin> appUserLoins = userFeign.getOne(dto.getPhone(), dto.getRealName());
if (CollectionUtil.isNotEmpty(appUserLoins)) { if (CollectionUtil.isNotEmpty(appUserLoins)) {
......
...@@ -359,6 +359,11 @@ public class BaseOrderController extends CommonBaseController implements UserRes ...@@ -359,6 +359,11 @@ public class BaseOrderController extends CommonBaseController implements UserRes
private List<String> vehicleIds; private List<String> vehicleIds;
/**
* 获取一条车辆详情,需要传的订单号
*/
private String oneNo;
//订单用户ID列表 //订单用户ID列表
private List<Integer> userIds; private List<Integer> userIds;
......
...@@ -151,6 +151,9 @@ ...@@ -151,6 +151,9 @@
<if test="no != null and no != '' "> <if test="no != null and no != '' ">
and no like CONCAT ("%", #{no}, "%") and no like CONCAT ("%", #{no}, "%")
</if> </if>
<if test="oneNo != null and oneNo != '' ">
and no =#{oneNo}
</if>
<if test="name != null"> <if test="name != null">
and b.name like CONCAT ("%", #{name}, "%") and b.name like CONCAT ("%", #{name}, "%")
</if> </if>
......
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