-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
162 lines (134 loc) · 5.23 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
import os
import sys
import wx
import db
from config import Config
from gui.main_ui import ConfigUI, MainUI
from utils import resource_path
from utils.log import log as logger
path = resource_path("Icon.ico")
class ConfigWindow(ConfigUI):
def __init__(self, parent):
super(ConfigWindow, self).__init__(parent)
self.parent = parent
self.config = dict()
cfg = Config()
self.exit = True
if cfg.is_config('default'):
self.config = cfg.get('default')
self.dict2field(self.config)
def accept(self, event):
cfg = self.field2dict()
self.config['default'] = cfg
self.save()
def save(self):
cfg = Config()
conn = db.DB(**self.config['default'])
if conn.conn():
if cfg.set(self.config):
msg = wx.MessageBox(
"As configurações foram salvas em : " + cfg.cfg_file,
caption="Sucesso", style=wx.OK | wx.CENTRE | wx.ICON_INFORMATION, parent=None,
)
if msg == wx.OK:
self.EndModal(wx.OK)
else:
wx.MessageBox(
"Ocorreu um erro ao salvar as configurações , verificar se o arquivo " +
cfg.cfg_file + " não está sendo usado e se você tem permissão de escrita !",
caption="Erro", style=wx.OK | wx.CENTRE | wx.ICON_ERROR, parent=None,
)
else:
wx.MessageBox(
"Ocorreu um erro ao conectar ao banco de dados, verifique os dados informados e tente novamente !",
caption="Erro", style=wx.OK | wx.CENTRE | wx.ICON_WARNING, parent=None,
)
def dict2field(self, cfg):
self.textHost.setText(cfg["host"])
self.textPort.setText(cfg["port"])
self.textUser.setText(cfg["user"])
self.textPassword.setText(cfg["password"])
self.textName.setText(cfg["dbname"])
def validate_fields(self):
self.textHost.SetValue("localhost" if self.textHost.GetValue() == "" else self.textHost.GetValue())
self.textPort.SetValue("5432" if self.textPort.GetValue() == "" else self.textPort.GetValue())
self.textName.SetValue("autosystem" if self.textName.GetValue() == "" else self.textName.GetValue())
self.textUser.SetValue("postgres" if self.textUser.GetValue() == "" else self.textUser.GetValue())
def field2dict(self):
self.validate_fields()
cfg = dict()
cfg["host"] = self.textHost.GetValue()
cfg["port"] = self.textPort.GetValue()
cfg["dbname"] = self.textName.GetValue()
cfg["user"] = self.textUser.GetValue()
cfg["password"] = self.textPassword.GetValue()
return cfg
def reset(self):
self.textHost.SetValue("")
self.textPort.SetValue("")
self.textUser.SetValue("")
self.textPassword.SetValue("")
self.textName.SetValue("")
def cancel(self, event):
sys.exit()
class MainWindow(MainUI):
def log(self, text):
logger(text, self.textLog)
def make_actions(self, event):
self.textLog.AppendText("")
idx = self.comboEmpresa.CurrentSelection
empresa = None
if idx > 0:
empresa = self.grids[idx]
data = self.dateEdit.GetValue()
conn = db.DB(**self.cfg, text_ctrl=self.textLog)
if conn.conn():
self.log('Conexão feita com sucesso !')
conn.update(data.__str__(), empresa)
conn.delete(data.Format("%Y-%m-%d"), empresa)
path = os.path.join('C:\\', 'autosystem', 'main.exe')
os.chdir("C:\\autosystem")
os.spawnl(os.P_NOWAIT, path, '--estoque')
def print_empresa(self):
self.log(
f"GRID : {self.grids[0][self.comboEmpresa.currentIndex()]} Nome : {self.comboEmpresa.currentText()}")
def set_combo(self):
conn = db.DB(**self.cfg, text_ctrl=self.textLog)
if conn.conn():
self.log('Conexão feita com sucesso !')
procs = conn.get_empresa()
self.grids.append(0)
self.comboEmpresa.Append("TODAS AS EMPRESAS")
for proc in procs:
empresa = proc['nome']
grid = proc['grid']
self.grids.append((grid, empresa))
self.comboEmpresa.Append(empresa)
def __init__(self, parent, cfg):
super(MainWindow, self).__init__(parent)
self.grids = []
self.cfg = cfg
self.set_combo()
self.dateEdit.SetValue(wx.DateTime.Today())
self.SetIcon(icon)
def run():
cfg = Config()
if not cfg.is_config('default'):
msg = wx.MessageBox(
"As configurações não foram encontradas , será aberta uma janela para configurar.",
caption="Aviso", style=wx.OK | wx.CENTRE | wx.ICON_ERROR, parent=None,
)
if msg == wx.OK:
cfg = ConfigWindow(None)
cfg.SetIcon(icon)
if cfg.ShowModal() == wx.OK:
run()
else:
cfg.config = cfg.get('default')
window = MainWindow(None, cfg.config)
window.Show()
if __name__ == "__main__":
app = wx.App()
icon = wx.Icon(path)
run()
app.MainLoop()