| [459] | 1 | unit fConsult513Prt; | 
|---|
|  | 2 |  | 
|---|
|  | 3 | interface | 
|---|
|  | 4 |  | 
|---|
|  | 5 | uses | 
|---|
|  | 6 | Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, | 
|---|
|  | 7 | fAutoSz, ORCtrls, StdCtrls, Mask, ORNet, ORFn, ComCtrls; | 
|---|
|  | 8 |  | 
|---|
|  | 9 | type | 
|---|
|  | 10 | Tfrm513Print = class(TfrmAutoSz) | 
|---|
|  | 11 | grpChooseCopy: TGroupBox; | 
|---|
|  | 12 | radChartCopy: TRadioButton; | 
|---|
|  | 13 | radWorkCopy: TRadioButton; | 
|---|
|  | 14 | grpDevice: TGroupBox; | 
|---|
|  | 15 | lblMargin: TLabel; | 
|---|
|  | 16 | lblLength: TLabel; | 
|---|
|  | 17 | txtRightMargin: TMaskEdit; | 
|---|
|  | 18 | txtPageLength: TMaskEdit; | 
|---|
|  | 19 | cmdOK: TButton; | 
|---|
|  | 20 | cmdCancel: TButton; | 
|---|
|  | 21 | lblConsultTitle: TMemo; | 
|---|
|  | 22 | cboDevice: TORComboBox; | 
|---|
|  | 23 | lblPrintTo: TLabel; | 
|---|
|  | 24 | dlgWinPrinter: TPrintDialog; | 
|---|
|  | 25 | chkDefault: TCheckBox; | 
|---|
|  | 26 | procedure cboDeviceNeedData(Sender: TObject; const StartFrom: String; | 
|---|
|  | 27 | Direction, InsertAt: Integer); | 
|---|
|  | 28 | procedure FormCreate(Sender: TObject); | 
|---|
|  | 29 | procedure cboDeviceChange(Sender: TObject); | 
|---|
|  | 30 | procedure radChartCopyClick(Sender: TObject); | 
|---|
|  | 31 | procedure radWorkCopyClick(Sender: TObject); | 
|---|
|  | 32 | procedure cmdOKClick(Sender: TObject); | 
|---|
|  | 33 | procedure cmdCancelClick(Sender: TObject); | 
|---|
|  | 34 | procedure FormDestroy(Sender: TObject); | 
|---|
|  | 35 | private | 
|---|
|  | 36 | { Private declarations } | 
|---|
|  | 37 | FConsult: Integer; | 
|---|
|  | 38 | FReportText: TRichEdit; | 
|---|
|  | 39 | procedure DisplaySelectDevice; | 
|---|
|  | 40 | public | 
|---|
|  | 41 | { Public declarations } | 
|---|
|  | 42 | end; | 
|---|
|  | 43 |  | 
|---|
|  | 44 | procedure PrintSF513(AConsult: Longint; AConsultTitle: string); | 
|---|
|  | 45 |  | 
|---|
|  | 46 | implementation | 
|---|
|  | 47 |  | 
|---|
|  | 48 | {$R *.DFM} | 
|---|
|  | 49 |  | 
|---|
|  | 50 | uses rCore, rConsults, Printers, rReports, uCore; | 
|---|
|  | 51 |  | 
|---|
|  | 52 | const | 
|---|
|  | 53 | TX_NODEVICE = 'A device must be selected to print, or press ''Cancel'' to not print.'; | 
|---|
|  | 54 | TX_NODEVICE_CAP = 'Device Not Selected'; | 
|---|
|  | 55 | TX_ERR_CAP = 'Print Error'; | 
|---|
|  | 56 | TX_QUEUED_CAP = 'Printing Report' ; | 
|---|
|  | 57 | PAGE_BREAK = '**PAGE BREAK**'; | 
|---|
|  | 58 |  | 
|---|
|  | 59 | procedure PrintSF513(AConsult: Longint; AConsultTitle: string); | 
|---|
|  | 60 | { displays a form that prompts for a device and then prints the SF513 } | 
|---|
|  | 61 | var | 
|---|
|  | 62 | frm513Print: Tfrm513Print; | 
|---|
|  | 63 | DefPrt: string; | 
|---|
|  | 64 | begin | 
|---|
|  | 65 | frm513Print := Tfrm513Print.Create(Application); | 
|---|
|  | 66 | try | 
|---|
|  | 67 | ResizeFormToFont(TForm(frm513Print)); | 
|---|
|  | 68 | with frm513Print do | 
|---|
|  | 69 | begin | 
|---|
|  | 70 | lblConsultTitle.Text := AConsultTitle; | 
|---|
|  | 71 | FConsult := AConsult; | 
|---|
|  | 72 | DefPrt := GetDefaultPrinter(User.Duz, Encounter.Location); | 
|---|
|  | 73 | if User.CurrentPrinter = '' then User.CurrentPrinter := DefPrt; | 
|---|
|  | 74 | with cboDevice do | 
|---|
|  | 75 | begin | 
|---|
|  | 76 | if Printer.Printers.Count > 0 then | 
|---|
|  | 77 | begin | 
|---|
|  | 78 | Items.Add('WIN;Windows Printer^Windows Printer'); | 
|---|
|  | 79 | Items.Add('^--------------------VistA Printers----------------------'); | 
|---|
|  | 80 | end; | 
|---|
|  | 81 | if User.CurrentPrinter <> '' then | 
|---|
|  | 82 | begin | 
|---|
|  | 83 | InitLongList(Piece(User.CurrentPrinter, ';', 2)); | 
|---|
|  | 84 | SelectByID(User.CurrentPrinter); | 
|---|
|  | 85 | end | 
|---|
|  | 86 | else | 
|---|
|  | 87 | InitLongList(''); | 
|---|
|  | 88 | end; | 
|---|
|  | 89 | if (DefPrt = 'WIN;Windows Printer') and | 
|---|
|  | 90 | (User.CurrentPrinter = DefPrt) then | 
|---|
|  | 91 | cmdOKClick(frm513Print) | 
|---|
|  | 92 | else | 
|---|
|  | 93 | ShowModal; | 
|---|
|  | 94 | end; | 
|---|
|  | 95 | finally | 
|---|
|  | 96 | frm513Print.Release; | 
|---|
|  | 97 | end; | 
|---|
|  | 98 | end; | 
|---|
|  | 99 |  | 
|---|
|  | 100 | procedure Tfrm513Print.FormCreate(Sender: TObject); | 
|---|
|  | 101 | begin | 
|---|
|  | 102 | inherited; | 
|---|
|  | 103 | FReportText := TRichEdit.Create(Self); | 
|---|
|  | 104 | with FReportText do | 
|---|
|  | 105 | begin | 
|---|
|  | 106 | Parent := Self; | 
|---|
|  | 107 | Visible := False; | 
|---|
|  | 108 | Width := 600; | 
|---|
|  | 109 | end; | 
|---|
|  | 110 | end; | 
|---|
|  | 111 |  | 
|---|
|  | 112 | procedure Tfrm513Print.DisplaySelectDevice; | 
|---|
|  | 113 | begin | 
|---|
|  | 114 | with cboDevice, lblPrintTo do | 
|---|
|  | 115 | begin | 
|---|
|  | 116 | if radChartCopy.Checked then Caption := 'Print Chart Copy on:  ' + Piece(ItemID, ';', 2); | 
|---|
|  | 117 | if radWorkCopy.Checked then Caption := 'Print Work Copy on:  ' + Piece(ItemID, ';', 2); | 
|---|
|  | 118 | end; | 
|---|
|  | 119 | end; | 
|---|
|  | 120 |  | 
|---|
|  | 121 | procedure Tfrm513Print.cboDeviceNeedData(Sender: TObject; const StartFrom: string; | 
|---|
|  | 122 | Direction, InsertAt: Integer); | 
|---|
|  | 123 | begin | 
|---|
|  | 124 | inherited; | 
|---|
|  | 125 | cboDevice.ForDataUse(SubsetOfDevices(StartFrom, Direction)); | 
|---|
|  | 126 | end; | 
|---|
|  | 127 |  | 
|---|
|  | 128 | procedure Tfrm513Print.cboDeviceChange(Sender: TObject); | 
|---|
|  | 129 | begin | 
|---|
|  | 130 | inherited; | 
|---|
|  | 131 | with cboDevice do if ItemIndex > -1 then | 
|---|
|  | 132 | begin | 
|---|
|  | 133 | txtRightMargin.Text := Piece(Items[ItemIndex], '^', 4); | 
|---|
|  | 134 | txtPageLength.Text := Piece(Items[ItemIndex], '^', 5); | 
|---|
|  | 135 | DisplaySelectDevice; | 
|---|
|  | 136 | end; | 
|---|
|  | 137 | end; | 
|---|
|  | 138 |  | 
|---|
|  | 139 | procedure Tfrm513Print.radChartCopyClick(Sender: TObject); | 
|---|
|  | 140 | begin | 
|---|
|  | 141 | inherited; | 
|---|
|  | 142 | DisplaySelectDevice; | 
|---|
|  | 143 | end; | 
|---|
|  | 144 |  | 
|---|
|  | 145 | procedure Tfrm513Print.radWorkCopyClick(Sender: TObject); | 
|---|
|  | 146 | begin | 
|---|
|  | 147 | inherited; | 
|---|
|  | 148 | DisplaySelectDevice; | 
|---|
|  | 149 | end; | 
|---|
|  | 150 |  | 
|---|
|  | 151 | procedure Tfrm513Print.cmdOKClick(Sender: TObject); | 
|---|
|  | 152 | var | 
|---|
|  | 153 | ADevice, ErrMsg: string; | 
|---|
|  | 154 | ChartCopy: string; | 
|---|
|  | 155 | RemoteSiteID: string;    //for Remote site printing | 
|---|
|  | 156 | RemoteQuery: string;    //for Remote site printing | 
|---|
|  | 157 | begin | 
|---|
|  | 158 | inherited; | 
|---|
|  | 159 | RemoteSiteID := ''; | 
|---|
|  | 160 | RemoteQuery := ''; | 
|---|
|  | 161 | if cboDevice.ItemID = '' then | 
|---|
|  | 162 | begin | 
|---|
|  | 163 | InfoBox(TX_NODEVICE, TX_NODEVICE_CAP, MB_OK); | 
|---|
|  | 164 | Exit; | 
|---|
|  | 165 | end; | 
|---|
|  | 166 | if radChartCopy.Checked then ChartCopy := 'C' else ChartCopy := 'W'; | 
|---|
|  | 167 | if Piece(cboDevice.ItemID, ';', 1) = 'WIN' then | 
|---|
|  | 168 | begin | 
|---|
|  | 169 | if dlgWinPrinter.Execute then with FReportText do | 
|---|
|  | 170 | begin | 
|---|
|  | 171 | FReportText.Lines.Assign(GetFormattedSF513(FConsult, ChartCopy)); | 
|---|
|  | 172 | PrintWindowsReport(FReportText, PAGE_BREAK, Self.Caption, ErrMsg); | 
|---|
|  | 173 | if Length(ErrMsg) > 0 then InfoBox(ErrMsg, TX_ERR_CAP, MB_OK); | 
|---|
|  | 174 | end; | 
|---|
|  | 175 | end | 
|---|
|  | 176 | else | 
|---|
|  | 177 | begin | 
|---|
|  | 178 | ADevice := Piece(cboDevice.ItemID, ';', 2); | 
|---|
|  | 179 | PrintSF513ToDevice(FConsult, ADevice, ChartCopy, ErrMsg); | 
|---|
|  | 180 | ErrMsg := Piece(FReportText.Lines[0], U, 2); | 
|---|
|  | 181 | if Length(ErrMsg) > 0 then InfoBox(ErrMsg, TX_ERR_CAP, MB_OK); | 
|---|
|  | 182 | end; | 
|---|
|  | 183 | if chkDefault.Checked then SaveDefaultPrinter(Piece(cboDevice.ItemID, ';', 1)); | 
|---|
|  | 184 | User.CurrentPrinter := cboDevice.ItemID; | 
|---|
|  | 185 | Close; | 
|---|
|  | 186 | end; | 
|---|
|  | 187 |  | 
|---|
|  | 188 | procedure Tfrm513Print.cmdCancelClick(Sender: TObject); | 
|---|
|  | 189 | begin | 
|---|
|  | 190 | inherited; | 
|---|
|  | 191 | Close; | 
|---|
|  | 192 | end; | 
|---|
|  | 193 |  | 
|---|
|  | 194 | procedure Tfrm513Print.FormDestroy(Sender: TObject); | 
|---|
|  | 195 | begin | 
|---|
|  | 196 | FReportText.Free; | 
|---|
|  | 197 | inherited; | 
|---|
|  | 198 | end; | 
|---|
|  | 199 |  | 
|---|
|  | 200 | end. | 
|---|