-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dlgBatchProgress.pas
418 lines (376 loc) · 11.9 KB
/
dlgBatchProgress.pas
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
unit dlgBatchProgress;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ComCtrls, Vcl.StdCtrls,
Vcl.ExtCtrls,
SCMDefines, FireDAC.Comp.Client, dmSCM, frxExportPDF,
FireDAC.Stan.Param;
type
EPrintStatus = (psUserCancelled, psPrinterError, psOK, psExportError);
TBatchProgress = class(TForm)
Panel1: TPanel;
Panel2: TPanel;
Label2: TLabel;
btnCancel: TButton;
Panel3: TPanel;
Label1: TLabel;
ProgressBar1: TProgressBar;
procedure btnCancelClick(Sender: TObject);
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
fExportFileName: string;
DoAbort: boolean;
// function AssertConnection(): boolean; //--
function BuildExportFileName(RptType: scmRptType;
SendToFileType: scmSendToFileType; EventNum, HeatNum: integer): string;
function BatchPrintMarshall(PrinterOrFolderName: String;
SendToMode: scmSendToMode; SendToFileType: scmSendToFileType;
var ErrCount: integer; EventID: integer;
var PrintStatus: EPrintStatus): boolean;
function BatchPrintTimeKeeper(PrinterOrFolderName: String;
SendToMode: scmSendToMode; SendToFileType: scmSendToFileType;
var ErrCount: integer; HeatID: integer;
var PrintStatus: EPrintStatus): boolean;
public
{ Public declarations }
function BatchPrint(
// REPORT TYPE - MARSHALL or TIMEKEEPER
RptType: scmRptType;
// PRINTER NAME OR FOLDER NAME FOR FILE EXPORT
PrinterOrFolderName: String;
// NUMBER OF ERRORS
var ErrCount: integer;
// DEFAULT - SEND TO PRINTER
SendToMode: scmSendToMode = stmSendToPrinter;
// DEFAULT - NOT APPLICABLE
SendToFileType: scmSendToFileType = sftNA): boolean;
end;
var
BatchProgress: TBatchProgress;
implementation
{$R *.dfm}
uses rptTimeKeeperReportA, rptMarshallReportA, Data.DB, system.UITypes;
{ TBatchProgress }
{
function TBatchProgress.AssertConnection: boolean;
begin
result := false;
if Assigned(SCM) then
if SCM.SCMActive then
result := true;
end;
}
function TBatchProgress.BatchPrint(RptType: scmRptType;
PrinterOrFolderName: String; var ErrCount: integer; SendToMode: scmSendToMode;
SendToFileType: scmSendToFileType): boolean;
var
ds: TDataSet;
EventNum, HeatNum, EventID, HeatID: integer;
rptDetails, s: String;
PrintStatus: EPrintStatus;
begin
ErrCount := 0;
rptDetails := '';
PrintStatus := psOK;
// for code readability...
ds := SCM.dsEvent.DataSet;
// are there events in this session?
if (ds.RecordCount > 0) then
begin
ProgressBar1.Max := ds.RecordCount;
ProgressBar1.Min := 0;
ProgressBar1.Position := 0;
// iterate over the events ...
DoAbort := false;
Panel1.Caption := 'Batch Process Reports. Found ' +
IntToStr(ProgressBar1.Max) + ' events.';
if (SendToMode = stmSendToFile) then
Panel1.Caption := Panel1.Caption + ' Export to file.'
else
Panel1.Caption := Panel1.Caption + ' Send to printer.';
end;
ds.First;
while not ds.Eof do
begin
EventID := ds.FieldByName('EventID').AsInteger;
EventNum := ds.FieldByName('EventNum').AsInteger;
rptDetails := 'Currently processing event# ' + Format('%2.2d', [EventNum]);
case RptType of
rtMarshall:
begin
if (SendToMode = stmSendToFile) then
begin
Label1.Caption := rptDetails;
fExportFileName := BuildExportFileName(RptType, SendToFileType,
EventNum, 0);
end;
// CALL PROCEDURE - OUTPUT
BatchPrintMarshall(PrinterOrFolderName, SendToMode,
SendToFileType, ErrCount, EventID, PrintStatus);
end;
rtTimeKeeper:
// Iterate over heats. Are there heats?
begin
if not SCM.dsHeat.DataSet.IsEmpty then
begin
SCM.dsHeat.DataSet.First;
while not SCM.dsHeat.DataSet.Eof do
begin
HeatID := SCM.dsHeat.DataSet.FieldByName('HeatID').AsInteger;
HeatNum := SCM.dsHeat.DataSet.FieldByName('HeatNum').AsInteger;
// append additional report details
// maintains string length
s := rptDetails + ' heat# ' + Format('%2.2d', [HeatNum]);
if (SendToMode = stmSendToFile) then
begin
Label1.Caption := s;
fExportFileName := BuildExportFileName(RptType, SendToFileType,
EventNum, HeatNum);
end;
// CALL PROCEDURE - OUTPUT
BatchPrintTimeKeeper(PrinterOrFolderName, SendToMode,
SendToFileType, ErrCount, HeatID, PrintStatus);
// ABORT ... ABORT Will Roberson ....
if (PrintStatus <> psOK) then
break;
SCM.dsHeat.DataSet.Next;
end;
end;
end;
end;
Label2.Caption := 'Errors: ' + IntToStr(ErrCount);
// ABORT ... ABORT Will Roberson ....
if (DoAbort) or (PrintStatus <> psOK) then
break;
ProgressBar1.Position := ProgressBar1.Position + 1;
ds.Next;
end;
result := true;
end;
function TBatchProgress.BatchPrintMarshall(PrinterOrFolderName: String;
SendToMode: scmSendToMode; SendToFileType: scmSendToFileType;
var ErrCount: integer; EventID: integer;
var PrintStatus: EPrintStatus): boolean;
var
rpt: TMarshallReportA;
frxPDFExport: TfrxPDFExport;
msg: String;
begin
ErrCount := 0;
PrintStatus := psOK;
rpt := TMarshallReportA.Create(self);
// note: select printer dialog is enabled (by default)....
// disable select printer dialog ....
rpt.frxReport1.PrintOptions.ShowDialog := false;
// set printer name
rpt.frxReport1.PrintOptions.Printer := PrinterOrFolderName;
// iterate over events
rpt.qryReport.Close();
rpt.qryReport.ParamByName('EID').AsInteger := EventID;
rpt.qryReport.Prepare(); // ensures params changes are used
rpt.qryReport.Open();
if rpt.qryReport.Active then
begin
rpt.frxReport1.PrepareReport;
case SendToMode of
stmSendToPrinter:
if not rpt.frxReport1.Print then
begin
if rpt.frxReport1.Errors.Text.IsEmpty then
PrintStatus := psUserCancelled
else
begin
PrintStatus := psPrinterError;
ErrCount := ErrCount + 1;
end;
end;
stmSendToFile:
begin
case SendToFileType of
sftPDF:
begin
frxPDFExport := TfrxPDFExport.Create(self);
frxPDFExport.DefaultPath := PrinterOrFolderName;
frxPDFExport.FileName := fExportFileName;
frxPDFExport.ShowDialog := false;
if not rpt.frxReport1.Export(frxPDFExport) then
begin
if rpt.frxReport1.Errors.Text.IsEmpty then
PrintStatus := psUserCancelled
else
begin
PrintStatus := psExportError;
ErrCount := ErrCount + 1;
end;
end;
frxPDFExport.free;
end;
// not implemented - yet
sftXLS, sftHTML, sftNA:
;
end;
end;
end;
// BEFORE THE REPORT IS CLOSED ....
// Handle printer errors
if (PrintStatus = psPrinterError) then
begin
// display error message and exit
msg := 'The printer reported an error ...\n';
msg := msg + rpt.frxReport1.Errors.Text + '\n';
msg := msg + 'Printing will be aborted.\n';
MessageDlg(msg, mtError, [mbOK], 0);
end;
if (PrintStatus = psExportError) then
begin
// display error message and exit
msg := 'An EXPORT error occurred ...\n';
msg := msg + rpt.frxReport1.Errors.Text + '\n';
msg := msg + 'Export of report will be aborted.\n';
MessageDlg(msg, mtError, [mbOK], 0);
end;
rpt.qryReport.Close;
rpt.free;
end;
if (ErrCount = 0) then
result := true
else
result := false;
end;
function TBatchProgress.BatchPrintTimeKeeper(PrinterOrFolderName: String;
SendToMode: scmSendToMode; SendToFileType: scmSendToFileType;
var ErrCount: integer; HeatID: integer;
var PrintStatus: EPrintStatus): boolean;
var
rpt: TTimeKeeperReportA;
frxPDFExport: TfrxPDFExport;
msg: String;
begin
ErrCount := 0;
PrintStatus := psOK;
rpt := TTimeKeeperReportA.Create(self);
// note: select printer dialog is enabled (by default)....
// disable select printer dialog ....
rpt.frxReport1.PrintOptions.ShowDialog := false;
// set printer name
rpt.frxReport1.PrintOptions.Printer := PrinterOrFolderName;
// iterate over heats
rpt.qryReport.Close;
rpt.qryReport.ParamByName('HID').AsInteger := HeatID;
rpt.qryReport.Prepare; // ensures params changes are used
rpt.qryReport.Open;
if rpt.qryReport.Active then
begin
rpt.frxReport1.PrepareReport;
case SendToMode of
stmSendToPrinter:
if not rpt.frxReport1.Print then
begin
if rpt.frxReport1.Errors.Text.IsEmpty then
PrintStatus := psUserCancelled
else
begin
PrintStatus := psPrinterError;
ErrCount := ErrCount + 1;
end;
end;
stmSendToFile:
begin
case SendToFileType of
sftPDF:
begin
frxPDFExport := TfrxPDFExport.Create(self);
frxPDFExport.DefaultPath := PrinterOrFolderName;
frxPDFExport.FileName := fExportFileName;
frxPDFExport.ShowDialog := false;
if not rpt.frxReport1.Export(frxPDFExport) then
begin
if rpt.frxReport1.Errors.Text.IsEmpty then
PrintStatus := psUserCancelled
else
begin
PrintStatus := psExportError;
ErrCount := ErrCount + 1;
end;
end;
frxPDFExport.free;
end;
// not implemented - yet
sftXLS, sftHTML, sftNA:
;
end;
end;
end;
// BEFORE THE REPORT IS CLOSED ....
// Handle printer errors
if (PrintStatus = psPrinterError) then
begin
// display error message and exit
msg := 'The printer reported an error ...\n';
msg := msg + rpt.frxReport1.Errors.Text + '\n';
msg := msg + 'Printing will be aborted.\n';
MessageDlg(msg, mtError, [mbOK], 0);
end;
if (PrintStatus = psExportError) then
begin
// display error message and exit
msg := 'An EXPORT error occurred ...\n';
msg := msg + rpt.frxReport1.Errors.Text + '\n';
msg := msg + 'Export of report will be aborted.\n';
MessageDlg(msg, mtError, [mbOK], 0);
end;
rpt.qryReport.Close;
rpt.free;
end;
if (ErrCount = 0) then
result := true
else
result := false;
end;
procedure TBatchProgress.btnCancelClick(Sender: TObject);
begin
DoAbort := true;
end;
function TBatchProgress.BuildExportFileName(RptType: scmRptType;
SendToFileType: scmSendToFileType; EventNum, HeatNum: integer): string;
var
dt: TDateTime;
s, fn: string;
begin
dt := SCM.Session_Start;
// SESSION DATE
DateTimeToString(s, 'yyyymmdd', dt);
fn := s;
// EVENT NUMBER
fn := fn + '-' + Format('%2.2d', [EventNum]);
// HEAT NUMBER
// re-assign value
if (RptType = rtTimeKeeper) then
fn := fn + '-' + Format('%2.2d', [HeatNum]);
// FILETYPE EXTENSION
case SendToFileType of
sftPDF:
fn := fn + '.PDF';
sftXLS:
fn := fn + '.XLS';
sftHTML:
fn := fn + '.HTML';
sftNA:
;
end;
// PREFIX WITH REPORT TYPE
if (RptType = rtMarshall) then
fn := 'Marshall-' + fn
else if (RptType = rtTimeKeeper) then
fn := 'TimeKeeper-' + fn;
result := fn;
end;
procedure TBatchProgress.FormCreate(Sender: TObject);
begin
DoAbort := false;
Panel1.Caption := 'Batch Process Reports.';
end;
end.