{% extends 'D2CustomerBusinessBundle::layout.html.twig' %}
{% block head_script_extra %}
{% endblock head_script_extra %}
{% block page_header %}
{% endblock %}
{% block content %}
Company Details |
Account number |
{{ customer_account.accountnumber }} |
Company name |
{{ customer_account.companyname }} |
Trading as |
{{ customer_account.tradingas }} |
Invoice name |
{{ customer_account.invoicename == 'company_name' ? customer_account.companyname : customer_account.tradingas }} |
Vat number |
{{ customer_account.vatnumber }} |
Ck number |
{{ customer_account.cknumber }} |
Postal Address |
Street |
{{ customer_account.postaladdressstreet }} |
Suburb |
{{ customer_account.postaladdresssuburb }} |
City |
{{ customer_account.postaladdresscity }} |
Province |
{{ customer_account.postaladdressprovice }} |
Country |
{{ customer_account.postaladdresscountry }} |
Code |
{{ customer_account.postaladdresscode }} |
Physical Address |
Street |
{{ customer_account.physicaladdressstreet }} |
Suburb |
{{ customer_account.physicaladdresssuburb }} |
City |
{{ customer_account.physicaladdresscity }} |
Province |
{{ customer_account.physicaladdressprovince }} |
Country |
{{ customer_account.physicaladdresscountry }} |
Code |
{{ customer_account.physicaladdresscode }} |
{% endblock content %}