-
Notifications
You must be signed in to change notification settings - Fork 6
/
uDataMod.pas
421 lines (391 loc) · 14.1 KB
/
uDataMod.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
419
420
unit uDataMod;
interface
uses
System.SysUtils,
System.Classes,
ADOCS,
ADOXCS,
ADODS,
Data.DB,
Vcl.Dialogs,
Vcl.Forms;
type
TDM = class(TDataModule)
adodb: TWADODatabase;
dbCompany: TWADODataSet;
dbCompanyAddress1: TStringField;
dbCompanyAddress2: TStringField;
dbCompanyCity: TStringField;
dbCompanyCompanyName: TStringField;
dbCompanyCounty: TStringField;
dbCompanyID: TStringField;
dbCompanyState: TStringField;
dbCompanyZip: TStringField;
dbConsultations: TWADODataSet;
dbConsultationsConsultation: TStringField;
dbConsultationsCreated: TDateTimeField;
dbConsultationsID: TStringField;
dbConsultationsLinkToPatient: TStringField;
dbConsultationsStatus: TStringField;
dbConsultationsUsername: TStringField;
dbConsultationsVisited: TDateTimeField;
dbConsultLeft: TWADOQuery;
dbConsultLeftCreated: TDateTimeField;
dbConsultLeftFirstName: TStringField;
dbConsultLeftID: TStringField;
dbConsultLeftLastName: TStringField;
dbConsultLeftLinkToPatient: TStringField;
dbConsultLeftMiddleName: TStringField;
dbConsultLeftStatus: TStringField;
dbConsultLeftSuffix: TStringField;
dbConsultLeftUpdateSQL: TWADOUpdateSQL;
dbConsultLeftVisited: TDateTimeField;
dbConsultNew: TWADOQuery;
dbConsultNewCreated: TDateTimeField;
dbConsultNewFirstName: TStringField;
dbConsultNewID: TStringField;
dbConsultNewLastName: TStringField;
dbConsultNewLinkToPatient: TStringField;
dbConsultNewMiddleName: TStringField;
dbConsultNewStatus: TStringField;
dbConsultNewSuffix: TStringField;
dbConsultNewUpdateSQL: TWADOUpdateSQL;
dbConsultNewVisited: TDateTimeField;
dbConsultSeenDoctor: TWADOQuery;
dbConsultSeenDoctorCreated: TDateTimeField;
dbConsultSeenDoctorFirstName: TStringField;
dbConsultSeenDoctorID: TStringField;
dbConsultSeenDoctorLastName: TStringField;
dbConsultSeenDoctorLinkToPatient: TStringField;
dbConsultSeenDoctorMiddleName: TStringField;
dbConsultSeenDoctorStatus: TStringField;
dbConsultSeenDoctorSuffix: TStringField;
dbConsultSeenDoctorUpdateSQL: TWADOUpdateSQL;
dbConsultSeenDoctorVisited: TDateTimeField;
dbConsultVisited: TWADOQuery;
dbConsultVisitedCreated: TDateTimeField;
dbConsultVisitedFirstName: TStringField;
dbConsultVisitedID: TStringField;
dbConsultVisitedLastName: TStringField;
dbConsultVisitedLinkToPatient: TStringField;
dbConsultVisitedMiddleName: TStringField;
dbConsultVisitedStatus: TStringField;
dbConsultVisitedSuffix: TStringField;
dbConsultVisitedUpdateSQL: TWADOUpdateSQL;
dbConsultVisitedVisited: TDateTimeField;
dbDoctors: TWADODataSet;
dbDoctorsAvailability: TStringField;
dbDoctorsFirstName: TStringField;
dbDoctorsID: TStringField;
dbDoctorsLastName: TStringField;
dbDoctorsMiddleName: TStringField;
dbDoctorsSelection: TWADODataSet;
dbDoctorsSpeciality: TStringField;
dbDoctorsSuffix: TStringField;
dbDoctorsTitle: TStringField;
dbPatients: TWADODataSet;
dbPatientsFirstName: TStringField;
dbPatientsID: TStringField;
dbPatientsLastName: TStringField;
dbPatientsMiddleName: TStringField;
dbPatientsSelection: TWADODataSet;
dbPatientsSuffix: TStringField;
dbPrescriptions: TWADOQuery;
dbPrescriptionsCreated: TDateTimeField;
dbPrescriptionsDFirstName: TStringField;
dbPrescriptionsDLastName: TStringField;
dbPrescriptionsDMiddleName: TStringField;
dbPrescriptionsDoctor: TStringField;
dbPrescriptionsDSuffix: TStringField;
dbPrescriptionsID: TStringField;
dbPrescriptionsLinkToDoctor: TStringField;
dbPrescriptionsLinkToPatient: TStringField;
dbPrescriptionsMaster: TWADODataSet;
dbPrescriptionsMasterCreated: TDateTimeField;
dbPrescriptionsMasterID: TStringField;
dbPrescriptionsMasterLinkToDoctor: TStringField;
dbPrescriptionsMasterLinkToPatient: TStringField;
dbPrescriptionsMasterPrescription: TStringField;
dbPrescriptionsPatient: TStringField;
dbPrescriptionsPFirstName: TStringField;
dbPrescriptionsPLastName: TStringField;
dbPrescriptionsPMiddleName: TStringField;
dbPrescriptionsPrescription: TStringField;
dbPrescriptionsPSuffix: TStringField;
dbPrescriptionsTitle: TStringField;
dbPrescriptionsUpdateSQL: TWADOUpdateSQL;
dsCompany: TDataSource;
dsConsultations: TDataSource;
dsConsultLeft: TDataSource;
dsConsultNew: TDataSource;
dsConsultSeenDoctor: TDataSource;
dsConsultVisited: TDataSource;
dsDoctors: TDataSource;
dsDoctorsSelection: TDataSource;
dsPatients: TDataSource;
dsPatientsSelection: TDataSource;
dsPrescriptions: TDataSource;
OpenDBDialog: TOpenDialog;
procedure DataModuleCreate(Sender: TObject);
procedure dbConsultationsNewRecord(DataSet: TDataSet);
procedure dbConsultFilterRecord(DataSet: TDataSet; var Accept: Boolean);
procedure dbDoctorsNewRecord(DataSet: TDataSet);
procedure dbPatientsNewRecord(DataSet: TDataSet);
procedure dbPrescriptionsCalcFields(DataSet: TDataSet);
procedure dbPrescriptionsFilterRecord(DataSet: TDataSet; var Accept: Boolean);
procedure dbPrescriptionsMasterNewRecord(DataSet: TDataSet);
private
SearchKeyword: string;
public
function GetPatientNameByID(AID: string): string;
procedure SearchPrescriptions(AKeyword: string);
procedure SearchConsults(AKeyword: string);
procedure SearchPatients(AKeyword: string);
procedure SearchDoctors(AKeyword: string);
end;
var
DM: TDM;
const
IndexNew = 0;
IndexVisited = 1;
IndexSeenDoctor = 2;
IndexLeft = 3;
implementation
{%CLASSGROUP 'Vcl.Controls.TControl'}
{$R *.dfm}
procedure TDM.DataModuleCreate(Sender: TObject);
procedure OpenDatabase(sFilename: string);
begin
try
adodb.DatabaseConnect :=
'Provider=Microsoft.ACE.OLEDB.16.0;' +
'Data Source=' + sFilename + ';' +
'Persist Security Info=False';
adodb.Connected := true;
dbDoctors.Active := true;
dbPatients.Active := true;
dbConsultations.Active := true;
dbConsultNew.Active := true;
dbPrescriptionsMaster.Active := true;
dbPrescriptions.Active := true;
dbConsultVisited.Active := true;
dbConsultSeenDoctor.Active := true;
dbConsultLeft.Active := true;
except
on E: Exception do begin
ShowMessage('Error when opening the database: ' + E.Message);
Application.Terminate;
end;
end;
end;
var
sDatabase: string;
begin
sDatabase := ExtractFilePath(Paramstr(0)) + '..\..\Database\Windows10CRMDemo.accdb';
if FileExists(sDatabase) then begin
OpenDatabase(sDatabase);
end else begin
if OpenDBDialog.Execute then begin
OpenDatabase(OpenDBDialog.Filename);
end else begin
ShowMessage('Unable to open database.');
Application.Terminate;
end;
end;
end;
procedure TDM.dbPrescriptionsCalcFields(DataSet: TDataSet);
var
sTemp: string;
begin
sTemp := '';
if (dbPrescriptionsTitle.AsString <> '') then
sTemp := sTemp + dbPrescriptionsTitle.AsString + ' ';
if (dbPrescriptionsDFirstName.AsString <> '') then
sTemp := sTemp + dbPrescriptionsDFirstName.AsString + ' ';
if (dbPrescriptionsDMiddleName.AsString <> '') then
sTemp := sTemp + dbPrescriptionsDMiddleName.AsString + ' ';
if (dbPrescriptionsDLastName.AsString <> '') then
sTemp := sTemp + dbPrescriptionsDLastName.AsString + ' ';
if (dbPrescriptionsDSuffix.AsString <> '') then
sTemp := sTemp + dbPrescriptionsDSuffix.AsString + ' ';
dbPrescriptionsDoctor.AsString := Trim(sTemp);
sTemp := '';
if (dbPrescriptionsPFirstName.AsString <> '') then
sTemp := sTemp + dbPrescriptionsPFirstName.AsString + ' ';
if (dbPrescriptionsPMiddleName.AsString <> '') then
sTemp := sTemp + dbPrescriptionsPMiddleName.AsString + ' ';
if (dbPrescriptionsPLastName.AsString <> '') then
sTemp := sTemp + dbPrescriptionsPLastName.AsString + ' ';
if (dbPrescriptionsPSuffix.AsString <> '') then
sTemp := sTemp + dbPrescriptionsPSuffix.AsString + ' ';
dbPrescriptionsPatient.AsString := Trim(sTemp);
end;
procedure TDM.dbConsultationsNewRecord(DataSet: TDataSet);
var
uid: TGuid;
res: HResult;
begin
res := CreateGuid(Uid);
if res = S_OK then begin
dbConsultationsID.AsString := GuidToString(Uid);
end;
end;
procedure TDM.dbDoctorsNewRecord(DataSet: TDataSet);
var
uid: TGuid;
res: HResult;
begin
res := CreateGuid(Uid);
if res = S_OK then begin
dbDoctorsID.AsString := GuidToString(Uid);
end;
end;
procedure TDM.dbPatientsNewRecord(DataSet: TDataSet);
var
uid: TGuid;
res: HResult;
begin
res := CreateGuid(Uid);
if res = S_OK then begin
dbPatientsID.AsString := GuidToString(Uid);
end;
end;
procedure TDM.dbPrescriptionsMasterNewRecord(DataSet: TDataSet);
var
uid: TGuid;
res: HResult;
begin
res := CreateGuid(Uid);
if res = S_OK then begin
dbPrescriptionsMasterID.AsString := GuidToString(Uid);
end;
end;
//==================================================================================================
// SEARCH AND FILTERING
//==================================================================================================
function TDM.GetPatientNameByID(AID: string): string;
begin
if dbPatients.Active then begin
if dbPatients.Locate('ID', AID, []) then begin
Result := '';
if (dbPatientsFirstName.AsString <> '') then begin
Result := Result + dbPatientsFirstName.AsString + ' ';
end;
if (dbPatientsMiddleName.AsString <> '') then begin
Result := Result + dbPatientsMiddleName.AsString + ' ';
end;
if (dbPatientsLastName.AsString <> '') then begin
Result := Result + dbPatientsLastName.AsString + ' ';
end;
if (dbPatientsSuffix.AsString <> '') then begin
Result := Result + dbPatientsSuffix.AsString + ' ';
end;
Result := Trim(Result);
end;
end;
end;
procedure TDM.dbPrescriptionsFilterRecord(DataSet: TDataSet; var Accept: Boolean);
var
DoctorName: string;
PatientName: string;
begin
DoctorName := Uppercase(Dataset.Fields[1].AsString + ' ' + Dataset.Fields[2].AsString + ' ' +
Dataset.Fields[3].AsString + ' ' + Dataset.Fields[4].AsString + ' ' + Dataset.Fields[5].AsString);
PatientName := Uppercase(Dataset.Fields[6].AsString + ' ' + Dataset.Fields[7].AsString + ' ' +
Dataset.Fields[8].AsString + ' ' + Dataset.Fields[9].AsString);
Accept := (Pos(SearchKeyword, DoctorName) > 0)
or (Pos(SearchKeyword, PatientName) > 0)
or (Pos(SearchKeyword, Dataset.Fields[10].AsString) > 0);
end;
procedure TDM.dbConsultFilterRecord(DataSet: TDataSet; var Accept: Boolean);
var
PatientName: string;
begin
PatientName := Uppercase(Dataset.Fields[5].AsString + ' ' + Dataset.Fields[6].AsString + ' ' +
Dataset.Fields[7].AsString + ' ' + Dataset.Fields[8].AsString);
if (SearchKeyword.IsEmpty) then begin
if (DataSet.Name = dbConsultNew.Name) then begin
Accept := (Dataset.Fields[4].AsString = 'Booked Today');
end;
if (DataSet.Name = dbConsultVisited.Name) then begin
Accept := (Dataset.Fields[4].AsString = 'In Clinic');
end;
if (DataSet.Name = dbConsultSeenDoctor.Name) then begin
Accept := (Dataset.Fields[4].AsString = 'Seen Doctor');
end;
if (DataSet.Name = dbConsultLeft.Name) then begin
Accept := (Dataset.Fields[4].AsString = 'Left');
end;
end else begin
if (DataSet.Name = dbConsultNew.Name) then begin
Accept := (Dataset.Fields[4].AsString = 'Booked Today') and (Pos(SearchKeyword, PatientName) > 0);
end;
if (DataSet.Name = dbConsultVisited.Name) then begin
Accept := (Dataset.Fields[4].AsString = 'In Clinic') and (Pos(SearchKeyword, PatientName) > 0);
end;
if (DataSet.Name = dbConsultSeenDoctor.Name) then begin
Accept := (Dataset.Fields[4].AsString = 'Seen Doctor') and (Pos(SearchKeyword, PatientName) > 0);
end;
if (DataSet.Name = dbConsultLeft.Name) then begin
Accept := (Dataset.Fields[4].AsString = 'Left') and (Pos(SearchKeyword, PatientName) > 0);
end;
end;
end;
procedure TDM.SearchPrescriptions(AKeyword: string);
begin
if (Trim(AKeyword).IsEmpty) then begin
dbPrescriptions.Filtered := false;
end else begin
dbPrescriptions.Filtered := false;
SearchKeyword := UpperCase(AKeyword);
dbPrescriptions.Filtered := true;
SearchKeyword := '';
end;
end;
procedure TDM.SearchConsults(AKeyword: string);
begin
SearchKeyword := UpperCase(AKeyword);
dbConsultNew.Filtered := false;
dbConsultNew.Filtered := true;
dbConsultVisited.Filtered := false;
dbConsultVisited.Filtered := true;
dbConsultSeenDoctor.Filtered := false;
dbConsultSeenDoctor.Filtered := true;
dbConsultLeft.Filtered := false;
dbConsultLeft.Filtered := true;
SearchKeyword := '';
end;
procedure TDM.SearchPatients(AKeyword: string);
begin
if (Trim(AKeyword).IsEmpty) then begin
dbPatients.Filtered := false;
end else begin
dbPatients.Filtered := false;
dbPatients.Filter := Format(
'(FirstName LIKE ''*%s*'') ' +
'OR (MiddleName LIKE ''*%s*'') ' +
'OR (LastName LIKE ''*%s*'') ' +
'OR (Suffix LIKE ''*%s*'')',
[AKeyword, AKeyword, AKeyword, AKeyword]);
dbPatients.Filtered := true;
end;
end;
procedure TDM.SearchDoctors(AKeyword: string);
begin
if (Trim(AKeyword).IsEmpty) then begin
dbDoctors.Filtered := false;
end else begin
dbDoctors.Filtered := false;
dbDoctors.Filter := Format(
'(FirstName LIKE ''*%s*'') ' +
'OR (MiddleName LIKE ''*%s*'') ' +
'OR (LastName LIKE ''*%s*'') ' +
'OR (Suffix LIKE ''*%s*'') ' +
'OR (Title LIKE ''*%s*'') ' +
'OR (Speciality LIKE ''*%s*'') ' +
'OR (Availability LIKE ''*%s*'')',
[AKeyword, AKeyword, AKeyword, AKeyword, AKeyword, AKeyword, AKeyword]);
dbDoctors.Filtered := true;
end;
end;
end.