def Ajouter(self, event): ## if UTILS_Utilisateurs.VerificationDroitsUtilisateurActuel("parametrage_tiers", "creer") == False : return from Dlg import DLG_Saisie_budget dlg = DLG_Saisie_budget.Dialog(self, IDbudget=None) if dlg.ShowModal() == wx.ID_OK: self.MAJ(dlg.GetIDbudget()) dlg.Destroy()
def Modifier(self, event): ## if UTILS_Utilisateurs.VerificationDroitsUtilisateurActuel("parametrage_tiers", "modifier") == False : return if len(self.Selection()) == 0 : dlg = wx.MessageDialog(self, _(u"Vous n'avez sélectionné aucun budget à modifier dans la liste !"), _(u"Erreur de saisie"), wx.OK | wx.ICON_EXCLAMATION) dlg.ShowModal() dlg.Destroy() return track = self.Selection()[0] from Dlg import DLG_Saisie_budget dlg = DLG_Saisie_budget.Dialog(self, IDbudget=track.IDbudget) if dlg.ShowModal() == wx.ID_OK: self.MAJ(dlg.GetIDbudget() ) dlg.Destroy()