{% macro getOrganizationName(object, options) %} {% set value = object.organization is defined ? object.organization.name : '' %} {{ value }} {% endmacro %} {% macro getAmount(object, options) %} {% set value = object.amount is defined ? object.amount|number_format(2, ',', ' ') : '' %} {% if value is not empty %} {% set value = value ~ ' ' ~ currencySymbol %} {% endif %} {{ value }} {% endmacro %}