Pathogens

From CCMDB Wiki
Revision as of 17:04, 2008 May 7 by Ttenbergen (talk | contribs) (New page: The '''pathogens''' are a list of possible entries that make up the sub-code for diagnoses categorizes as Infections. == Data Integrity == Needs cleanup... ' infection without patho...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The pathogens are a list of possible entries that make up the sub-code for diagnoses categorizes as Infections.

Data Integrity

Needs cleanup... ' infection without pathogen

   If isInfection And path_s = "" Then
        MsgBox ("The Diagnosis '" & Dx_s & "' for patient " & Form_View.Pat_ID & " is an infection, but no pathogen is listed for it. Please enter a pathogen.")
        uncheck Form_View.Diag_Complete
        Form_View.Label_Diagnosis_check.BackColor = abnormal
   End If

' non-infection with pathogen

   If (Not isInfection) And path_s > "" Then
        MsgBox ("The Diagnosis '" & Dx_s & "' for patient " & Form_View.Pat_ID & " is not an infection, but the pathogen '" & path_s & "' is listed for it. Please remove the pathogen.")
        Form_View.Label_Diagnosis_check.BackColor = abnormal
        uncheck Form_View.Diag_Complete
   End If
  

do before de-stubbing

  • fix integrity section
  • needs definition fixed

Template:Stub