client_name); ?>
client_vat_id) {
echo '
' . trans('vat_id_short') . ': ' . $quote->client_vat_id . '
';
}
if ($quote->client_tax_code) {
echo '
' . trans('tax_code_short') . ': ' . $quote->client_tax_code . '
';
}
if ($quote->client_address_1) {
echo '
' . htmlsc($quote->client_address_1) . '
';
}
if ($quote->client_address_2) {
echo '
' . htmlsc($quote->client_address_2) . '
';
}
if ($quote->client_city || $quote->client_state || $quote->client_zip) {
echo '
';
if ($quote->client_city) {
echo htmlsc($quote->client_city) . ' ';
}
if ($quote->client_state) {
echo htmlsc($quote->client_state) . ' ';
}
if ($quote->client_zip) {
echo htmlsc($quote->client_zip);
}
echo '
';
}
if ($quote->client_state) {
echo '
' . htmlsc($quote->client_state) . '
';
}
if ($quote->client_country) {
echo '
' . get_country_name(trans('cldr'), $quote->client_country) . '
';
}
echo '
';
if ($quote->client_phone) {
echo '
' . trans('phone_abbr') . ': ' . htmlsc($quote->client_phone) . '
';
} ?>
user_name); ?>
user_vat_id) {
echo '
' . trans('vat_id_short') . ': ' . $quote->user_vat_id . '
';
}
if ($quote->user_tax_code) {
echo '
' . trans('tax_code_short') . ': ' . $quote->user_tax_code . '
';
}
if ($quote->user_address_1) {
echo '
' . htmlsc($quote->user_address_1) . '
';
}
if ($quote->user_address_2) {
echo '
' . htmlsc($quote->user_address_2) . '
';
}
if ($quote->user_city || $quote->user_state || $quote->user_zip) {
echo '
';
if ($quote->user_city) {
echo htmlsc($quote->user_city) . ' ';
}
if ($quote->user_state) {
echo htmlsc($quote->user_state) . ' ';
}
if ($quote->user_zip) {
echo htmlsc($quote->user_zip);
}
echo '
';
}
if ($quote->user_country) {
echo '
' . get_country_name(trans('cldr'), $quote->user_country) . '
';
}
echo '
';
if ($quote->user_phone) {
echo '
' . trans('phone_abbr') . ': ' . htmlsc($quote->user_phone) . '
';
}
if ($quote->user_fax) {
echo '
' . trans('fax_abbr') . ': ' . htmlsc($quote->user_fax) . '
';
}
?>