brotherton-erpnext/erpnext/regional/germany/address_template.html
Raffael Meyer 9e32f587f5 fix: remove contact info, use international format ()
- for international letters, city and country should be upper case: https://www.deutschepost.de/content/dam/dpag/images/B_b/Briefe_ins_Ausland/downloads/dp-brief-international-handlingbroschuere-072019.pdf#page=15
- it is not customary, to use contact information such as phone number in the address
2019-12-10 21:41:05 +05:30

9 lines
252 B
HTML

{{ address_line1 }}<br>
{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}
{% if country in ["Germany", "Deutschland"] %}
{{ pincode }} {{ city }}
{% else %}
{{ pincode }} {{ city | upper }}<br>
{{ country | upper }}
{% endif %}