VOLK#77515 -- Uitbesteding Servicedesk Retail locaties SNS

svn path=/Customer/trunk/; revision=60014
This commit is contained in:
Arthur Egberink
2023-04-14 09:55:51 +00:00
parent f275022196
commit 5d3fad89c5

View File

@@ -1380,28 +1380,29 @@ BEGIN
FOR rec IN coll
LOOP
BEGIN
SELECT at.mld_afmeldtekst_omschrijving
INTO v_afmeldtekst
FROM mld_afmeldtekst at
WHERE at.mld_afmeldtekst_key = 41;
UPDATE mld_melding m
SET m.mld_melding_opmerking = v_afmeldtekst;
mld.setmeldingstatus (rec.mld_melding_key, 5, 3);
SET m.mld_melding_opmerking = v_afmeldtekst
WHERE m.mld_melding_key = rec.mld_melding_key;
mld.setmeldingstatus (rec.mld_melding_key, 5, 3);
fac.trackaction ('MLDTRK',
rec.mld_melding_key,
NULL,
NULL,
'Melding naar Colliers automatisch afgemeld');
mld.setopdrachtstatus (rec.mld_opdr_key, 6, 3);
fac.trackaction ('ORDTRK',
rec.mld_opdr_key,
NULL,
NULL,
'Opdracht naar Colliers automatisch afgemeld');
'Opdracht naar Colliers automatisch afgemeld');
COMMIT;
END;