Skip to content
Snippets Groups Projects
Commit e166095b authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

Correction du bug sur UnicaenImport qui bloquait la synchro si celle sur...

Correction du bug sur UnicaenImport qui bloquait la synchro si celle sur INTERVENANT était désactivée
parent 270dfcbe
Branches
Tags
No related merge requests found
# OSE 14.5 (alpha)
## Corrections de bugs
* Lors de l'import de données, l'application ne plante plus si le connecteur INTERVENANT est désactivé
# OSE 14.4
## Nouveautés
......
......@@ -45,7 +45,7 @@ CREATE OR REPLACE PACKAGE BODY "UNICAEN_IMPORT" AS
sync := 0;
END IF;
SELECT COUNT(*) INTO ok FROM import_tables it WHERE it.table_name = SYNCHRONISATION.table_name AND (it.sync_enabled = 1 OR sync=1) AND rownum = 1;
SELECT COUNT(*) INTO ok FROM import_tables it JOIN all_procedures p ON p.object_name = 'UNICAEN_IMPORT_AUTOGEN_PROCS__' AND p.procedure_name = it.table_name WHERE it.table_name = SYNCHRONISATION.table_name AND (it.sync_enabled = 1 OR sync=1) AND rownum = 1;
IF 1 = ok THEN
z__SYNC_FILRE__z := SYNCHRONISATION.SYNC_FILRE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment