35 lines
1.6 KiB
PHP
35 lines
1.6 KiB
PHP
<address style="font-style: normal">
|
|
<?php if ($user_data->getCompany()) : ?>
|
|
<p>
|
|
<?php echo $user_data->getCompany(); ?>
|
|
</p>
|
|
<?php endif; ?>
|
|
<p>
|
|
<span class="st_order-address-name" style="font-weight: bold;"><?php echo $user_data->getFullName(); ?></span>
|
|
</p>
|
|
<p style="padding: 8px 0px;">
|
|
<span class="st_order-address-street"><?php echo $user_data->getAddress(); ?></span><br />
|
|
<?php if ($user_data->getAddressMore()) : ?>
|
|
<span class="st_order-address-street"><?php echo $user_data->getAddressMore(); ?></span><br />
|
|
<?php endif; ?>
|
|
<?php if ($user_data->getRegion()) : ?>
|
|
<span class="st_order-address-street"><?php echo $user_data->getRegion(); ?></span><br />
|
|
<?php endif; ?>
|
|
<span class="st_order-address-code"><?php echo $user_data->getCode() ?></span>
|
|
<span class="st_order-address-town"><?php echo $user_data->getTown() ?></span>,
|
|
<span class="st_order-address-country"><?php echo $user_data->getcountries() ?></span>
|
|
<?php if ($user_data->getPesel()) : ?>
|
|
<br><span class="st_order-address-town"><?php echo __('PESEL') ?> <?php echo $user_data->getPesel(); ?></span>
|
|
<?php endif; ?>
|
|
</p>
|
|
<p>
|
|
<?php echo __('Tel') ?>.: <?php echo $user_data->getPhone() ?>
|
|
</p>
|
|
<?php if ($user_data->getIsBilling() == 1) : ?>
|
|
<?php if ($user_data->getVatNumber()) : ?>
|
|
<p>
|
|
<?php echo __('NIP') ?>: <?php echo $user_data->getVatNumber() ?>
|
|
</p>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
</address>
|