Ignore:
Timestamp:
May 7, 2015, 12:34:29 PM (9 years ago)
Author:
healthsevak
Message:

Updating the working copy to CPRS version 28

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cprs/trunk/CPRS-Chart/Orders/rODLab.pas

    r829 r1679  
    2828procedure GetPatientBloodResultsRaw(Dest: TStrings; PatientID: string; ATests: TStringList);
    2929function  StatAllowed(PatientID: string): boolean;
     30function  RemoveCollTimeDefault: boolean;
     31function  GetDiagnosticPanelLocation: boolean;
    3032procedure GetBloodComponents(Dest: TStrings);
     33procedure GetDiagnosticTests(Dest: TStrings);
    3134function  NursAdminSuppress: boolean;
    3235function  GetSubtype(TestName: string): string;
     
    5457end;
    5558
     59procedure GetDiagnosticTests(Dest: TStrings);
     60begin
     61  tCallV(Dest, 'ORWDXVB3 DIAGORD', []);
     62end;
     63
    5664function NursAdminSuppress: boolean;
    5765begin
     
    6270begin
    6371  Result := (StrToInt(sCallV('ORWDXVB STATALOW',[PatientID])) > 0);
     72end;
     73
     74function  RemoveCollTimeDefault: boolean;
     75begin
     76  Result := (StrToInt(sCallV('ORWDXVB3 COLLTIM',[nil])) > 0);
     77end;
     78
     79function  GetDiagnosticPanelLocation: boolean;
     80begin
     81  Result := (StrToInt(sCallV('ORWDXVB3 SWPANEL',[nil])) > 0);
    6482end;
    6583
Note: See TracChangeset for help on using the changeset viewer.