ID of the service that is used as the case equipment loan item.
object.ItemID
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISCaseEquipLoan interface |
int
Display the number of the case equipment loans loaded on the basis of the selected filter and some information about them, including IDs of the services that are used as the case equipment loan items.
Dim aResult
Dim aPatientId
Dim aCaseID
Dim aFilter
Dim aCaseEquipLoans, aCaseEquipLoan
Dim aPatient
Dim aMessage
Dim i
aResult = Profile.Lookup_PatientCaseSearch(aPatientId, aCaseID, _
"Select Case for search", true)
if not aResult then exit sub
set aFilter = Profile.CreateCaseEquipLoanFilter
aFilter.OnlyReturned = False
aFilter.OnlyNotReturned = False
aFilter.CaseID = CaseID
set aCaseEquipLoans = Profile.LoadCaseEquipLoans(aFilter)
aMessage = "Case Equipment Loans Count = " & aCaseEquipLoans.Count & vbNewLine
for i = 0 to aCaseEquipLoans.Count - 1
set aCaseEquipLoan = aCaseEquipLoans.Item(i)
set aPatient = Profile.LoadPatient(aCaseEquipLoan.PatientId)
aMessage = aMessage & vbNewLine & (i + 1) & ". " &_
"Started On: " & aCaseEquipLoan.StartedOn & vbNewLine &_
"Expected On: " & aCaseEquipLoan.ExpectedOn & vbNewLine &_
"Patient: " & aPatient.SurnameFirstName & vbNewLine &_
"Comment: " & aCaseEquipLoan.Comment & vbNewLine &_
"ID: " & aCaseEquipLoan.ID & vbNewLine &_
"Loan Item: " & Profile.LoadServiceByID(aCaseEquipLoan.ItemID).Description & vbNewLine &_
"Is Returned: " & aCaseEquipLoan.IsReturned & vbNewLine
if aCaseEquipLoan.CaseID > 0 then
aMessage = aMessage & "Case: " & Profile.OpenCase(aCaseEquipLoan.CaseID).CaseTitle & vbNewLine
else
aMessage = aMessage & "Case: -" & vbNewLine
end if
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Item ID cannot be found, but Item can be found in
or in .