{% macro getAddress(object, options) %} {% set value = object.address is defined ? object.address : '' %} {{ value }} {% endmacro %} {% macro getAddress2(object, options) %} {% set value = object.address2 is defined ? object.address2 : '' %} {{ value }} {% endmacro %} {% macro getPostalCode(object, options) %} {% set value = object.postalCode is defined ? object.postalCode : '' %} {{ value }} {% endmacro %} {% macro getCity(object, options) %} {% set value = object.city is defined ? object.city : '' %} {{ value }} {% endmacro %} {% macro getCountry(object, options) %} {% set value = object.country is defined ? object.country : '' %} {{ value }} {% endmacro %}