BLCC#73834 Gebouwkenmerken Voorschot Utilities vermenigvuldigen met 2,40

svn path=/Customer/; revision=56875
This commit is contained in:
Maarten van der Heide
2022-08-15 15:56:03 +00:00
parent c9b11d855f
commit f5eeacc66b

View File

@@ -26,9 +26,7 @@ SET SERVEROUTPUT ON size 1000000;
DECLARE
CURSOR vut
IS
SELECT DISTINCT
'[' || TO_CHAR (alg_onrgoed_key) || '] ' aanduiding,
alg_onrgoed_key
SELECT alg_onrgoed_key
FROM alg_onrgoedkenmerk
WHERE alg_onrgoedkenmerk_verwijder IS NULL
AND alg_onrgoed_niveau = 'G' -- Zou zo moeten zijn!
@@ -48,10 +46,10 @@ BEGIN
AND alg_onrgoed_key = rec.alg_onrgoed_key;
fac.trackaction ('ALGGUP', rec.alg_onrgoed_key, NULL, NULL, 'Voorschot Utilities L/H/K/O/T/C verhoogd met 240%');
v_count := v_count + 1;
END;
END LOOP;
DBMS_OUTPUT.PUT_LINE ('S: ' || TO_CHAR (v_count) || ' gebouwen gewijzigd');
COMMIT;
END;
/