6 Commits
main ... DB18

Author SHA1 Message Date
Jos Groot Lipman
8084d9e6a9 Had voor UWVA#26771 gecommit moeten zijn
svn path=/Database/branches/DB18/; revision=19524
2013-10-17 15:03:00 +00:00
Peter Feij
bcbe19b868 UWVA#26771 backoffice_contact werd toch niet-concise gebruikt, moet dus terug
svn path=/Database/branches/DB18/; revision=18090
2013-06-04 15:23:07 +00:00
Jos Groot Lipman
4262055e51 DB18a
svn path=/Database/branches/DB18/; revision=17886
2013-05-10 08:19:50 +00:00
Jos Groot Lipman
6b0966c286 FSN#26538 Geen CONTINUE voor Oracle 10g
svn path=/Database/branches/DB18/; revision=17864
2013-05-07 12:12:49 +00:00
Jos Groot Lipman
8f66ca44e2 FSN#26422: uit trunk: S("can_selfapprove") bedrag laten zijn ipv. boolean.
svn path=/Database/branches/DB18/; revision=17862
2013-05-07 11:54:40 +00:00
Jos Groot Lipman
d52d4ba18b Branch voor DB18a in wording
svn path=/Database/branches/DB18/; revision=17861
2013-05-07 11:48:39 +00:00
3 changed files with 30 additions and 21 deletions

View File

@@ -3949,7 +3949,7 @@ AS
create_mld_typeopdr_node (v_typeopdr_key);
create_prs_perslid_node (v_prs_perslid_key,
'backoffice_contact',
TRUE);
FALSE);
create_mld_uitvoerende_node (v_mld_uitvoerende_keys, 'uitvoerende');
create_prs_contactpersoon_node (v_prs_contactpersoon_key);
create_factuuradres_node (p_key);
@@ -6505,27 +6505,26 @@ AS
FOR c IN colsql
LOOP
IF SUBSTR(c.column_name, 1, 7) = 'FCLT_3D' THEN
CONTINUE; -- Die willen we niet in de XML
END IF;
IF nrcols > 0
THEN
cols := cols || ', ';
END IF;
IF SUBSTR(c.column_name, 1, 7) <> 'FCLT_3D' THEN -- Die willen we niet in de XML
IF nrcols > 0
THEN
cols := cols || ', ';
END IF;
IF c.data_type = 'DATE'
THEN
cols :=
cols
|| 'TO_CHAR('
|| c.column_name
|| ',''yyyy-mm-dd"T"hh24:mi:ss'') '
|| c.column_name;
ELSE
cols := cols || c.column_name;
END IF;
IF c.data_type = 'DATE'
THEN
cols :=
cols
|| 'TO_CHAR('
|| c.column_name
|| ',''yyyy-mm-dd"T"hh24:mi:ss'') '
|| c.column_name;
ELSE
cols := cols || c.column_name;
END IF;
nrcols := nrcols + 1;
nrcols := nrcols + 1;
END IF;
END LOOP;
IF cols = ''

View File

@@ -62,7 +62,7 @@ PROJEXE=z:\Project\FACILITOR\BUILD
##
CURRENTVERSION=17
NEXTVERSION=18
FILEVERSION=
FILEVERSION=b
NEXTCAREVERSION=23
NEXTROOT=DB$(NEXTVERSION)$(FILEVERSION)
CURRENTUPDATE=DB$(CURRENTVERSION)to$(NEXTVERSION)

View File

@@ -620,6 +620,16 @@ UPDATE fac_setting
/////////////////////////////////////////////////////////////////////////////////////////// FSN#24771
DEF_BOOKMARK('bestelopdr', 'appl/bes/bes_opdr.asp', 'ordernr=');
/////////////////////////////////////////////////////////////////////////////////////////// FSN#26422
UPDATE fac_setting
SET fac_setting_default = '9999999'
, fac_setting_description = 'I can approve myself below or equal this limit or someone else must approve always above this limit'
, fac_setting_pvalue = (CASE fac_setting_pvalue
WHEN '1'
THEN '9999999'
ELSE fac_setting_pvalue
END)
WHERE fac_setting_name LIKE 'can_selfapprove';
/////////////////////////////////////////////////////////////////////////////////////////// QA
-- detected using TOAD schema differences not all relevant, however the first are