Commit 99f91997 authored by neo's avatar neo

[DEV] fixed bb query cell data template query

parent 41ec5b7d
......@@ -27,7 +27,15 @@ public interface FormulaAdminMapper extends MyMapper {
" JOIN " +
" cell_template ON template.id = cell_template.report_template_id " +
"WHERE " +
" template.template_group_id = #{groupId}")
" template.id IN ( " +
" SELECT " +
" ID " +
" FROM " +
" TEMPLATE " +
" WHERE " +
" TEMPLATE_GROUP_ID = #{groupId} " +
" AND IS_ACTIVE_ASSOCIATION = 1 " +
" )")
List<CellTemplatePerGroupDto> getCellTemplatePerGroupDto(@Param("groupId") Long groupId);
......
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