Browse Source

Bugfix Install #1

master
Daniel Quathamer 3 weeks ago
parent
commit
c1a15baaf6
  1. 9
      src-modules/module/xcube/schluesseltabellen/sx_stylesheets_einfuegen.sql
  2. 2
      src-modules/module/xcube/schluesseltabellen/xcube_install.sql

9
src-modules/module/xcube/schluesseltabellen/sx_stylesheets_einfuegen.sql

@ -11,7 +11,6 @@ delete from sx_mask_style where maskeninfo_id=21000 and stylesheet_id in (select
-- Mask Style füllen -- Mask Style füllen
--#################################################################################################### --####################################################################################################
create temp table tmp_mask_style ( create temp table tmp_mask_style (
tid serial not null,
maskeninfo_id INTEGER , maskeninfo_id INTEGER ,
stylesheet_id INTEGER , stylesheet_id INTEGER ,
ord SMALLINT, ord SMALLINT,
@ -22,15 +21,15 @@ delete from tmp_hilf;
insert into tmp_hilf select max(tid) from sx_mask_style; insert into tmp_hilf select max(tid) from sx_mask_style;
update tmp_hilf set tid=1 where tid is null; update tmp_hilf set tid=1 where tid is null;
insert into tmp_mask_style (tid,maskeninfo_id,ord,filename) insert into tmp_mask_style (maskeninfo_id,ord,filename)
select max(tid)+1,21000,10,'tabelle_html_viz.xsl' from tmp_hilf select 21000,10,'tabelle_html_viz.xsl' from tmp_hilf
where 0< (select count(*) from sx_stylesheets where filename='tabelle_html_viz.xsl'); where 0< (select count(*) from sx_stylesheets where filename='tabelle_html_viz.xsl');
update tmp_mask_style set stylesheet_id=(select max(tid) from sx_stylesheets where filename='tabelle_html_viz.xsl') update tmp_mask_style set stylesheet_id=(select max(tid) from sx_stylesheets where filename='tabelle_html_viz.xsl')
where filename='tabelle_html_viz.xsl'; where filename='tabelle_html_viz.xsl';
insert into sx_mask_style ( tid, maskeninfo_id, stylesheet_id, ord) insert into sx_mask_style ( maskeninfo_id, stylesheet_id, ord)
SELECT tid, maskeninfo_id, stylesheet_id, ord SELECT maskeninfo_id, stylesheet_id, ord
FROM tmp_mask_style; FROM tmp_mask_style;
drop table tmp_mask_style; drop table tmp_mask_style;

2
src-modules/module/xcube/schluesseltabellen/xcube_install.sql

@ -336,7 +336,7 @@
"foreignkey_col":"apnr", "foreignkey_col":"apnr",
"foreignkey_cap":"name", "foreignkey_cap":"name",
"foreignkey_cond":"id='fssemzahl'", "foreignkey_cond":"id='fssemzahl'",
"attrib_nachbearbeitung": "update <<tmp_table>> set <<col>>=<<col>>::numeric(10,2)::integer::char where <<col>>::numeric(10,2) < 11.00;update <<tmp_table>> set <<col>>='99' where <<col>>::numeric(10,2) >= 11.00", "attrib_nachbearbeitung": "update <<tmp_table>> set <<col>>=decval(<<col>>)::integer where <<col>>::numeric(10,2) < 11.00;update <<tmp_table>> set <<col>>='99' where <<col>>::numeric(10,2) >= 11.00",
"sortfield":"sort1"}, "sortfield":"sort1"},
{"maskeninfo_id":21100, {"maskeninfo_id":21100,
"name":"pstatus", "name":"pstatus",

Loading…
Cancel
Save