From 4860dce4c511f3375476cce748387a8f084a9edf Mon Sep 17 00:00:00 2001 From: "pascale.noyret" Date: Thu, 11 Apr 2019 11:32:46 +0200 Subject: [PATCH] test pour Pascal --- Noyau/N_JDC_CATA.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Noyau/N_JDC_CATA.py b/Noyau/N_JDC_CATA.py index 27a76e8f..76761919 100644 --- a/Noyau/N_JDC_CATA.py +++ b/Noyau/N_JDC_CATA.py @@ -48,7 +48,7 @@ class JDC_CATA(N_ENTITE.ENTITE): class_instance = N_JDC.JDC label = 'JDC' - def __init__(self, code='', execmodul=None, regles=(), niveaux=(), **args): + def __init__(self, code='', execmodul=None, regles=(), niveaux=(),fichierSource=None, **args): """ """ self.code = code @@ -63,6 +63,7 @@ class JDC_CATA(N_ENTITE.ENTITE): self.d_niveaux = {} self.l_niveaux = niveaux self.commandes = [] + self.fichierSource = fichierSource for niveau in niveaux: self.d_niveaux[niveau.nom] = niveau # On change d'objet catalogue. Il faut d'abord mettre le catalogue @@ -71,6 +72,7 @@ class JDC_CATA(N_ENTITE.ENTITE): CONTEXT.setCurrentCata(self) self.fenetreIhm=None self.dictTypesXSD={} + self.listeDesTypesXSDRedefini=[] def __call__(self, procedure=None, cata=None, cata_ord_dico=None, nom='SansNom', parent=None, **args): -- 2.39.2