예제 #1
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)
예제 #2
0
 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)
예제 #3
0
 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)
 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)
예제 #5
0
파일: OL_Depots.py 프로젝트: CugeDe/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 = {
         "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)
예제 #7
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "realise" : {"mode" : "total"},
         "plafond" : {"mode" : "total"},
         "solde" : {"mode" : "total"},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
 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)
 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)
 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
 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)
예제 #12
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)
예제 #13
0
 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)
예제 #14
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)
예제 #15
0
파일: OL_Soldes.py 프로젝트: CugeDe/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)
예제 #16
0
 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)
예제 #17
0
 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)
예제 #18
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)
예제 #19
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "nomTitulaires": {
             "mode": "nombre",
             "singulier": _(u"famille"),
             "pluriel": _(u"familles"),
             "alignement": wx.ALIGN_CENTER
         },
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
예제 #20
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)
예제 #21
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)
예제 #22
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "texte": {
             "mode": "nombre",
             "singulier": "texte",
             "pluriel": "textes",
             "alignement": wx.ALIGN_CENTER
         },
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
 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)
예제 #24
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)
예제 #25
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)
예제 #26
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "realise": {
             "mode": "total"
         },
         "plafond": {
             "mode": "total"
         },
         "solde": {
             "mode": "total"
         },
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
예제 #27
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)
예제 #28
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)
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "date": {
             "mode": "nombre",
             "singulier": "prestation",
             "pluriel": "prestations",
             "alignement": wx.ALIGN_CENTER
         },
         "montant": {
             "mode": "total"
         },
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
예제 #30
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "date": {
             "mode": "nombre",
             "singulier": _(u"consommation"),
             "pluriel": _(u"consommations"),
             "alignement": wx.ALIGN_CENTER
         },
         "duree": {
             "mode": "total",
             "format": "temps",
             "alignement": wx.ALIGN_CENTER
         },
     }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
예제 #31
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)
예제 #32
0
 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 = {
            "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)
 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={}):
     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)
예제 #36
0
 def __init__(self, parent, kwargs={}):
     dictColonnes = {
         "texte" : {"mode" : "nombre", "singulier" : "texte", "pluriel" : "textes", "alignement" : wx.ALIGN_CENTER},
         }
     PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
예제 #37
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)