예제 #1
0
 def On_export(self,event):
     #appel de l'export d'un dossier
     cfg = gc.DLG_export(self.parent, style = wx.RESIZE_BORDER )
     cfg.Show()
예제 #2
0
 def On_exportFiliere(self, event):
     # appel de l'export de plusieurs dossiers
     cfg = gc.DLG_export(self.parent, multi='filiere', style=wx.RESIZE_BORDER)
     cfg.Show()
예제 #3
0
 def On_affectFiliere(self, event):
     # appel de des affectations de plusieurs dossiers
     cfg = gc.DLG_affect(self.parent, multi='filiere', style=wx.RESIZE_BORDER)
     cfg.Show()
예제 #4
0
 def On_affect(self,event):
     #appel de des affectations d'un dossier
     cfg = gc.DLG_affect(self.parent, style = wx.RESIZE_BORDER )
     cfg.Show()
예제 #5
0
 def On_traitGroupe(self,event):
     #appel de l'trait de plusieurs dossiers
     cfg = gc.DLG_trait(self.parent, multi='groupe', style = wx.RESIZE_BORDER )
     cfg.Show()
예제 #6
0
 def On_importMulti(self,event):
     #appel de l'import de plusieurs dossiers compta
     cfg = gc.DLG_import(self.parent, multi=True, style = wx.RESIZE_BORDER )
     cfg.Show()
예제 #7
0
 def On_gestables(self,event):
     #appel de l'implantation compta
     cfg = gc.DLG_gestionTables(self.parent, style = wx.RESIZE_BORDER )
     cfg.Show()