Merge DB40f patches
svn path=/Database/trunk/; revision=52715
This commit is contained in:
@@ -2261,6 +2261,15 @@ AS
|
||||
FROM bes_bestelopdr_item
|
||||
WHERE bes_bestelopdr_key = p_bes_opdr_key);
|
||||
|
||||
FOR ref_contract IN (SELECT cnt_contract_key
|
||||
FROM cnt_contract
|
||||
WHERE bes_bestelopdr_key = p_bes_opdr_key
|
||||
)
|
||||
LOOP
|
||||
-- Verwijder contracten die aan deze bestelopdracht zitten.
|
||||
cnt.remove(ref_contract.cnt_contract_key);
|
||||
END LOOP;
|
||||
|
||||
DELETE FROM bes_bestelopdr
|
||||
WHERE bes_bestelopdr_key = p_bes_opdr_key;
|
||||
|
||||
|
||||
@@ -553,6 +553,15 @@ CREATE OR REPLACE PACKAGE BODY cnt AS
|
||||
flx.deleteflexbijlage (ref_bijlagen.fac_bijlagen_key);
|
||||
END LOOP;
|
||||
|
||||
FOR ref_mldopdr IN (SELECT mld_opdr_key
|
||||
FROM mld_opdr
|
||||
WHERE cnt_contract_key = p_contract_key
|
||||
)
|
||||
LOOP
|
||||
-- Verwijder melding-opdrachten die aan dit contract zitten.
|
||||
mld.remove_opdr(ref_mldopdr.mld_opdr_key);
|
||||
END LOOP;
|
||||
|
||||
DELETE FROM cnt_contract
|
||||
WHERE cnt_contract_key = p_contract_key;
|
||||
|
||||
|
||||
@@ -4099,6 +4099,7 @@ FAC_LCL('lcl_menu_fac_aut_edit_groep', 'Autorisatiegroepen', 'Authorisation grou
|
||||
FAC_LCL('lcl_menu_fac_aut_functie', 'Autorisatiefuncties', 'Authorisation functions')
|
||||
FAC_LCL('lcl_menu_fac_aut_groep', 'Autorisatiegroeprechten', 'Authorisation group rights')
|
||||
FAC_LCL('lcl_menu_fac_aut_perslid', 'Autorisatie personen', 'Authorisation persons')
|
||||
FAC_LCL('lcl_facmgt_overig', 'Overig', 'Misc.')
|
||||
FAC_LCL('lcl_menu_fac_rapportages', 'Rapportages', 'Reports')
|
||||
FAC_LCL('lcl_menu_fac_graphs', 'Grafieken', 'Graphs')
|
||||
FAC_LCL('lcl_menu_fac_vrije_dagen', 'Vrije dagen', 'Non-working days')
|
||||
|
||||
@@ -12,10 +12,14 @@ DEFINE dbuser = '*'
|
||||
SET ECHO ON
|
||||
SET DEFINE ON
|
||||
COLUMN fcltlogfile NEW_VALUE fcltlogfile NOPRINT;
|
||||
WHENEVER SQLERROR EXIT;
|
||||
SELECT adm.scriptspoolfile('&dbuser', '&thisfile') AS fcltlogfile FROM DUAL;
|
||||
COLUMN fcltcusterr NEW_VALUE fcltcusterr NOPRINT;
|
||||
WHENEVER SQLERROR CONTINUE;
|
||||
SELECT adm.getscriptspoolfile('&thisfile') AS fcltlogfile FROM DUAL;
|
||||
SPOOL &fcltlogfile
|
||||
WHENEVER SQLERROR EXIT;
|
||||
SELECT adm.checkscriptcust('&dbuser') AS fcltcusterr FROM DUAL;
|
||||
WHENEVER SQLERROR CONTINUE;
|
||||
PROMPT &fcltcusterr
|
||||
SET DEFINE OFF
|
||||
|
||||
------ payload begin ------
|
||||
|
||||
Reference in New Issue
Block a user