コード例 #1
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "date": {
             "mode": "nombre",
             "singulier": _(u"date"),
             "pluriel": _(u"dates"),
             "alignement": wx.ALIGN_CENTER
         },
         "duree_prevision": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER,
             "format": "temps"
         },
         "duree_presence": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER,
             "format": "temps"
         },
         "heures_absences_deductibles": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER,
             "format": "temps"
         },
         "heures_absences_non_deductibles": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER,
             "format": "temps"
         },
         "depassement": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER,
             "format": "temps"
         },
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #2
0
ファイル: OL_Suivi_budget.py プロジェクト: bogucool/Noethys
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "realise" : {"mode" : "total"},
         "plafond" : {"mode" : "total"},
         "solde" : {"mode" : "total"},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #3
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "date" : {"mode" : "nombre", "singulier" : _(u"consommation"), "pluriel" : _(u"consommations"), "alignement" : wx.ALIGN_CENTER},
         "duree_reelle" : {"mode" : "total", "format" : "temps", "alignement" : wx.ALIGN_CENTER},
         "duree_arrondie" : {"mode" : "total", "format" : "temps", "alignement" : wx.ALIGN_CENTER},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #4
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "nom_mode" : {"mode" : "nombre", "singulier" : _(u"règlement"), "pluriel" : _(u"règlements"), "alignement" : wx.ALIGN_CENTER},
         "montant" : {"mode" : "total"},
         "montant_ventilation" : {"mode" : "total"},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #5
0
ファイル: OL_Depots.py プロジェクト: neoclust/Noethys
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "nom" : {"mode" : "nombre", "singulier" : _(u"dépôt"), "pluriel" : _(u"dépôts"), "alignement" : wx.ALIGN_CENTER},
         "nbre" : {"mode" : "total"},
         "total" : {"mode" : "total"},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #6
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "date" : {"mode" : "nombre", "singulier" : _(u"consommation"), "pluriel" : _(u"consommations"), "alignement" : wx.ALIGN_CENTER},
         "duree_reelle" : {"mode" : "total", "format" : "temps", "alignement" : wx.ALIGN_CENTER},
         "duree_arrondie" : {"mode" : "total", "format" : "temps", "alignement" : wx.ALIGN_CENTER},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #7
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "nomCompletIndividu" : {"mode" : "nombre", "singulier" : _(u"individu"), "pluriel" : _(u"individus"), "alignement" : wx.ALIGN_CENTER},
         "quantite" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER},
         "montant" : {"mode" : "total"},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #8
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "nomSansCivilite": {
             "mode": "nombre",
             "singulier": _(u"facture"),
             "pluriel": _(u"factures"),
             "alignement": wx.ALIGN_CENTER
         },
         "total": {
             "mode": "total"
         },
         "ventilation": {
             "mode": "total"
         },
         "du_periode": {
             "mode": "total"
         },
         "total_reports": {
             "mode": "total"
         },
         "du_total": {
             "mode": "total"
         },
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #9
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "annee_mois": {
             "mode": "nombre",
             "singulier": _(u"mensualité"),
             "pluriel": _(u"mensualités"),
             "alignement": wx.ALIGN_CENTER
         },
         "heures_prevues": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER,
             "format": "temps"
         },
         "montant_prevu": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER
         },
         "heures_facturees": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER,
             "format": "temps"
         },
         "montant_facture": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER
         },
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #10
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "nomsTitulaires": {
             "mode": "nombre",
             "singulier": "famille",
             "pluriel": "familles",
             "alignement": wx.ALIGN_CENTER
         },
         "solde": {
             "mode": "total"
         },
         "total_prestations": {
             "mode": "total"
         },
         "total_reglements": {
             "mode": "total"
         },
         "total_ventilations": {
             "mode": "total"
         },
         "reste_a_ventiler": {
             "mode": "total"
         },
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #11
0
ファイル: OL_Solder_impayes.py プロジェクト: bogucool/Noethys
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "titulaires" : {"mode" : "nombre", "singulier" : _(u"famille"), "pluriel" : _(u"familles"), "alignement" : wx.ALIGN_CENTER},
         "quantite" : {"mode" : "total"},
         "impaye" : {"mode" : "total"},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #12
0
ファイル: OL_Soldes.py プロジェクト: bogucool/Noethys
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "nomsTitulaires" : {"mode" : "nombre", "singulier" : "famille", "pluriel" : "familles", "alignement" : wx.ALIGN_CENTER},
         "solde" : {"mode" : "total"},
         "total_prestations" : {"mode" : "total"},
         "total_reglements" : {"mode" : "total"},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #13
0
ファイル: OL_Prestations.py プロジェクト: bogucool/Noethys
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "date" : {"mode" : "nombre", "singulier" : _(u"prestation"), "pluriel" : _(u"prestations"), "alignement" : wx.ALIGN_CENTER},
         "montant" : {"mode" : "total"},
         "montant_ventilation" : {"mode" : "total"},
         "montant_deduction" : {"mode" : "total"},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #14
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "nomTitulaires" : {"mode" : "nombre", "singulier" : _(u"déduction"), "pluriel" : _(u"déductions"), "alignement" : wx.ALIGN_CENTER},
         "montant" : {"mode" : "total"},
         "montantInitialPrestation" : {"mode" : "total"},
         "montantPrestation" : {"mode" : "total"},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #15
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "beneficiaires" : {"mode" : "nombre", "singulier" : _(u"cotisation"), "pluriel" : _(u"cotisations"), "alignement" : wx.ALIGN_CENTER},
         "montant" : {"mode" : "total"},
         "ventilation" : {"mode" : "total"},
         "solde" : {"mode" : "total"},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #16
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "beneficiaires" : {"mode" : "nombre", "singulier" : _(u"cotisation"), "pluriel" : _(u"cotisations"), "alignement" : wx.ALIGN_CENTER},
         "montant" : {"mode" : "total"},
         "ventilation" : {"mode" : "total"},
         "solde" : {"mode" : "total"},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #17
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "nomComplet" : {"mode" : "nombre", "singulier" : _(u"inscription"), "pluriel" : _(u"inscriptions"), "alignement" : wx.ALIGN_CENTER},
         "totalFacture" : {"mode" : "total"},
         "totalRegle" : {"mode" : "total"},
         "totalSolde" : {"mode" : "total"},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #18
0
ファイル: OL_Liste_comptes.py プロジェクト: bogucool/Noethys
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "nom" : {"mode" : "nombre", "singulier" : _(u"compte"), "pluriel" : _(u"comptes"), "alignement" : wx.ALIGN_LEFT},
         "solde" : {"mode" : "total"},
         "solde_jour" : {"mode" : "total"},
         "solde_pointe" : {"mode" : "total"},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #19
0
ファイル: OL_Factures.py プロジェクト: neoclust/Noethys
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "date_edition" : {"mode" : "nombre", "singulier" : _(u"facture"), "pluriel" : _(u"factures"), "alignement" : wx.ALIGN_CENTER},
         "total" : {"mode" : "total"},
         "regle" : {"mode" : "total"},
         "solde" : {"mode" : "total"},
         "soldeActuel" : {"mode" : "total"},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #20
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "annee_mois" : {"mode" : "nombre", "singulier" : _(u"mensualité"), "pluriel" : _(u"mensualités"), "alignement" : wx.ALIGN_CENTER},
         "heures_prevues" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER, "format" : "temps"},
         "montant_prevu" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER},
         "heures_facturees" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER, "format" : "temps"},
         "montant_facture" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #21
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "titulaires" : {"mode" : "nombre", "singulier" : _(u"famille"), "pluriel" : _(u"familles"), "alignement" : wx.ALIGN_CENTER},
         "quantite" : {"mode" : "total"},
         "total" : {"mode" : "total"},
         "paye" : {"mode" : "total"},
         "impaye" : {"mode" : "total"},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #22
0
ファイル: OL_Factures.py プロジェクト: bogucool/Noethys
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "date_edition" : {"mode" : "nombre", "singulier" : _(u"facture"), "pluriel" : _(u"factures"), "alignement" : wx.ALIGN_CENTER},
         "total" : {"mode" : "total"},
         "regle" : {"mode" : "total"},
         "solde" : {"mode" : "total"},
         "soldeActuel" : {"mode" : "total"},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #23
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "nomUnite": {
             "mode": "nombre",
             "singulier": _(u"consommation"),
             "pluriel": _(u"consommations"),
             "alignement": wx.ALIGN_LEFT
         },
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #24
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "date" : {"mode" : "nombre", "singulier" : _(u"date"), "pluriel" : _(u"dates"), "alignement" : wx.ALIGN_CENTER},
         "duree_prevision" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER, "format" : "temps"},
         "duree_presence" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER, "format" : "temps"},
         "heures_absences_deductibles" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER, "format" : "temps"},
         "heures_absences_non_deductibles" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER, "format" : "temps"},
         "depassement" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER, "format" : "temps"},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #25
0
ファイル: OL_Traductions.py プロジェクト: neoclust/Noethys
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "texte": {
             "mode": "nombre",
             "singulier": "texte",
             "pluriel": "textes",
             "alignement": wx.ALIGN_CENTER
         },
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #26
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "date_debut": {
             "mode": "nombre",
             "singulier": _(u"location"),
             "pluriel": _(u"locations"),
             "alignement": wx.ALIGN_CENTER
         },
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #27
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "nomSansCivilite" : {"mode" : "nombre", "singulier" : _(u"facture"), "pluriel" : _(u"factures"), "alignement" : wx.ALIGN_CENTER},
         "total" : {"mode" : "total"},
         "ventilation" : {"mode" : "total"},
         "du_periode" : {"mode" : "total"},
         "total_reports" : {"mode" : "total"},
         "du_total" : {"mode" : "total"},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #28
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "date_fin": {
             "mode": "nombre",
             "singulier": _(u"période"),
             "pluriel": _(u"périodes"),
             "alignement": wx.ALIGN_CENTER
         },
         "montant_prestation": {
             "mode": "total"
         },
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #29
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "nomsTitulaires": {
             "mode": "nombre",
             "singulier": "rappel",
             "pluriel": "rappels",
             "alignement": wx.ALIGN_CENTER
         },
         "solde": {
             "mode": "total"
         },
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #30
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "realise": {
             "mode": "total"
         },
         "plafond": {
             "mode": "total"
         },
         "solde": {
             "mode": "total"
         },
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #31
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "date_fin": {
             "mode": "nombre",
             "singulier": _(u"contrat"),
             "pluriel": _(u"contrats"),
             "alignement": wx.ALIGN_LEFT
         },
         "montant": {
             "mode": "total"
         },
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #32
0
ファイル: OL_Liste_comptes.py プロジェクト: neoclust/Noethys
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "nom": {
             "mode": "nombre",
             "singulier": _(u"compte"),
             "pluriel": _(u"comptes"),
             "alignement": wx.ALIGN_LEFT
         },
         "solde": {
             "mode": "total"
         },
         "solde_jour": {
             "mode": "total"
         },
         "solde_pointe": {
             "mode": "total"
         },
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #33
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "nomComplet": {
             "mode": "nombre",
             "singulier": _(u"inscription"),
             "pluriel": _(u"inscriptions"),
             "alignement": wx.ALIGN_CENTER
         },
         "totalFacture": {
             "mode": "total"
         },
         "totalRegle": {
             "mode": "total"
         },
         "totalSolde": {
             "mode": "total"
         },
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #34
0
    def __init__(self, parent, kwargs={}):
        dictColonnes = {
            "individu_nom_complet" : {"mode" : "nombre", "singulier" : _(u"individu"), "pluriel" : _(u"individus"), "alignement" : wx.ALIGN_CENTER},
            "heures_prevues" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER, "format" : "temps"},
            "montant_prevu" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER},

            "heures_prevues_mois" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER, "format" : "temps"},
            "heures_presences" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER, "format" : "temps"},
            "heures_absences_deductibles" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER, "format" : "temps"},
            "heures_absences_non_deductibles" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER, "format" : "temps"},
            "heures_depassements" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER, "format" : "temps"},
            "heures_regularisation" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER, "format" : "temps"},

            "heures_a_facturer" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER, "format" : "temps"},
            "montant_a_facturer" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER},

            "heures_facturees" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER, "format" : "temps"},
            "montant_facture" : {"mode" : "total", "alignement" : wx.ALIGN_CENTER},
            }
        PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #35
0
 def __init__(self, parent, kwargs={}):
     if kwargs["mode"] == "familles":
         dictColonnes = {
             "nomTitulaires": {
                 "mode": "nombre",
                 "singulier": _(u"famille"),
                 "pluriel": _(u"familles"),
                 "alignement": wx.ALIGN_CENTER
             },
         }
     else:
         dictColonnes = {
             "nom": {
                 "mode": "nombre",
                 "singulier": _(u"individu"),
                 "pluriel": _(u"individus"),
                 "alignement": wx.ALIGN_CENTER
             },
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #36
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "individu_nom_complet": {
             "mode": "nombre",
             "singulier": _(u"individu"),
             "pluriel": _(u"individus"),
             "alignement": wx.ALIGN_CENTER
         },
         "heures_prevues": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER,
             "format": "temps"
         },
         "montant_prevu": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER
         },
         "heures_prevues_mois": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER,
             "format": "temps"
         },
         "heures_presences": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER,
             "format": "temps"
         },
         "heures_absences_deductibles": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER,
             "format": "temps"
         },
         "heures_absences_non_deductibles": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER,
             "format": "temps"
         },
         "heures_depassements": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER,
             "format": "temps"
         },
         "heures_regularisation": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER,
             "format": "temps"
         },
         "heures_a_facturer": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER,
             "format": "temps"
         },
         "montant_a_facturer": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER
         },
         "heures_facturees": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER,
             "format": "temps"
         },
         "montant_facture": {
             "mode": "total",
             "alignement": wx.ALIGN_CENTER
         },
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #37
0
ファイル: OL_Traductions.py プロジェクト: bogucool/Noethys
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "texte" : {"mode" : "nombre", "singulier" : "texte", "pluriel" : "textes", "alignement" : wx.ALIGN_CENTER},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #38
0
ファイル: OL_Archivage.py プロジェクト: bogucool/Noethys
 def __init__(self, parent, kwargs={}):
     if kwargs["mode"] == "familles" :
         dictColonnes = {"nomTitulaires": {"mode": "nombre", "singulier": _(u"famille"), "pluriel": _(u"familles"), "alignement": wx.ALIGN_CENTER},}
     else :
         dictColonnes = {"nom": {"mode": "nombre", "singulier": _(u"individu"), "pluriel": _(u"individus"), "alignement": wx.ALIGN_CENTER}, }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #39
0
ファイル: OL_Locations.py プロジェクト: bogucool/Noethys
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "date_debut": {"mode": "nombre", "singulier": _(u"location"), "pluriel": _(u"locations"), "alignement": wx.ALIGN_CENTER},
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #40
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "nom_mode" : {"mode" : "nombre", "singulier" : _(u"règlement"), "pluriel" : _(u"règlements"), "alignement" : wx.ALIGN_CENTER},
         "montant" : {"mode" : "total"},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
コード例 #41
0
ファイル: OL_Contrats_conso.py プロジェクト: bogucool/Noethys
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "nomUnite" : {"mode" : "nombre", "singulier" : _(u"consommation"), "pluriel" : _(u"consommations"), "alignement" : wx.ALIGN_LEFT},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)