Fixes #225: Client ID Number not showing under client detail

This commit is contained in:
Hillel Coren 2015-01-28 16:14:42 +02:00
parent 80b6687047
commit 42abd5f8e0

View File

@ -133,7 +133,7 @@ class Client extends EntityModel
$str = ''; $str = '';
if ($this->id_number) { if ($this->id_number) {
$str .= '<i class="fa fa-vat-number" style="width: 20px"></i>'.$this->vat_number; $str .= '<i class="fa fa-id-number" style="width: 20px"></i>'.trans('texts.id_number').': '.$this->id_number;
} }
return $str; return $str;
@ -144,7 +144,7 @@ class Client extends EntityModel
$str = ''; $str = '';
if ($this->vat_number) { if ($this->vat_number) {
$str .= '<i class="fa fa-vat-number" style="width: 20px"></i>'.$this->vat_number; $str .= '<i class="fa fa-vat-number" style="width: 20px"></i>'.trans('texts.vat_number').': '.$this->vat_number;
} }
return $str; return $str;