FMHN#72904 Dat de FE bepaalde zalen niet meer mag wijzigen als de reservering definitief is
svn path=/Database/trunk/; revision=57241
This commit is contained in:
@@ -23,6 +23,7 @@ CREATE_TABLE (res_disc_params,0)
|
||||
res_disc_params_threshold NUMBER(11,2) DEFAULT 9999999 NOT NULL,
|
||||
res_disc_params_intervals VARCHAR(2000 CHAR), /* Optioneel: JSON-structured intervallen */
|
||||
prs_bedrijf_key NUMBER(10), /* Optioneel: de leverancier van deze catalogus */
|
||||
res_disc_params_edit_option NUMBER(1) DEFAULT 0 NOT NULL,
|
||||
CONSTRAINT res_c_ins_discipline_key CHECK (res_ins_discipline_key IS NOT NULL),
|
||||
CONSTRAINT res_k_res_disc_params_key PRIMARY KEY (res_disc_params_key),
|
||||
CONSTRAINT res_r_ins_discipine_key FOREIGN KEY (res_ins_discipline_key)
|
||||
|
||||
@@ -434,6 +434,15 @@ CREATE INDEX exc_i_exc_import1 ON exc_import(fac_import_key);
|
||||
DEF_IMPORT('WEB_PRSSYS', 'EXCHANGE_IMPORT', 'Import van reserveringen vanuit Exchange online', 'Import of reservations from Exchange online')
|
||||
DEF_IMPORT('WEB_PRSSYS', 'EXCHANGE_UPDATE', 'Update reserveringen vanuit Exchange online', 'Update reservations from Exchange online')
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////// FMHN#72904
|
||||
ALTER TABLE res_disc_params ADD res_disc_params_edit_option NUMBER(1) DEFAULT 0 NOT NULL;
|
||||
UPDATE res_disc_params
|
||||
SET res_disc_params_edit_option = 1
|
||||
WHERE 1 = (SELECT COALESCE(fac_setting_pvalue, fac_setting_default) waarde
|
||||
FROM fac_setting
|
||||
WHERE fac_setting_name = 'res_fe_edit_option_only'
|
||||
);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////// FCLT#00000
|
||||
|
||||
REGISTERONCE('$Id$')
|
||||
|
||||
Reference in New Issue
Block a user