Merge pull request #4210 from dataease/pr@dev@fix_excel_releation

fix(血源分析): 优化血源关系查询结果
This commit is contained in:
maninhill
2022-12-27 12:27:17 +08:00
committed by GitHub
3 changed files with 5 additions and 2 deletions

View File

@@ -234,6 +234,7 @@
group by sa.auth_source
) pg_auth on pg_auth.id = pg.id
where dt.id=#{datasetId,jdbcType=VARCHAR}
group by id,panel_id
order by id
</select>
</mapper>

View File

@@ -239,6 +239,7 @@
group by sa.auth_source
) pg_auth on pg_auth.id = pg.id
where ds.id=#{datasourceId,jdbcType=VARCHAR}
group by id,panel_id
order by id
</select>
</mapper>

View File

@@ -285,7 +285,7 @@
)
group by sa.auth_source
) dt_auth on dt.id = dt_auth.id
join datasource ds on dt.data_source_id = ds.id
left join datasource ds on dt.data_source_id = ds.id
left join
(
select
@@ -318,7 +318,8 @@
group by sa.auth_source
) ds_auth on ds_auth.id = ds.id
where pg.id=#{panelId,jdbcType=VARCHAR}
group by dt.id
group by id,dt_id
order by id
</select>
<select id="listPanelByUser" resultType="io.dataease.plugins.common.base.domain.PanelGroup"