1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00

comma as decimal support

This commit is contained in:
David Bomba 2021-08-19 08:12:39 +10:00
parent 3f7018c407
commit ec66efeb6f
2 changed files with 2 additions and 0 deletions

View File

@ -94,6 +94,7 @@ class Company extends BaseModel
'invoice_task_datelog',
'default_password_timeout',
'show_task_end_date',
'use_comma_as_decimal_place',
];
protected $hidden = [

View File

@ -160,6 +160,7 @@ class CompanyTransformer extends EntityTransformer
'invoice_task_datelog' => (bool) $company->invoice_task_datelog,
'show_task_end_date' => (bool) $company->show_task_end_date,
'markdown_enabled' => (bool) $company->markdown_enabled,
'use_comma_as_decimal_place' => (bool) $company->use_comma_as_decimal_place,
];
}