mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-31 02:04:33 -04:00
comma as decimal support
This commit is contained in:
parent
3f7018c407
commit
ec66efeb6f
@ -94,6 +94,7 @@ class Company extends BaseModel
|
|||||||
'invoice_task_datelog',
|
'invoice_task_datelog',
|
||||||
'default_password_timeout',
|
'default_password_timeout',
|
||||||
'show_task_end_date',
|
'show_task_end_date',
|
||||||
|
'use_comma_as_decimal_place',
|
||||||
];
|
];
|
||||||
|
|
||||||
protected $hidden = [
|
protected $hidden = [
|
||||||
|
@ -160,6 +160,7 @@ class CompanyTransformer extends EntityTransformer
|
|||||||
'invoice_task_datelog' => (bool) $company->invoice_task_datelog,
|
'invoice_task_datelog' => (bool) $company->invoice_task_datelog,
|
||||||
'show_task_end_date' => (bool) $company->show_task_end_date,
|
'show_task_end_date' => (bool) $company->show_task_end_date,
|
||||||
'markdown_enabled' => (bool) $company->markdown_enabled,
|
'markdown_enabled' => (bool) $company->markdown_enabled,
|
||||||
|
'use_comma_as_decimal_place' => (bool) $company->use_comma_as_decimal_place,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user