The patient whom the invoice is issued for.
object.Patient
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISInvoice interface |
Display the number of the invoices loaded on the basis of the selected filter and some information about them, including the names of the patients whom they are issued for.
Dim aPatient
Dim aFilter
Dim aInvoices, aInvoice
Dim aMessage
Dim i
Set aPatient = Profile.SelectPatient
set aFilter = Profile.CreateInvoiceFilter
aFilter.AfterDate = #01/01/2000#
set aInvoices = aFilter.Load
aMessage = "Invoices Count = " & aInvoices.Count & vbNewLine
for i = 0 to aInvoices.Count - 1
set aInvoice = aInvoices.Items(i)
aMessage = aMessage & (i + 1) & ". " &_
"Date: " & aInvoice.Date & vbNewLine &_
" ID: " & aInvoice.ID & vbNewLine &_
" GUID: " & aInvoice.GUID & vbNewLine &_
" Patient: " & aInvoice.Patient.SurnameFirstName & vbNewLine &_
" Pos Code: " & aInvoice.PosCode & vbNewLine &_
" Reference: " & aInvoice.Reference & vbNewLine
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Patient can be found in
.