budgets
Through the budgets drop you can access information from the available budgets in a company
The budgets drop sits on the period drop.
| Method | Return type | Description |
|---|---|---|
| handle | string | The handle of the budget |
| name | string | The name of the budget |
{% for budget in period.budgets %}
{{ budget.handle }} - {{ budget.name }}
{% endfor %}Budget entries
.entries contains the budget entries for the period's end_date.
You can read detailed information on how to access budget entries in this community case (coming soon).
Only the following methods on the budget.entries drop can return values:
| Method | Return type | Description |
|---|---|---|
| name | string | The name of the account |
| number | string | The number of the account defined in an account collection. Could be the original number or the mapped number, depending on the client's configuration. |
| value | decimal | Returns the value of the budget entry in the period. |
{{ period.budgets['my_budget'].entries['1000'].value }}
{% for entry in period.budgets['my_budget'].entries %}
{{ entry.name }} - {{ entry.number }} - {{ entry.value }}
{% endfor %}Updated 21 minutes ago
Did this page help you?

