source: cprs/trunk/CPRS-Chart/Orders/fODAuto.pas@ 829

Last change on this file since 829 was 829, checked in by Kevin Toppenberg, 14 years ago

Upgrade to version 27

File size: 2.5 KB
Line 
1unit fODAuto;
2
3interface
4
5uses
6 Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
7 fODBase, StdCtrls, ComCtrls, ExtCtrls, ORFn, ORCtrls,
8 VA508AccessibilityManager;
9
10type
11 TfrmODAuto = class(TfrmODBase)
12 Label1: TLabel;
13 public
14 procedure InitDialog; override;
15 procedure SetupDialog(OrderAction: Integer; const ID: string); override;
16 procedure Validate(var AnErrMsg: string); override;
17 end;
18
19var
20 frmODAuto: TfrmODAuto;
21
22implementation
23
24{$R *.DFM}
25
26uses rODBase, rOrders, fTemplateDialog, uTemplateFields, rTemplates, uConst, uTemplates,
27 rConsults, uCore, uODBase;
28
29procedure TfrmODAuto.InitDialog;
30begin
31 inherited;
32 // nothing for now
33end;
34
35procedure TfrmODAuto.Validate(var AnErrMsg: string);
36var
37 cptn, tmp, DocInfo: string;
38 TempSL: TStringList;
39 LType: TTemplateLinkType;
40 IEN: integer;
41 HasObjects: boolean;
42
43begin
44 inherited;
45 DocInfo := '';
46 LType := DisplayGroupToLinkType(Responses.DisplayGroup);
47 tmp := Responses.EValueFor('COMMENT', 1);
48 ExpandOrderObjects(tmp, HasObjects);
49 Responses.OrderContainsObjects := Responses.OrderContainsObjects or HasObjects;
50 if (LType <> ltNone) or HasTemplateField(tmp) then
51 begin
52 cptn := 'Reason for Request: ' + Responses.EValueFor('ORDERABLE', 1);
53 case LType of
54 ltConsult: IEN := StrToIntDef(GetServiceIEN(Responses.IValueFor('ORDERABLE', 1)),0);
55 ltProcedure: IEN := StrToIntDef(GetProcedureIEN(Responses.IValueFor('ORDERABLE', 1)),0);
56 else IEN := 0;
57 end;
58 if IEN <> 0 then
59 ExecuteTemplateOrBoilerPlate(tmp, IEN, LType, nil, cptn, DocInfo)
60 else
61 CheckBoilerplate4Fields(tmp, cptn);
62
63 if tmp <> '' then
64 Responses.Update('COMMENT', 1, TX_WPTYPE, tmp)
65 else
66 begin
67 TempSL := TStringList.Create;
68 try
69 TempSL.Text := Responses.EValueFor('COMMENT', 1);
70 Convert2LMText(TempSL);
71 Responses.Update('COMMENT', 1, TX_WPTYPE, TempSL.Text);
72 finally
73 TempSL.Free;
74 end;
75 end;
76 end;
77end;
78
79procedure TfrmODAuto.SetupDialog(OrderAction: Integer; const ID: string);
80var
81 DialogNames: TDialogNames;
82begin
83 inherited; // Responses is already loaded here
84 AutoAccept := True;
85 StatusText('Loading Dialog Definition');
86 FillerID := FillerIDForDialog(DialogIEN);
87 IdentifyDialog(DialogNames, DialogIEN);
88 Responses.Dialog := DialogNames.BaseName; // loads formatting info
89 StatusText('');
90end;
91
92end.
Note: See TracBrowser for help on using the repository browser.