Fix that when the timing data is not configured with environmental information, the timing management does not display the data. (#13339)

This commit is contained in:
Kerwin 2023-01-05 12:15:02 +08:00 committed by GitHub
parent a074f7e2e6
commit fde2c8073e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@
join t_ds_process_definition p_f on s.process_definition_code = p_f.code
join t_ds_project as p on p_f.project_code = p.code
join t_ds_user as u on s.user_id = u.id
join t_ds_environment as e on s.environment_code = e.code
left join t_ds_environment as e on s.environment_code = e.code
where 1=1
<if test="processDefinitionCode != 0">
and s.process_definition_code = #{processDefinitionCode}