FSN#19199

svn path=/Database/trunk/; revision=10530
This commit is contained in:
Peter Feij
2010-11-19 16:56:04 +00:00
parent c7b752fc8e
commit dec5f9aa47

View File

@@ -1,5 +1,5 @@
/* $Revision: 201 $
* $Modtime: 18-11-10 16:46 $
/* $Revision: 202 $
* $Modtime: 19-11-10 18:54 $
*/
/*
@@ -2098,7 +2098,13 @@ CREATE OR REPLACE PACKAGE BODY fac AS
IF lmode > 0
THEN
-- Stuur notificatie
-- Stuur notificatie, als soms meerdere regels is dan alleen eerste regel
-- Empirisch gebleken dat chr(10) wel wat doet, en chr(13) niet echt
-- hangt dat van iets af? Moeten we dan misschien allebei doen?
IF INSTR(soms, CHR(10)) > 0
THEN
soms := SUBSTR(soms, 1, INSTR (soms, CHR(10)) - 1);
END IF;
INSERT INTO fac_notificatie (fac_srtnotificatie_key,
fac_notificatie_status,
prs_perslid_key_sender,
@@ -3159,4 +3165,4 @@ CREATE OR REPLACE PACKAGE BODY fac AS
END fac;
/
REGISTERRUN('$Workfile: FAC_PAC.SRC $','$Revision: 201 $')
REGISTERRUN('$Workfile: FAC_PAC.SRC $','$Revision: 202 $')