svn path=/Customer/trunk/; revision=13433

This commit is contained in:
Maarten van der Heide
2007-11-08 13:37:54 +00:00
parent e476029c12
commit ebf1c3c4e9

View File

@@ -0,0 +1,16 @@
-- Customer specific once-script to set fo_status of all concerned reservations from
-- 'Optie' to 'Definitief'.
-- (c) 2007 Facilitor/Dijkoraad IT bv
-- $Revision: 1 $
-- $Modtime: 8-11-07 15:35 $
--
-- Support: +31 53 4800700
SET ECHO ON;
SPOOL xallv_set_fo_status_definitief.lst;
UPDATE res_rsv_ruimte r
SET r.res_status_fo_key = 2
WHERE r.res_status_fo_key = 1;
COMMIT;
SPOOL OFF;