ASTE#66948 -- Impelementatie van de reserveringsmodule voor Meppel

svn path=/Customer/trunk/; revision=52352
This commit is contained in:
Arthur Egberink
2021-07-13 17:50:46 +00:00
parent 0213a910df
commit 669e3b1dc8

View File

@@ -305,7 +305,7 @@ AS
'Uw reservering '
|| rrr.res_reservering_key
|| '/'
|| rrr.res_rsv_ruimte_volgnr
|| MIN(rrr.res_rsv_ruimte_volgnr)
|| ' ('
|| rrr.res_rsv_ruimte_omschrijving
|| ') is geregistreerd.'
@@ -314,13 +314,13 @@ AS
'Uw reservering '
|| rrr.res_reservering_key
|| '/'
|| rrr.res_rsv_ruimte_volgnr
|| MIN(rrr.res_rsv_ruimte_volgnr)
|| ' ('
|| rrr.res_rsv_ruimte_omschrijving
|| ') is gewijzigd.'
END CASE,
rrr.res_reservering_key,
rrr.res_rsv_ruimte_key
MIN(rrr.res_rsv_ruimte_key)
FROM fac_tracking t, fac_srtnotificatie sn, res_rsv_ruimte rrr
WHERE t.fac_srtnotificatie_key = sn.fac_srtnotificatie_key
AND sn.fac_srtnotificatie_code IN ('RESNEW', 'RESUPD')
@@ -334,7 +334,11 @@ AS
AND (SELECT fac_notificatie_job_nextrun
FROM fac_notificatie_job
WHERE fac_notificatie_job_view =
'ASTE_V_NOTI_RES_GASTHEER');
'ASTE_V_NOTI_RES_GASTHEER')
GROUP BY rrr.res_rsv_ruimte_host_key,
rrr.res_reservering_key,
rrr.res_rsv_ruimte_omschrijving,
sn.fac_srtnotificatie_code;
SET DEFINE OFF