diff --git a/app/models/Client.php b/app/models/Client.php index 6da9d285d1a3..efada1ec50ca 100755 --- a/app/models/Client.php +++ b/app/models/Client.php @@ -133,7 +133,7 @@ class Client extends EntityModel $str = ''; if ($this->id_number) { - $str .= ''.$this->vat_number; + $str .= ''.trans('texts.id_number').': '.$this->id_number; } return $str; @@ -144,7 +144,7 @@ class Client extends EntityModel $str = ''; if ($this->vat_number) { - $str .= ''.$this->vat_number; + $str .= ''.trans('texts.vat_number').': '.$this->vat_number; } return $str;