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

Loading…
Cancel
Save