ISPatientRecallVisit.SeriesIsCompleted

Description

Returns True if there will be no further repeats of the selected intervention.

Syntax

object.SeriesIsCompleted

Part Attribute Type Description
object Required
The object always implements the ISPatientRecallVisit interface

Return Value

bool

Example

Display SeriesIsCompleted for the patient's intervention.

sub main()
   Dim aPatient, aRecallVisits, aMessage
     
   set aPatient = Profile.SelectPatient
   set aRecallPlans = aPatient.RecallPlans
   
   for each aPlan in aRecallPlans
     aMessage = aMessage & GetVisitCollectionInfo(aPlan.Visits)
   next

  Profile.MsgBox(aMessage)
end sub

function GetVisitCollectionInfo(aVisits)

  for each aVisit in aVisits 
    set aPlan = aVisit.ParentPlan
    info = info & vbNewLine & "No further repeats of the intervention '" &_
    aVisit.Description & "' =  " & aVisit.SeriesIsCompleted 
  next
  GetVisitCollectionInfo = info
end function     
Note:

In Profile Client v8 on User Interface the Series is complete checkbox can be checked in Clinical > Medical Record > Care Plans > Open active object(s) > General > Intervention Outcome.

Version information

Added in v7.8.0