Changeset 463 for cprs/branches/foia-cprs/CPRS-Chart/Encounter
- Timestamp:
- Jul 6, 2008, 9:44:35 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cprs/branches/foia-cprs/CPRS-Chart/Encounter/mVisitRelated.pas
r459 r463 33 33 procedure SetCheckState(CheckYes, CheckNo: TCheckBox; CheckState: Integer); 34 34 function GetCheckState(CheckYes, CheckNo: TCheckBox): Integer; 35 35 36 public 36 37 constructor Create(AOwner: TComponent); override; … … 42 43 procedure InitRelated(const ASCRelated, AAORelated, AIRRelated, 43 44 AECRelated, AMSTRelated, AHNCRelated, ACVRelated: integer); overload; 45 44 46 end; 45 47 … … 49 51 50 52 const 53 TAG_NONE_CHECKED = 0; 51 54 TAG_SCYES = 1; 52 55 TAG_AOYES = 2; … … 89 92 TAG_CVNO: if Checked then chkCVYes.Checked := False; 90 93 end; 94 91 95 if chkSCYes.Checked then 92 96 begin … … 119 123 begin 120 124 inherited; 121 122 125 lblSCYes.Height := 13; 123 126 lblSCNo.Height := 13; 124 // chkHNCYes.Visible := HNCOK;125 // chkHNCNo.Visible := HNCOK;126 // if not HNCOK then127 // begin128 // height := height - chkHNCYes.height + 1;129 // bvlSCFrame.height := bvlSCFrame.height - chkHNCYes.height + 1;130 // end;131 127 end; 132 128 … … 185 181 SetCheckState(chkHNCYes, chkHNCNo, PCEData.HNCRelated); 186 182 SetCheckState(chkCVYes, chkCVNo, PCEData.CVRelated); 183 // HDS00015356: GWOT Change that sets default answer to "YES" 184 //if not previously determined or new encounter. 185 if FSCCond.CVAllow then 186 begin 187 if PCEData.CVRelated = SCC_NA then 188 chkCVYes.Checked := True; 189 end; 187 190 end; 188 191 … … 197 200 SetCheckState(chkHNCYes, chkHNCNo, AHNCRelated); 198 201 SetCheckState(chkCVYes, chkCVNo, ACVRelated); 202 // HDS00015356: GWOT Change that sets default answer to "YES" 203 //if not previously determined or new encounter. 204 if FSCCond.CVAllow then 205 begin 206 if ACVRelated = SCC_NA then 207 chkCVYes.Checked := True; 208 end; 199 209 end; 200 210 … … 224 234 end; {case} 225 235 chkClick(Self); 236 226 237 end; 227 238
Note:
See TracChangeset
for help on using the changeset viewer.