mirror of
https://gitee.com/fit2cloud-feizhiyun/MeterSphere.git
synced 2024-12-04 21:19:52 +08:00
fix(系统设置): 修复任务中心筛选有问题的缺陷
--bug=1038927 --user=王孝刚 【项目任务中心】实时任务-接口用例-模糊搜索内容不正确 https://www.tapd.cn/55049933/s/1492239
This commit is contained in:
parent
2022245d00
commit
6bfe966372
@ -161,6 +161,11 @@
|
||||
CASE
|
||||
WHEN api_report.integrated = 0 THEN
|
||||
c.num ELSE api_report.id
|
||||
END AS resourceNum,
|
||||
|
||||
CASE
|
||||
WHEN api_report.integrated = 0 THEN
|
||||
c.id ELSE api_report.id
|
||||
END AS resourceId,
|
||||
|
||||
CASE
|
||||
@ -182,9 +187,10 @@
|
||||
#{projectId}
|
||||
</foreach>
|
||||
<if test="request.keyword != null and request.keyword != ''">
|
||||
and (
|
||||
api_report.name like concat('%', #{request.keyword},'%')
|
||||
or c.name like concat('%', #{request.keyword},'%')
|
||||
and ( (api_report.name like concat('%', #{request.keyword},'%')
|
||||
and c.name like concat('%', #{request.keyword},'%'))
|
||||
or (api_report.id like concat('%', #{request.keyword},'%')
|
||||
and c.num like concat('%', #{request.keyword},'%'))
|
||||
)
|
||||
</if>
|
||||
<include refid="filters">
|
||||
|
@ -152,13 +152,18 @@
|
||||
CASE
|
||||
WHEN api_scenario_report.integrated = 0 THEN
|
||||
s.num ELSE api_scenario_report.id
|
||||
END AS resourceId,
|
||||
END AS resourceNum,
|
||||
|
||||
CASE
|
||||
WHEN api_scenario_report.integrated = 0 THEN
|
||||
s.NAME ELSE api_scenario_report.NAME
|
||||
END AS resourceName,
|
||||
|
||||
CASE
|
||||
WHEN api_scenario_report.integrated = 0 THEN
|
||||
s.id ELSE api_scenario_report.id
|
||||
END AS resourceId,
|
||||
|
||||
t.name as poolName
|
||||
from api_scenario_report
|
||||
left join api_scenario_record a on api_scenario_report.id = a.api_scenario_report_id
|
||||
@ -173,8 +178,10 @@
|
||||
</foreach>
|
||||
<if test="request.keyword != null and request.keyword != ''">
|
||||
and (
|
||||
api_scenario_report.name like concat('%', #{request.keyword},'%')
|
||||
or s.name like concat('%', #{request.keyword},'%')
|
||||
(api_scenario_report.name like concat('%', #{request.keyword},'%')
|
||||
and s.name like concat('%', #{request.keyword},'%'))
|
||||
or (api_scenario_report.id like concat('%', #{request.keyword},'%')
|
||||
and s.num like concat('%', #{request.keyword},'%'))
|
||||
)
|
||||
</if>
|
||||
<include refid="filters">
|
||||
|
@ -31,6 +31,9 @@ public class TaskCenterDTO implements Serializable {
|
||||
@Schema(description = "资源Id 单独报告显示模块业务id 集合报告显示报告id")
|
||||
private String resourceId;
|
||||
|
||||
@Schema(description = "资源编号 单独报告显示模块编号 集合报告显示报告编号")
|
||||
private String resourceNum;
|
||||
|
||||
@Schema(description = "资源名称 单独报告显示模块名称 集合报告显示报告名称")
|
||||
private String resourceName;
|
||||
|
||||
|
@ -50,7 +50,7 @@
|
||||
and (
|
||||
task.resource_name like concat('%', #{request.keyword},'%')
|
||||
or
|
||||
task.resource_id like concat('%', #{request.keyword},'%')
|
||||
task.resource_num like concat('%', #{request.keyword},'%')
|
||||
)
|
||||
</if>
|
||||
<include refid="taskCenterScheduleFilters">
|
||||
|
@ -13,6 +13,7 @@ import io.metersphere.system.dto.taskcenter.TaskCenterScheduleDTO;
|
||||
import io.metersphere.system.dto.taskcenter.enums.ScheduleTagType;
|
||||
import io.metersphere.system.dto.taskcenter.request.TaskCenterSchedulePageRequest;
|
||||
import io.metersphere.system.mapper.*;
|
||||
import io.metersphere.system.schedule.BaseScheduleJob;
|
||||
import io.metersphere.system.schedule.ScheduleService;
|
||||
import io.metersphere.system.utils.PageUtils;
|
||||
import io.metersphere.system.utils.Pager;
|
||||
@ -206,7 +207,7 @@ public class TaskCenterService {
|
||||
schedule.setEnable(!schedule.getEnable());
|
||||
scheduleService.editSchedule(schedule);
|
||||
scheduleService.addOrUpdateCronJob(schedule, new JobKey(schedule.getKey(), schedule.getJob()),
|
||||
new TriggerKey(schedule.getKey(),schedule.getJob()), schedule.getJob().getClass());
|
||||
new TriggerKey(schedule.getKey(),schedule.getJob()), BaseScheduleJob.class);
|
||||
|
||||
|
||||
}
|
||||
|
@ -5,6 +5,7 @@ export interface RealTaskCenterApiCaseItem {
|
||||
projectId: string;
|
||||
id: string;
|
||||
resourceId: string;
|
||||
resourceNum: number; // 资源业务id
|
||||
resourceName: string; // 资源名称 单独报告显示模块名称 集合报告显示报告名称
|
||||
triggerMode: string; // 触发模式(手动,定时,批量,测试计划)
|
||||
poolName: string; // 资源池名称
|
||||
|
@ -193,8 +193,8 @@
|
||||
const columns: MsTableColumn = [
|
||||
{
|
||||
title: 'project.taskCenter.resourceID',
|
||||
dataIndex: 'resourceId',
|
||||
slotName: 'resourceId',
|
||||
dataIndex: 'resourceNum',
|
||||
slotName: 'resourceNum',
|
||||
width: 200,
|
||||
showTooltip: true,
|
||||
showDrag: false,
|
||||
|
Loading…
Reference in New Issue
Block a user