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/rODMeds.pas

    r829 r1679  
    3838procedure LoadDOWSchedules(Dest: TStrings);
    3939procedure LoadAllIVRoutes(Dest: TStrings);
    40 procedure LoadDosageFormIVRoutes(Dest: TStrings; OrderIDs: TStringList; Default: boolean);
     40procedure LoadDosageFormIVRoutes(Dest: TStrings; OrderIDs: TStringList);
     41function GetDefaultAddFreq(OID: integer): string;
    4142function QtyToDays(Quantity: Double;   const UnitsPerDose, Schedule, Duration, Drug: string): Integer;
    4243function DaysToQty(DaysSupply: Integer; const UnitsPerDose, Schedule, Duration, Drug: string): Integer;
     
    204205end;
    205206
    206 procedure LoadDosageFormIVRoutes(Dest: TStrings; OrderIDs: TStringList; Default: boolean);
    207 begin
    208   CallV('ORWDPS33 IVDOSFRM', [OrderIDs, Default, False]);
     207procedure LoadDosageFormIVRoutes(Dest: TStrings; OrderIDs: TStringList);
     208begin
     209  CallV('ORWDPS33 IVDOSFRM', [OrderIDs, False]);
    209210  FastAssign(RPCBrokerV.Results, Dest);
    210211end;
     212
     213function GetDefaultAddFreq(OID: integer): string;
     214begin
     215  result := sCallV('ORWDPS33 GETADDFR', [OID]);
     216end;
     217
    211218procedure LoadDOWSchedules(Dest: TStrings);
    212219begin
Note: See TracChangeset for help on using the changeset viewer.