mirror of
https://github.com/Noettore/fattureCCSR.git
synced 2025-10-15 03:36:39 +02:00
121 lines
4.7 KiB
Python
121 lines
4.7 KiB
Python
"""This utility is used for downloading or converting to TRAF2000 invoices from a .csv or .xml report file"""
|
|
|
|
import os
|
|
import wx
|
|
|
|
import converter
|
|
import exc
|
|
|
|
class LoginDialog(wx.Dialog):
|
|
"""login dialog for basic auth download"""
|
|
def __init__(self, parent, title):
|
|
"""constructor"""
|
|
super(LoginDialog, self).__init__(parent, wx.ID_ANY, title, size=(350, 150))
|
|
|
|
self.logged_id = False
|
|
|
|
user_sizer = wx.BoxSizer(wx.HORIZONTAL)
|
|
user_lbl = wx.StaticText(self, wx.ID_ANY, "Username:")
|
|
user_sizer.Add(user_lbl, 0, wx.ALL|wx.CENTER, 2)
|
|
self.username = wx.TextCtrl(self)
|
|
user_sizer.Add(self.username, 0, wx.ALL, 2)
|
|
|
|
pass_sizer = wx.BoxSizer(wx.HORIZONTAL)
|
|
pass_lbl = wx.StaticText(self, wx.ID_ANY, "Password:")
|
|
pass_sizer.Add(pass_lbl, 0, wx.ALL|wx.CENTER, 2)
|
|
self.password = wx.TextCtrl(self, wx.ID_ANY, style=wx.TE_PASSWORD|wx.TE_PROCESS_ENTER)
|
|
pass_sizer.Add(self.password, 0, wx.ALL, 2)
|
|
|
|
login_btn = wx.Button(self, label="Login")
|
|
login_btn.Bind(wx.EVT_BUTTON, self.onLogin)
|
|
|
|
main_sizer = wx.BoxSizer(wx.VERTICAL)
|
|
main_sizer.Add(user_sizer, 0, wx.ALL, 2)
|
|
main_sizer.Add(pass_sizer, 0, wx.ALL, 2)
|
|
main_sizer.Add(login_btn, 0, wx.ALL|wx.CENTER, 2)
|
|
|
|
self.SetSizer(main_sizer)
|
|
|
|
def onLogin(self, _):
|
|
"""check credentials and login"""
|
|
if self.username not in ("", None) and self.password.GetValue() not in ("", None):
|
|
self.logged_id = True
|
|
self.Close()
|
|
|
|
class FattureCCSRFrame(wx.Frame):
|
|
"""main application frame"""
|
|
def __init__(self, parent, title):
|
|
self.input_file_path = None
|
|
self.input_file_ext = None
|
|
self.output_file_path = None
|
|
|
|
super(FattureCCSRFrame, self).__init__(parent, wx.ID_ANY, title, size=(500, 120))
|
|
panel = wx.Panel(self)
|
|
vbox = wx.BoxSizer(wx.VERTICAL)
|
|
hbox1 = wx.BoxSizer(wx.HORIZONTAL)
|
|
hbox2 = wx.BoxSizer(wx.HORIZONTAL)
|
|
|
|
input_file_text = wx.StaticText(panel, wx.ID_ANY, "Seleziona il file scaricato dal portare della CCSR")
|
|
|
|
self.input_file_picker = wx.FilePickerCtrl(panel, 101, "", "Seleziona il .xlsx, .csv o .xml", "*.xlsx;*.csv;*.xml", style=wx.FLP_DEFAULT_STYLE|wx.FLP_USE_TEXTCTRL)
|
|
hbox1.Add(self.input_file_picker, 1, wx.EXPAND, 0)
|
|
self.input_file_picker.Bind(wx.EVT_FILEPICKER_CHANGED, self.file_picker_changed)
|
|
|
|
self.download_btn = wx.Button(panel, 201, "Scarica Fatture")
|
|
hbox2.Add(self.download_btn, 0, wx.ALIGN_CENTER)
|
|
self.download_btn.Bind(wx.EVT_BUTTON, self.btn_onclick)
|
|
self.download_btn.Disable()
|
|
|
|
self.traf2000_btn = wx.Button(panel, 202, "Genera TRAF2000")
|
|
hbox2.Add(self.traf2000_btn, 0, wx.ALIGN_CENTER)
|
|
self.traf2000_btn.Bind(wx.EVT_BUTTON, self.btn_onclick)
|
|
self.traf2000_btn.Disable()
|
|
|
|
self.output_file_dialog = wx.FileDialog(panel, "Scegli dove salvare il file TRAF2000", defaultFile="TRAF2000", style=wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT)
|
|
|
|
vbox.Add(input_file_text, 0, wx.ALIGN_CENTER_HORIZONTAL)
|
|
vbox.Add(hbox1, 0, wx.EXPAND)
|
|
vbox.Add(hbox2, 0, wx.ALIGN_CENTER_HORIZONTAL)
|
|
|
|
panel.SetSizer(vbox)
|
|
|
|
self.Centre()
|
|
self.Show()
|
|
|
|
def file_picker_changed(self, event):
|
|
"""event raised when the input file path is changed"""
|
|
self.input_file_path = event.GetEventObject().GetPath()
|
|
if self.input_file_path in (None, ""):
|
|
print("ERROR: No input file selected!")
|
|
return
|
|
self.input_file_ext = os.path.splitext(self.input_file_path)[1]
|
|
if self.input_file_ext == ".xlsx":
|
|
self.download_btn.Enable()
|
|
elif self.input_file_ext in (".csv", ".xml"):
|
|
self.traf2000_btn.Enable()
|
|
else:
|
|
print("ERROR: wrong file extension: " + self.input_file_ext)
|
|
return
|
|
|
|
|
|
def btn_onclick(self, event):
|
|
"""event raised when a button is clicked"""
|
|
btn_id = event.GetEventObject().GetId()
|
|
if btn_id == 201:
|
|
login_dlg = LoginDialog(self, "Inserisci le credenziali di login al portale della CCSR")
|
|
login_dlg.ShowModal()
|
|
if login_dlg.logged_id:
|
|
print("Download")
|
|
elif btn_id == 202:
|
|
if self.output_file_dialog.ShowModal() == wx.ID_OK:
|
|
self.output_file_path = self.output_file_dialog.GetPath()
|
|
try:
|
|
converter.convert(self.input_file_path, self.output_file_path)
|
|
except exc.WrongFileExtension as e:
|
|
print(e.args[0])
|
|
|
|
if __name__ == "__main__":
|
|
app = wx.App()
|
|
FattureCCSRFrame(None, "Utility FattureCCSR")
|
|
app.MainLoop()
|