[456] | 1 | unit fOrdersPrint;
|
---|
| 2 |
|
---|
| 3 | interface
|
---|
| 4 |
|
---|
| 5 | uses
|
---|
| 6 | Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
---|
[829] | 7 | StdCtrls, ORCtrls, ORfn, ExtCtrls, rOrders, fFrame, fBase508Form,
|
---|
| 8 | VA508AccessibilityManager;
|
---|
[456] | 9 |
|
---|
| 10 | type
|
---|
[829] | 11 | TfrmOrdersPrint = class(TfrmBase508Form)
|
---|
[456] | 12 | ckChartCopy: TCheckBox;
|
---|
| 13 | ckLabels: TCheckBox;
|
---|
| 14 | ckRequisitions: TCheckBox;
|
---|
| 15 | ckWorkCopy: TCheckBox;
|
---|
| 16 | lstChartDevice: TORListBox;
|
---|
| 17 | lstLabelDevice: TORListBox;
|
---|
| 18 | lstReqDevice: TORListBox;
|
---|
| 19 | lstWorkDevice: TORListBox;
|
---|
| 20 | cmdChart: TORAlignButton;
|
---|
| 21 | cmdLabels: TORAlignButton;
|
---|
| 22 | cmdReqs: TORAlignButton;
|
---|
| 23 | cmdWork: TORAlignButton;
|
---|
| 24 | cmdOK: TORAlignButton;
|
---|
| 25 | cmdCancel: TORAlignButton;
|
---|
| 26 | pnlBase: TORAutoPanel;
|
---|
| 27 | lblDevice: TLabel;
|
---|
| 28 | lblPartOne: TMemo;
|
---|
| 29 | lblPart2: TMemo;
|
---|
| 30 | procedure SetupControls(PrintParams: TPrintParams);
|
---|
| 31 | procedure cmdChartClick(Sender: TObject);
|
---|
| 32 | procedure cmdLabelsClick(Sender: TObject);
|
---|
| 33 | procedure cmdReqsClick(Sender: TObject);
|
---|
| 34 | procedure cmdWorkClick(Sender: TObject);
|
---|
| 35 | procedure cmdOKClick(Sender: TObject);
|
---|
| 36 | procedure cmdCancelClick(Sender: TObject);
|
---|
| 37 | procedure ckChartCopyClick(Sender: TObject);
|
---|
| 38 | procedure ckLabelsClick(Sender: TObject);
|
---|
| 39 | procedure ckRequisitionsClick(Sender: TObject);
|
---|
| 40 | procedure ckWorkCopyClick(Sender: TObject);
|
---|
| 41 | procedure DeviceListClick(Sender: TObject);
|
---|
| 42 | procedure FormKeyUp(Sender: TObject; var Key: Word;
|
---|
| 43 | Shift: TShiftState);
|
---|
| 44 | private
|
---|
| 45 | FPrintIt: boolean;
|
---|
| 46 | FSelectAll: boolean;
|
---|
| 47 | FDevices: string;
|
---|
| 48 | FNature: char;
|
---|
| 49 | procedure SetupPrompting(CheckBox: TCheckBox; DeviceList: TORListBox; ChangeButton: TORAlignButton;
|
---|
| 50 | PromptParam: char; DeviceParam: string);
|
---|
| 51 | end;
|
---|
| 52 |
|
---|
| 53 | var
|
---|
| 54 | frmOrdersPrint: TfrmOrdersPrint;
|
---|
| 55 | PrintParams: TPrintParams;
|
---|
| 56 | AnyPrompts: boolean;
|
---|
| 57 | ResultList: TStringList;
|
---|
| 58 |
|
---|
| 59 | const
|
---|
| 60 | NO_WIN_PRINT = False;
|
---|
| 61 |
|
---|
[829] | 62 | procedure SetupOrdersPrint(OrderList: TStringList; var DeviceInfo: string; Nature: Char; SelectAll: Boolean; var PrintIt: Boolean;
|
---|
| 63 | PrintTitle: string = ''; PrintLoc: Integer = 0);
|
---|
[456] | 64 |
|
---|
| 65 | implementation
|
---|
| 66 |
|
---|
| 67 | {$R *.DFM}
|
---|
| 68 |
|
---|
| 69 | uses
|
---|
| 70 | fDeviceSelect, uCore, ORNet, fOrders;
|
---|
| 71 |
|
---|
[829] | 72 | procedure SetupOrdersPrint(OrderList: TStringList; var DeviceInfo: string; Nature: Char; SelectAll: Boolean; var PrintIt: Boolean;
|
---|
| 73 | PrintTitle: string = ''; PrintLoc: Integer = 0);
|
---|
[456] | 74 | {displays device and copy selection form for printing orders, and returns a record of the selections}
|
---|
| 75 | var
|
---|
| 76 | frmOrdersPrint: TfrmOrdersPrint;
|
---|
| 77 | begin
|
---|
| 78 | frmOrdersPrint := TfrmOrdersPrint.Create(Application);
|
---|
[829] | 79 | if PrintTitle <> '' then frmOrdersPrint.Caption := 'Print Orders for ' + PrintTitle;
|
---|
[456] | 80 | try
|
---|
| 81 | frmFrame.CCOWBusy := True;
|
---|
| 82 | ResizeFormToFont(TForm(frmOrdersPrint));
|
---|
| 83 | with frmOrdersPrint do
|
---|
| 84 | begin
|
---|
| 85 | FSelectAll := SelectAll;
|
---|
| 86 | FPrintIt := False;
|
---|
| 87 | FNature := Nature;
|
---|
| 88 | if Nature = #0 then
|
---|
| 89 | begin
|
---|
| 90 | cmdCancel.Caption := 'Cancel Print';
|
---|
| 91 | lblPart2.Text := 'Greyed out items are not available.';
|
---|
| 92 | end;
|
---|
[829] | 93 | OrderPrintDeviceInfo(OrderList, PrintParams, Nature, PrintLoc);
|
---|
[456] | 94 | SetupControls(PrintParams);
|
---|
| 95 | if (PrintParams.AnyPrompts) {or FSelectAll} then ShowModal;
|
---|
| 96 | DeviceInfo := FDevices;
|
---|
| 97 | PrintIt := FPrintIt;
|
---|
| 98 | end;
|
---|
| 99 | finally
|
---|
| 100 | frmFrame.CCOWBusy := False;
|
---|
| 101 | frmOrdersPrint.Release;
|
---|
| 102 | end;
|
---|
| 103 | end;
|
---|
| 104 |
|
---|
| 105 | procedure TfrmOrdersPrint.SetupControls(PrintParams: TPrintParams);
|
---|
| 106 | begin
|
---|
| 107 | with PrintParams do
|
---|
| 108 | begin
|
---|
| 109 | SetupPrompting(ckChartCopy , lstChartDevice, cmdChart , PromptForChartCopy , ChartCopyDevice);
|
---|
| 110 | SetupPrompting(ckLabels , lstLabelDevice, cmdLabels, PromptForLabels , LabelDevice);
|
---|
| 111 | SetupPrompting(ckRequisitions, lstReqDevice, cmdReqs , PromptForRequisitions, RequisitionDevice);
|
---|
| 112 | SetupPrompting(ckWorkCopy , lstWorkDevice, cmdWork , PromptForWorkCopy , WorkCopyDevice);
|
---|
| 113 | FDevices := lstChartDevice.ItemID + U +
|
---|
| 114 | lstLabelDevice.ItemID + U +
|
---|
| 115 | lstReqDevice.ItemID + U +
|
---|
| 116 | lstWorkDevice.ItemID;
|
---|
| 117 | FPrintIt := not (FDevices = '^^^');
|
---|
| 118 | end;
|
---|
| 119 | end;
|
---|
| 120 |
|
---|
| 121 | procedure TfrmOrdersPrint.SetupPrompting(CheckBox: TCheckBox; DeviceList: TORListBox; ChangeButton: TORAlignButton;
|
---|
| 122 | PromptParam: char; DeviceParam: string);
|
---|
| 123 | { 0 - no prompts - copy is automatically generated.
|
---|
| 124 | checkbox checked and disabled, device defaulted and button disabled
|
---|
| 125 | 1 - prompt for copy and ask which printer should be used.
|
---|
| 126 | checkbox unchecked and enabled, device defaulted and button enabled
|
---|
| 127 | 2 - prompt for copy and automatically print to the
|
---|
| 128 | printer defined in the XXXXX COPY PRINT DEVICE field.
|
---|
| 129 | checkbox unchecked and enabled, device defaulted and button disabled
|
---|
| 130 | * - don't print.
|
---|
| 131 | checkbox unchecked and disabled, device empty and button disabled
|
---|
| 132 | }
|
---|
| 133 | begin
|
---|
| 134 | case PromptParam of
|
---|
| 135 | '0', #0: begin
|
---|
| 136 | CheckBox.Checked := DeviceParam <> '';
|
---|
| 137 | CheckBox.Enabled := False;
|
---|
| 138 | DeviceList.Clear;
|
---|
| 139 | if DeviceParam <> '' then
|
---|
| 140 | begin
|
---|
| 141 | DeviceList.Items.Add(DeviceParam);
|
---|
| 142 | DeviceList.Font.Color := clGrayText;
|
---|
| 143 | DeviceList.ItemIndex := 0;
|
---|
| 144 | CheckBox.Font.Style := CheckBox.Font.Style + [fsBold];
|
---|
| 145 | CheckBox.Font.Color := clInfoText;
|
---|
| 146 | CheckBox.Color := clInfoBk;
|
---|
| 147 | end
|
---|
| 148 | else
|
---|
| 149 | begin
|
---|
| 150 | CheckBox.State := cbUnchecked;
|
---|
| 151 | CheckBox.Enabled := False;
|
---|
| 152 | end;
|
---|
| 153 | ChangeButton.Enabled := False;
|
---|
| 154 | end;
|
---|
| 155 | '1': begin
|
---|
| 156 | CheckBox.State := cbUnchecked;
|
---|
| 157 | CheckBox.Enabled := True;
|
---|
| 158 | DeviceList.Clear;
|
---|
| 159 | if DeviceParam <> '' then DeviceList.Items.Add(DeviceParam);
|
---|
| 160 | ChangeButton.Enabled := False;
|
---|
| 161 | end;
|
---|
| 162 | '2': begin
|
---|
| 163 | CheckBox.State := cbUnchecked;
|
---|
| 164 | CheckBox.Enabled := True;
|
---|
| 165 | DeviceList.Clear;
|
---|
| 166 | if DeviceParam <> '' then
|
---|
| 167 | DeviceList.Items.Add(DeviceParam)
|
---|
| 168 | else
|
---|
| 169 | begin
|
---|
| 170 | CheckBox.State := cbUnchecked;
|
---|
| 171 | CheckBox.Enabled := False;
|
---|
| 172 | end;
|
---|
| 173 | ChangeButton.Enabled := False;
|
---|
| 174 | end;
|
---|
| 175 | '*': begin
|
---|
| 176 | CheckBox.State := cbUnchecked;
|
---|
| 177 | CheckBox.Enabled := False;
|
---|
| 178 | DeviceList.Clear;
|
---|
| 179 | ChangeButton.Enabled := False;
|
---|
| 180 | end;
|
---|
| 181 | end;
|
---|
| 182 | end;
|
---|
| 183 |
|
---|
| 184 | procedure TfrmOrdersPrint.cmdChartClick(Sender: TObject);
|
---|
| 185 | var
|
---|
| 186 | x: string;
|
---|
| 187 | begin
|
---|
| 188 | x := SelectDevice(Self, Encounter.Location, NO_WIN_PRINT,'');
|
---|
| 189 | if x <> '' then with lstChartDevice do
|
---|
| 190 | begin
|
---|
| 191 | Clear;
|
---|
| 192 | Items.Add(x);
|
---|
| 193 | end;
|
---|
| 194 | end;
|
---|
| 195 |
|
---|
| 196 | procedure TfrmOrdersPrint.cmdLabelsClick(Sender: TObject);
|
---|
| 197 | var
|
---|
| 198 | x: string;
|
---|
| 199 | begin
|
---|
| 200 | x := SelectDevice(Self, Encounter.Location, NO_WIN_PRINT,'');
|
---|
| 201 | if x <> '' then with lstLabelDevice do
|
---|
| 202 | begin
|
---|
| 203 | Clear;
|
---|
| 204 | Items.Add(x);
|
---|
| 205 | end;
|
---|
| 206 | end;
|
---|
| 207 |
|
---|
| 208 | procedure TfrmOrdersPrint.cmdReqsClick(Sender: TObject);
|
---|
| 209 | var
|
---|
| 210 | x: string;
|
---|
| 211 | begin
|
---|
| 212 | x := SelectDevice(Self, Encounter.Location, NO_WIN_PRINT,'');
|
---|
| 213 | if x <> '' then with lstReqDevice do
|
---|
| 214 | begin
|
---|
| 215 | Clear;
|
---|
| 216 | Items.Add(x);
|
---|
| 217 | end;
|
---|
| 218 | end;
|
---|
| 219 |
|
---|
| 220 | procedure TfrmOrdersPrint.cmdWorkClick(Sender: TObject);
|
---|
| 221 | var
|
---|
| 222 | x: string;
|
---|
| 223 | begin
|
---|
| 224 | x := SelectDevice(Self, Encounter.Location, NO_WIN_PRINT,'');
|
---|
| 225 | if x <> '' then with lstWorkDevice do
|
---|
| 226 | begin
|
---|
| 227 | Clear;
|
---|
| 228 | Items.Add(x);
|
---|
| 229 | end;
|
---|
| 230 | end;
|
---|
| 231 |
|
---|
| 232 | procedure TfrmOrdersPrint.cmdOKClick(Sender: TObject);
|
---|
| 233 | const
|
---|
| 234 | TX_NO_SELECTION = 'No copies were selected for printing. Check a copy type, or Cancel.';
|
---|
| 235 | TX_NO_SELECTION_CAP = 'Nothing Selected!';
|
---|
| 236 | begin
|
---|
| 237 | if not ckChartCopy.Checked then lstChartDevice.ItemIndex := -1 else lstChartDevice.ItemIndex := 0;
|
---|
| 238 | if not ckLabels.Checked then lstLabelDevice.ItemIndex := -1 else lstLabelDevice.ItemIndex := 0;
|
---|
| 239 | if not ckRequisitions.Checked then lstReqDevice.ItemIndex := -1 else lstReqDevice.ItemIndex := 0;
|
---|
| 240 | if not ckWorkCopy.Checked then lstWorkDevice.ItemIndex := -1 else lstWorkDevice.ItemIndex := 0;
|
---|
| 241 | FDevices := Piece(lstChartDevice.ItemID, ';', 1) + U +
|
---|
| 242 | Piece(lstLabelDevice.ItemID, ';', 1) + U +
|
---|
| 243 | Piece(lstReqDevice.ItemID, ';', 1) + U +
|
---|
| 244 | Piece(lstWorkDevice.ItemID, ';', 1);
|
---|
| 245 | if FDevices = '^^^' then
|
---|
| 246 | begin
|
---|
| 247 | FPrintIt := False;
|
---|
| 248 | InfoBox(TX_NO_SELECTION, TX_NO_SELECTION_CAP, MB_OK)
|
---|
| 249 | end
|
---|
| 250 | else
|
---|
| 251 | begin
|
---|
| 252 | FPrintIt := True;
|
---|
| 253 | Close;
|
---|
| 254 | end;
|
---|
| 255 | end;
|
---|
| 256 |
|
---|
| 257 | procedure TfrmOrdersPrint.cmdCancelClick(Sender: TObject);
|
---|
| 258 | // Force autoprint of 'don't prompt' items, regardless of continue/cancel selection.
|
---|
| 259 | begin
|
---|
| 260 | if FNature = #0 then FDevices := '^^^'
|
---|
| 261 | else with PrintParams do
|
---|
| 262 | begin
|
---|
| 263 | if (PromptForChartCopy = '0') or (PromptForChartCopy = #0) then
|
---|
| 264 | begin
|
---|
| 265 | if not ckChartCopy.Checked then lstChartDevice.ItemIndex := -1
|
---|
| 266 | else lstChartDevice.ItemIndex := 0;
|
---|
| 267 | end
|
---|
| 268 | else lstChartDevice.ItemIndex := -1;
|
---|
| 269 |
|
---|
| 270 | if (PromptForLabels = '0') or (PromptForLabels = #0) then
|
---|
| 271 | begin
|
---|
| 272 | if not ckLabels.Checked then lstLabelDevice.ItemIndex := -1
|
---|
| 273 | else lstLabelDevice.ItemIndex := 0;
|
---|
| 274 | end
|
---|
| 275 | else lstLabelDevice.ItemIndex := -1;
|
---|
| 276 |
|
---|
| 277 | if (PromptForRequisitions = '0') or (PromptForRequisitions = #0) then
|
---|
| 278 | begin
|
---|
| 279 | if not ckRequisitions.Checked then lstReqDevice.ItemIndex := -1
|
---|
| 280 | else lstReqDevice.ItemIndex := 0;
|
---|
| 281 | end
|
---|
| 282 | else lstReqDevice.ItemIndex := -1;
|
---|
| 283 |
|
---|
| 284 | if (PromptForWorkCopy = '0') or (PromptForWorkCopy = #0) then
|
---|
| 285 | begin
|
---|
| 286 | if not ckWorkCopy.Checked then lstWorkDevice.ItemIndex := -1
|
---|
| 287 | else lstWorkDevice.ItemIndex := 0;
|
---|
| 288 | end
|
---|
| 289 | else lstWorkDevice.ItemIndex := -1;
|
---|
| 290 |
|
---|
| 291 | FDevices := Piece(lstChartDevice.ItemID, ';', 1) + U +
|
---|
| 292 | Piece(lstLabelDevice.ItemID, ';', 1) + U +
|
---|
| 293 | Piece(lstReqDevice.ItemID, ';', 1) + U +
|
---|
| 294 | Piece(lstWorkDevice.ItemID, ';', 1);
|
---|
| 295 | end;
|
---|
| 296 |
|
---|
| 297 | FPrintIt := (FDevices <> '^^^');
|
---|
| 298 | Close;
|
---|
| 299 | end;
|
---|
| 300 |
|
---|
| 301 | procedure TfrmOrdersPrint.ckChartCopyClick(Sender: TObject);
|
---|
| 302 | begin
|
---|
| 303 | cmdChart.Enabled := (ckChartCopy.Checked) and (PrintParams.PromptForChartCopy <> '2');
|
---|
| 304 | end;
|
---|
| 305 |
|
---|
| 306 | procedure TfrmOrdersPrint.ckLabelsClick(Sender: TObject);
|
---|
| 307 | begin
|
---|
| 308 | cmdLabels.Enabled := (ckLabels.Checked) and (PrintParams.PromptForLabels <> '2');
|
---|
| 309 | end;
|
---|
| 310 |
|
---|
| 311 | procedure TfrmOrdersPrint.ckRequisitionsClick(Sender: TObject);
|
---|
| 312 | begin
|
---|
| 313 | cmdReqs.Enabled := (ckRequisitions.Checked) and (PrintParams.PromptForRequisitions <> '2');
|
---|
| 314 | end;
|
---|
| 315 |
|
---|
| 316 | procedure TfrmOrdersPrint.ckWorkCopyClick(Sender: TObject);
|
---|
| 317 | begin
|
---|
| 318 | cmdWork.Enabled := (ckWorkCopy.Checked) and (PrintParams.PromptForWorkCopy <> '2');
|
---|
| 319 | end;
|
---|
| 320 |
|
---|
| 321 | procedure TfrmOrdersPrint.DeviceListClick(Sender: TObject);
|
---|
| 322 | begin
|
---|
| 323 | TORListBox(Sender).ItemIndex := -1;
|
---|
| 324 | end;
|
---|
| 325 |
|
---|
| 326 | procedure TfrmOrdersPrint.FormKeyUp(Sender: TObject; var Key: Word;
|
---|
| 327 | Shift: TShiftState);
|
---|
| 328 | begin
|
---|
| 329 | if Key = VK_ESCAPE then
|
---|
| 330 | begin
|
---|
| 331 | Key := 0;
|
---|
| 332 | Close;
|
---|
| 333 | end;
|
---|
| 334 | end;
|
---|
| 335 |
|
---|
| 336 | end.
|
---|
| 337 |
|
---|