#foreach
The #foreach
data helper can be used to automatically output a list of:
- Matter tasks
- Matter task notes
- Shared documents
- Matter accounting entries
- Matter time recording entries
A #foreach statement is made up of the below:
- Collection: the data you wish to output, see below for a list of options.
- [Optional] Sort By: the data type the list should be ordered by, the options are:
Sort-By
: for text fieldsNumerical-Sort-By
: for numerical or currency fieldsDate-Sort-By
: for date or date and time fields
- [Optional] Name: the data field the list should be ordered by, see below for a list of options.
- [Optional] Direction: the way in which the data should be ordered, the options are:
- Ascending
- For text fields, this would order them from A to Z
- For numerical fields, this would order them from smallest to largest
- For date fields, this would order them from oldest to most recent
- Descending
- For text fields, this would order them from Z to A
- For numerical fields, this would order them from largest to smallest
- For date fields, this would order them from most recent to oldest
- Ascending
For example, the below statement would output a list matter tasks, sorted alphabetically (a-z) by the task's name.
{{#foreach matter.tasks sort-by taskname asc}}
Matter Tasks
All Tasks
The following statements can be used to output a list of tasks on the matter that are visible to a stakeholder:
Statement | Output |
| |
| The name of the task |
| The Stakeholder description of the task |
| Any Notes on the task, including:
|
|
Completed Tasks
Use the following statements to output a list of completed tasks on the matter which are visible to that stakeholder:
Statement | Output |
| |
| The name of the completed task |
| The Stakeholder description of the completed task |
| The date and time the task was completed on the matter |
| Any Notes on the completed task, including:
|
|
Newly Completed Tasks
Use the following statements to output a list of newly completed tasks on the matter which are visible to that stakeholder:
Statement | Output |
| |
| The name of the newly completed task |
| The Stakeholder description of the newly completed task |
| The date and time the task was completed on the matter |
| Any Notes on the newly completed task, including:
|
|
Outstanding Tasks
Use the following statements to output a list of outstanding tasks on the matter which are visible to that stakeholder:
Statement | Output |
| |
| The name of the outstanding task |
| The Stakeholder description of the outstanding task |
| Any Notes on the outstanding task, including:
|
|
Shared Documents
Use the following statements to output information on any documents that have been shared with the Stakeholder within their Portal:
Statement | Output |
| |
| The name of the file shared with the Stakeholder |
| The date and/or time the file was shared with the Stakeholder. Configure the output using our #datetime data helper. |
|
Matter Accounts
Receivables
Use the following statements to output details of the receivables on a matter:
Statement | Output |
| |
| The receivables details |
| The account the receivables raised against |
| The amount of the receivable excluding VAT |
| The amount of any VAT applied to the receivable |
| The total amount of the receivable including VAT |
|
Invoices
Use the following statements to output details of any invoices and standalone credit notes on a matter:
Statement | Output |
| |
| The date the invoice was raised |
| The invoice due date |
| The invoice reference |
| The total amount paid |
| The total amount outstanding |
| The total amount of the invoice including VAT but excluding any credit notes applied |
|
Supplier Bills
Use the following statements to output details of any supplier bills on a matter:
Statement | Output |
| |
| The date the supplier bill was raised |
| The supplier bill due date |
| The supplier bill reference |
| The total amount paid |
| The total amount outstanding |
| The total amount of the supplier bill including VAT but excluding any credit notes applied |
|
Client Deposits
Use the following statements to output details of any client deposits on a matter:
Statement | Output |
| |
| The details of the deposit |
| The total amount of the client deposit |
| The date of the deposit |
|
Anticipated Deposits
Use the following statements to output details of any anticipated client deposits on a matter:
Statement | Output |
| |
| The details of the deposit |
| The total amount of the client deposit |
| The date of the deposit |
|
Matter Ledger
Use the following statements to output details of the matters ledger:
Statement | Output |
| |
| The details given to the transaction |
| The date of the transaction |
| The amount of VAT on the transaction |
| The amount debited from the Office account |
| The amount credited to the Office account |
| The resulting balance on the Office ledger |
| The amount debited from the Client account |
| The amount credited from the Client account |
| The resulting balance on the Client ledger |
|
Time Recording
Use the following statements to output details of the matters time recording:
Statement | Output |
| |
| The date of the recording |
| The recording's current status |
| The assigned Fee Earner |
| The type of time recording |
| The details given to the time recording |
| The rate given to the time recording |
| The total amount of time recorded (the total amount of units recorded) |
| The total amount of the time recording |
|