Ignore:
Timestamp:
Jul 6, 2008, 8:20:14 PM (16 years ago)
Author:
Kevin Toppenberg
Message:

Uploading from OR_30_258

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cprs/branches/foia-cprs/CPRS-Chart/fPtSelOptns.pas

    r459 r460  
    218218end;
    219219
    220 procedure TfrmPtSelOptns.cboListNeedData(Sender: TObject;
    221   const StartFrom: String; Direction, InsertAt: Integer);
     220procedure TfrmPtSelOptns.cboListNeedData(Sender: TObject; const StartFrom: String; Direction, InsertAt: Integer);
     221{CQ6363 Notes: This procedure was altered for CQ6363, but then changed back to its original form, as it is now.
     222
     223The problem is that in LOM1T, there are numerous entries in the HOSPITAL LOCATION file (44) that are lower-case,
     224resulting in a "B" xref that looks like this:
     225
     226^SC("B","module 1x",2897) =
     227^SC("B","pt",3420) =
     228^SC("B","read",3146) =
     229^SC("B","zz GIM/WONG NEW",2902) =
     230^SC("B","zz bhost/arm",3076) =
     231^SC("B","zz bhost/day",2698) =
     232^SC("B","zz bhost/eve/ornelas",2885) =
     233^SC("B","zz bhost/resident",2710) =
     234^SC("B","zz bhost/sws",2946) =
     235^SC("B","zz c&P ortho/patel",3292) =
     236^SC("B","zz mhc md/kelley",320) =
     237^SC("B","zz/mhc/p",1076) =
     238^SC("B","zzMHC MD/THRASHER",1018) =
     239^SC("B","zztest clinic",3090) =
     240^SC("B","zzz-hbpc-phone-jung",1830) =
     241^SC("B","zzz-hbpcphone cocohran",1825) =
     242^SC("B","zzz-home service",1428) =
     243^SC("B","zzz-phone-deloye",1834) =
     244^SC("B","zzz/gmonti impotence",2193) =
     245
     246ASCII sort mode puts those entries at the end of the "B" xref, but when retrieved by CPRS and upper-cased, it
     247messes up the logic of the combo box.  This problem has been around since there was a CPRS GUI, and the best
     248possible fix is to require those entries to either be in all uppercase or be removed.  If that's cleaned up,
     249the logic below will work correctly.
     250}
    222251begin
    223252  case frmPtSelOptns.SrcType of
Note: See TracChangeset for help on using the changeset viewer.