budgets

Through the budgets drop you can access information from the available budgets in a company

The budgets drop sits on the period drop.

MethodReturn typeDescription
handlestringThe handle of the budget
namestringThe 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:

MethodReturn typeDescription
namestringThe name of the account
numberstringThe number of the account defined
in an account collection.
Could be the original number or the
mapped number, depending on the
client's configuration.
valuedecimalReturns 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 %}

Did this page help you?