ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/ns_dev/Python/NinoCode/Active_prgs/Evidox/IncomingProdAnalyzer/DatReportDialog.py
Revision: 695
Committed: Wed May 13 19:22:06 2020 UTC (5 years, 10 months ago) by nino.borges
Content type: text/x-python
File size: 319 byte(s)
Log Message:
Updating the main function to do a proper return and added some testing to the bottom to run it in non GUI mode to do some testing. shell for the dat report dialog too.

File Contents

# Content
1 """
2
3 DatReportDialog
4
5 Created by
6 Emanuel Borges
7 2020.05.13
8
9 This dialog displays the results of the DAT analysis.
10
11 """
12
13
14
15
16 import wx
17
18 class DatReportDialog(wx.Dialog):
19
20 def __init__(self, parent, totalRecordCount, fullFieldList, populatedFieldsList, emptyFieldsList, parsingErrorCount):
21