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/Encounter/uPCE.pas

    r459 r460  
    13751375  Result := inherited DelimitedStr;
    13761376  if Provider > 0 then tmpProv := IntToStr(Provider) else tmpProv := '';
    1377   //Result := 'CPT' + Result + U + IntToStr(Quantity) + U + IntToStr(Provider) +
    13781377  Result := 'CPT' + Result + U + IntToStr(Quantity) + U + tmpProv
    1379   //Result := 'CPT' + Result + U + IntToStr(Quantity) + U +
    1380   + U + U + U + IntToStr(cnt) + Mods + U + IntToStr(UNxtCommSeqNum) + U;
     1378             + U + U + U + IntToStr(cnt) + Mods + U + IntToStr(UNxtCommSeqNum) + U;
     1379  if Length(Result) > 250 then SetPiece(Result, U, 4, '');
    13811380end;
    13821381
     
    15541553    BOOLCHAR[AddProb] + U + U + U;
    15551554  if(SaveComment) then Result := Result + IntToStr(UNxtCommSeqNum);
     1555  if Length(Result) > 250 then SetPiece(Result, U, 4, '');
    15561556end;
    15571557
     
    29882988begin
    29892989  if not CanEditPCE(Self) then
     2990  begin
     2991    Result := TRUE;
     2992    exit;
     2993  end;
     2994  if IsNonCountClinic(FEncLocation) then
    29902995  begin
    29912996    Result := TRUE;
Note: See TracChangeset for help on using the changeset viewer.