+
Heinrich GmbH • Blumenstraße 16-18 • 75233 Tiefenbronn
+
+ client_email && $custom_fields['invoice']['Via Email']) {
+ echo 'per Email: ' . $invoice->client_email . '
';
+ } ?>
+ client_title) {
+ echo $invoice->client_title . '
';
+ } ?>
+ client_name) {
+ echo $invoice->client_name;
+ } ?>
+ client_surname) {
+ echo $invoice->client_surname;
+ } ?>
+
+ client_vat_id) {
+ echo '
' . trans('vat_id_short') . ': ' . $invoice->client_vat_id . '
';
+ }
+ if ($invoice->client_tax_code) {
+ echo '
' . trans('tax_code_short') . ': ' . $invoice->client_tax_code . '
';
+ }
+ if ($invoice->client_address_1) {
+ echo '
' . htmlsc($invoice->client_address_1) . '
';
+ }
+ if ($invoice->client_address_2) {
+ echo '
' . htmlsc($invoice->client_address_2) . '
';
+ }
+
+ echo '
';
+
+ if ($invoice->client_city || $invoice->client_state || $invoice->client_zip) {
+ echo '
';
+ if ($invoice->client_zip) {
+ echo htmlsc($invoice->client_zip) . ' ';
+ }
+ if ($invoice->client_city) {
+ echo htmlsc($invoice->client_city);
+ }
+ echo '
';
+ } ?>
+
+
+
+ user_address_1) {
+ echo '
' . htmlsc($invoice->user_address_1) . '
';
+ }
+ if ($invoice->user_address_2) {
+ echo '
' . htmlsc($invoice->user_address_2) . '
';
+ }
+ if ($invoice->user_city || $invoice->user_state || $invoice->user_zip) {
+ echo '
';
+ if ($invoice->user_zip) {
+ echo htmlsc($invoice->user_zip) . ' ';
+ }
+ if ($invoice->user_city) {
+ echo htmlsc($invoice->user_city);
+ }
+ echo '
';
+ }
+ if ($invoice->user_country) {
+ echo '
' . get_country_name(trans('cldr'), $invoice->user_country) . '
';
+ }
+
+ if ($invoice->user_vat_id) {
+ echo '
' . trans('vat_id_short') . ': ' . $invoice->user_vat_id . '
';
+ }
+ if ($invoice->user_tax_code) {
+ echo '
' . trans('tax_code_short') . ': ' . $invoice->user_tax_code . '
';
+ }
+
+ if ($invoice->user_phone) {
+ echo '
' . trans('phone_abbr') . ': ' . htmlsc($invoice->user_phone) . '
';
+ }
+ if ($invoice->user_fax) {
+ echo '
' . trans('fax_abbr') . ': ' . htmlsc($invoice->user_fax) . '
';
+ }
+ if ($invoice->user_email) {
+ echo '
' . htmlsc($invoice->user_email) . '
';
+ }
+ if ($invoice->user_web) {
+ echo '
' . htmlsc($invoice->user_web) . '
';
+ }
+ ?>
+
+
+