-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
60 lines (44 loc) · 1.65 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#=====================================LIBRERIAS============================================
import tkinter
import tkinter as tk
from tkinter import ttk
from tkinter import *
from tkinter import messagebox
import sqlite3 as sql
from tkinter import PhotoImage
import re
from PIL import Image,ImageTk
import time
from variables import *
from conexion import *
from estructura import *
from ventanas_hijas import *
from entradas import *
from abonos import *
from buscar import *
from estadisticas import *
from pie_de_pagina import *
from conf_botones import *
#=====================================EVENTO FORMATO DE PESTAÑAS============================================
def on_tab(event):
global tab_styles
global style
nb = event.widget
tab = nb.tab(nb.select(), "text")
st = tab_styles[tab]
style.map('TNotebook.Tab', **st)
nb.pack(expand=1, fill='both' )
nb.bind("<<NotebookTabChanged>>", on_tab)
#=====================================CONDICION AUTO-EJECUTABLE============================================
#la siguiente condicion nos dice que si el módulo que estás
# ejecutando es el módulo principal, ejecutá el código que sigue. Con lo cual, las funciones que
# introduzcamos dentro de esta condicion, se ejecutaran automaticamente, sin pulsar ningun boton.
# esto es muy util para mostrar tablas, como es el caso.
if __name__ == '__main__':
#funcion tabla buscar
Buscar1()
#funcion estadisticas entradas
ACTUALIZAR_TODO_F4_ENTRADAS()
#funcion estadisticas abonos
ACTUALIZAR_TODO_F4_ABONOS()
root.mainloop()