本文整理汇总了Python中ObjectListView.PanelAvecFooter类的典型用法代码示例。如果您正苦于以下问题:Python PanelAvecFooter类的具体用法?Python PanelAvecFooter怎么用?Python PanelAvecFooter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了PanelAvecFooter类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
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)
示例2: __init__
def __init__(self, parent, kwargs={}):
dictColonnes = {
"realise" : {"mode" : "total"},
"plafond" : {"mode" : "total"},
"solde" : {"mode" : "total"},
}
PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
示例3: __init__
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)
示例4: __init__
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)
示例5: __init__
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)
示例6: __init__
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)
示例7: __init__
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)
示例8: __init__
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)
示例9: __init__
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)
示例10: __init__
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)
示例11: __init__
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)
示例12: __init__
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)
示例13: __init__
def __init__(self, parent, kwargs={}):
dictColonnes = {
"texte" : {"mode" : "nombre", "singulier" : "texte", "pluriel" : "textes", "alignement" : wx.ALIGN_CENTER},
}
PanelAvecFooter.__init__(self, parent, ListView, kwargs, dictColonnes)
示例14: __init__
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)
示例15: __init__
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)