Browse Source

Ermögliche Post-Processing #18

master
Daniel Quathamer 2 weeks ago
parent
commit
b83c1d987b
  1. 7
      src-modules/module/rpta/schluesseltabellen/fm_templates.unl

7
src-modules/module/rpta/schluesseltabellen/fm_templates.unl

@ -267,7 +267,7 @@ drop TABLE tmp_rpta_column_layout;\
drop TABLE tmp_rpta_column2layout;\ drop TABLE tmp_rpta_column2layout;\
</#macro>\ </#macro>\
\ \
<#macro rpta_interpret_column_layout nonvirtualTableFilter removeEmptyLines="true">\ <#macro rpta_interpret_column_layout nonvirtualTableFilter removeEmptyLines="true" postProcessing="false">\
<#assign columnLayoutHasTreeColumn=0 />\ <#assign columnLayoutHasTreeColumn=0 />\
select '${removeEmptyLines}';\ select '${removeEmptyLines}';\
\ \
@ -517,6 +517,7 @@ select '${removeEmptyLines}';\
</#if>\ </#if>\
</#foreach>\ </#foreach>\
<#assign colnr=0 />\ <#assign colnr=0 />\
<#if postProcessing=="false">\
select \ select \
<#foreach column in columns>\ <#foreach column in columns>\
<#if column.is_visible!=0>\ <#if column.is_visible!=0>\
@ -555,12 +556,14 @@ select '${removeEmptyLines}';\
</#list>\ </#list>\
</#if>\ </#if>\
;\ ;\
\ </#if>\
<#if basetable.is_virtual==1>\ <#if basetable.is_virtual==1>\
drop table if exists ${basetable.runtime_tablename};\ drop table if exists ${basetable.runtime_tablename};\
</#if>\ </#if>\
drop table if exists tmp_stud;\ drop table if exists tmp_stud;\
<#if postProcessing=="false">\
drop table if exists tmp_stud2;\ drop table if exists tmp_stud2;\
</#if>\
drop table if exists tmp_gesamt;\ drop table if exists tmp_gesamt;\
\ \
</#macro>\ </#macro>\

Loading…
Cancel
Save