Commit 851b34f7 authored by hanfeng's avatar hanfeng

Merge branch 'master-Member-bug-modify' into dev

parents f7e4963b 7158c49d
......@@ -120,6 +120,12 @@ public class BackStageOrderController extends CommonBaseController implements Us
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())) {
List<AppUserLogin> appUserLoins = userFeign.getOne(dto.getPhone(), dto.getRealName());
if (CollectionUtil.isNotEmpty(appUserLoins)) {
......
......@@ -359,6 +359,8 @@ public class BaseOrderController extends CommonBaseController implements UserRes
private List<String> vehicleIds;
private String oneNo;
//订单用户ID列表
private List<Integer> userIds;
......
......@@ -151,6 +151,9 @@
<if test="no != null and no != '' ">
and no like CONCAT ("%", #{no}, "%")
</if>
<if test="oneNo != null and oneNo != '' ">
and no =#{oneNo}
</if>
<if test="name != null">
and b.name like CONCAT ("%", #{name}, "%")
</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