This repository has been archived by the owner on Jul 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
wizard.py
157 lines (111 loc) · 5.83 KB
/
wizard.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
import sys
import os
import re
from PyQt5.QtWidgets import QApplication, QWidget, QWizard, QLabel,QWizardPage, QProgressBar, QVBoxLayout, QPushButton, QFileDialog, QLineEdit, QProgressBar
from PyQt5.QtGui import QIcon
class TrimmerWizard(QWizard):
def __init__(self, parent=None):
super(TrimmerWizard, self).__init__(parent)
self.addPage(InfoPage(self))
self.addPage(LoadPage(self))
self.addPage(TransformPage(self))
self.setWindowTitle("CityVizor KXX Remover v0.1")
self.resize(640,480)
class InfoPage(QWizardPage):
def __init__(self, parent=None):
super(InfoPage, self).__init__(parent)
infoText = QLabel(self)
infoText.setWordWrap(True)
infoText.setText("Tento skript projde soubor *.KXX exportu z účetnictví firmy Gordic a vytvoří nový soubor, kde bude u všech textovích polí zachován pouze první řádek textu.\n\nToto je vývojová verze a je proto bez záruky.\n\nPro pokračování stiskněte tlačítko Další.")
layout = QVBoxLayout()
layout.addWidget(infoText)
class LoadPage(QWizardPage):
def __init__(self, parent=None):
super(LoadPage, self).__init__(parent)
btnLoadSource = QPushButton('Načíst zdrojový soubor KXX', self)
btnLoadSource.clicked.connect(self.openFileNameDialog)
self.textbox = QLineEdit(self)
layout = QVBoxLayout()
layout.addWidget(btnLoadSource)
layout.addWidget(self.textbox)
self.registerField("sourcePath*", self.textbox)
self.setLayout(layout)
def getSourcePath(self):
return self.textbox.text()
def openFileNameDialog(self):
options = QFileDialog.Options()
fileName = QFileDialog.getOpenFileName(self,"Vyberte zdrojový KXX soubor", "","KXX Files (*.kxx)", options=options)
if fileName:
self.textbox.setText(fileName[0])
class TransformPage(QWizardPage):
def __init__(self, parent=None):
super(TransformPage, self).__init__(parent)
self.started = False
self.complete = False
self.progress = QProgressBar(self)
self.progress.setValue(0)
self.status = QLabel(self)
self.status.setText("Klikněte na tlačítko Start pro začátek konverze")
btnStart = QPushButton('Start', self)
btnStart.clicked.connect(self.transform)
layout = QVBoxLayout()
layout.addWidget(self.progress)
layout.addWidget(btnStart)
layout.addWidget(self.status)
self.setLayout(layout)
def isComplete(self):
return self.complete
def file_len(self,fname):
with open(fname) as f:
for i, l in enumerate(f):
pass
return i + 1
def transform(self):
if self.started:
return
sourcePath = self.field("sourcePath")
sourceName = os.path.splitext(sourcePath)[0]
sourceLines = self.file_len(sourcePath)
targetPath = sourceName + "_upraveno.kxx"
logPath = sourceName + "_zmeny.csv"
if not os.path.isfile(sourcePath):
self.status.setText("Zdrojový soubor nenalezen.")
return
self.started = True
try:
with open(sourcePath,"r",encoding="windows-1250") as sourceFile:
try:
with open(targetPath,"w",encoding="windows-1250") as targetFile:
try:
with open(logPath,"w",encoding="windows-1250") as logFile:
logFile.write("\"Typ záznamu\";\"Číslo záznamu\";\"Změna\";\"\"\n")
for lineNum, line in enumerate(sourceFile):
line = line.strip()
p = re.compile('^(G\/\#000\d)(\d+).*\\\\n')
match = p.match(line)
if match:
parts = line.split("\\n")
targetFile.write(parts[0])
logFile.write("\"" + match.group(1) + "\";\"" + match.group(2) + "\";\"Původní:\";\"" + line.replace("\"","\"\"") + "\"\n")
logFile.write(";;\"Nové:\";\"" + parts[0].replace("\"","\"\"") + "\"\n\n")
else:
targetFile.write(line)
self.progress.setValue((lineNum + 1) / sourceLines * 100)
self.status.setText("Řádek %s z %s" % (str(lineNum + 1), str(sourceLines)))
self.status.setText("Hotovo!\n\nVýsledek je uložen v souboru " + os.path.basename(targetPath) + "\nSeznam změn je uložen v souboru " + os.path.basename(logPath))
self.complete = True
self.completeChanged.emit()
return
except IOError as x:
self.status.setText("Nastala chyba při otevírání souboru se seznamem změn.\n - Je v adresáři povolen zápis?\n - Není soubor otevřen v jiné aplikaci?")
except IOError as x:
self.status.setText("Nastala chyba při otevírání cílového souboru.\n - Je v adresáři povolen zápis?\n - Není soubor otevřen v jiné aplikaci?")
except IOError as x:
self.status.setText("Nastala chyba při otevírání zdrojového souboru.")
self.started = False
if __name__ == '__main__':
import sys
app = QApplication(sys.argv)
wizard = TrimmerWizard()
wizard.show()
sys.exit(app.exec_())