|
|
@@ -1,8 +1,6 @@
|
|
|
package com.ygtx.gxt.service.impl;
|
|
|
|
|
|
-import com.github.pagehelper.Constant;
|
|
|
import com.ygtx.common.constant.Constants;
|
|
|
-import com.ygtx.common.constant.UserConstants;
|
|
|
import com.ygtx.common.utils.SecurityUtils;
|
|
|
import com.ygtx.gxt.domain.*;
|
|
|
import com.ygtx.gxt.mapper.GxtOrderScoreMapper;
|
|
|
@@ -423,7 +421,7 @@ public class GxtOrderScoreServiceImpl implements IGxtOrderScoreService {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public List<OrderScoreInfo> selectMobileUnionOrderList(GxtRepairOrder repairOrder, GxtWorkOrder workOrder) {
|
|
|
+ public List<OrderScoreInfo> selectMobileUnionOrderList(GxtRepairOrder repairOrder, GxtWorkOrder workOrder, String keyword) {
|
|
|
// 添加业务特定的数据权限过滤
|
|
|
addBusinessDataScopeFilter(repairOrder, workOrder);
|
|
|
|
|
|
@@ -438,7 +436,7 @@ public class GxtOrderScoreServiceImpl implements IGxtOrderScoreService {
|
|
|
}
|
|
|
}
|
|
|
// 查询工单列表
|
|
|
- List<OrderScoreInfo> orderList = gxtOrderScoreMapper.selectMobileUnionOrderList(repairOrder, workOrder);
|
|
|
+ List<OrderScoreInfo> orderList = gxtOrderScoreMapper.selectMobileUnionOrderList(repairOrder, workOrder,keyword);
|
|
|
return orderList;
|
|
|
}
|
|
|
|