mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fixes #225: Client ID Number not showing under client detail
This commit is contained in:
parent
80b6687047
commit
42abd5f8e0
@ -133,7 +133,7 @@ class Client extends EntityModel
|
||||
$str = '';
|
||||
|
||||
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;
|
||||
@ -144,7 +144,7 @@ class Client extends EntityModel
|
||||
$str = '';
|
||||
|
||||
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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user