AADS#45847 Database aanpassingen om notificatie adressen voor nieuwe meldingen te realiseren

svn path=/Database/trunk/; revision=36993
This commit is contained in:
2018-02-14 16:15:33 +00:00
parent 4dc8e01b47
commit fa49e1c557
2 changed files with 3 additions and 3 deletions

View File

@@ -352,7 +352,7 @@ DEFINE_SETTING('MLD', 0001, 'WEB_PRSSYS', 'mld_opdr_show_requestor_in_list'
DEFINE_SETTING('MLD', 0001, 'WEB_FACTAB', 'mld_contract_startdate_key' , 'number' , '-1' , 'key of flex prop in rental contract mutation call')
DEFINE_SETTING('MLD', 0001, 'WEB_PRSSYS', 'mld_enable_workflow' , 'number' , '1' , 'enable workflow in call handling {0=workflow disabled | 1=workflow enabled }')
DEFINE_SETTING('MLD', 0001, 'WEB_PRSSYS', 'mld_notify_workflowsteps' , 'number' , '1' , 'Notify each workflowstep to caller {0=do not notify steps (blackbox) | 1=notify each step (whitebox)}')
DEFINE_SETTING('MLD', 0001, 'WEB_PRSSYS', 'mld_acp_retractnoti' , 'number' , '1' , 'Retract the MLDNEW notification on mld_accept, if still in queue {0=no|1=yes}')
DEFINE_SETTING('MLD', 0001, 'WEB_PRSSYS', 'mld_notify_retract' , 'number' , '1' , 'Retract the MLDNEW notification on mld_accept, if still in queue {0=no|1=yes}')
DEFINE_SETTING('MLD', 0001, 'WEB_PRSSYS', 'mld_copy_objects_in_workflow' , 'number' , '0' , 'Copy object-references to the next step in workflow (0=do not copy | 1=copy)')
DEFINE_SETTING('MLD', 0001, 'WEB_PRSSYS', 'mld_close_opdr_default' , 'number' , '0' , 'De checkbox met de vraag of de open opdrachten ook afgemeld moeten worden is standaard niet(0=default) of wel(1) aangevinkt')
DEFINE_SETTING('MLD', 0001, 'WEB_PRSSYS', 'mld_bo_sort_descending' , 'number' , '0' , 'Sort ordering of mld_melding for BO (0 = most urgent first | 1 = last made first );')

View File

@@ -292,7 +292,7 @@ CREATE OR REPLACE PACKAGE BODY mld AS
IF eventcode = 'MLDAFM'
THEN
fac.createlikebookmark ('melding', pmeldingkey);
ELSIF newstatus <> 0 AND newstatus <> 3 AND fac.getsetting('mld_acp_retractnoti') = 1
ELSIF newstatus <> 0 AND newstatus <> 3 AND fac.getsetting('mld_notify_retract') = 1
THEN
fac.clrnotifications('MLDNW_', pmeldingkey, 'MLDACP');
END IF;
@@ -307,7 +307,7 @@ CREATE OR REPLACE PACKAGE BODY mld AS
IF eventcode = 'MLDAFM'
THEN
fac.createlikebookmark ('melding', r.mld_melding_key);
ELSIF newstatus <> 0 AND newstatus <> 3 AND fac.getsetting('mld_acp_retractnoti') = 1
ELSIF newstatus <> 0 AND newstatus <> 3 AND fac.getsetting('mld_notify_retract') = 1
THEN
fac.clrnotifications('MLDNW_', r.mld_melding_key, 'MLDACP');
END IF;