- Timestamp:
- May 8, 2015, 7:52:55 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cprs/branches/HealthSevak-CPRS/CPRS-Chart/Orders/rODLab.pas
r829 r1693 28 28 procedure GetPatientBloodResultsRaw(Dest: TStrings; PatientID: string; ATests: TStringList); 29 29 function StatAllowed(PatientID: string): boolean; 30 function RemoveCollTimeDefault: boolean; 31 function GetDiagnosticPanelLocation: boolean; 30 32 procedure GetBloodComponents(Dest: TStrings); 33 procedure GetDiagnosticTests(Dest: TStrings); 31 34 function NursAdminSuppress: boolean; 32 35 function GetSubtype(TestName: string): string; … … 54 57 end; 55 58 59 procedure GetDiagnosticTests(Dest: TStrings); 60 begin 61 tCallV(Dest, 'ORWDXVB3 DIAGORD', []); 62 end; 63 56 64 function NursAdminSuppress: boolean; 57 65 begin … … 62 70 begin 63 71 Result := (StrToInt(sCallV('ORWDXVB STATALOW',[PatientID])) > 0); 72 end; 73 74 function RemoveCollTimeDefault: boolean; 75 begin 76 Result := (StrToInt(sCallV('ORWDXVB3 COLLTIM',[nil])) > 0); 77 end; 78 79 function GetDiagnosticPanelLocation: boolean; 80 begin 81 Result := (StrToInt(sCallV('ORWDXVB3 SWPANEL',[nil])) > 0); 64 82 end; 65 83
Note:
See TracChangeset
for help on using the changeset viewer.