diff --git a/app/Http/Resources/V1/Report/DetailedWithDataReportResource.php b/app/Http/Resources/V1/Report/DetailedWithDataReportResource.php index a33434b4..ee80d37f 100644 --- a/app/Http/Resources/V1/Report/DetailedWithDataReportResource.php +++ b/app/Http/Resources/V1/Report/DetailedWithDataReportResource.php @@ -73,6 +73,16 @@ class DetailedWithDataReportResource extends BaseResource 'public_until' => $this->formatDateTime($this->resource->public_until), /** @var string $currency Currency code (ISO 4217) */ 'currency' => $this->resource->organization->currency, + /** @var string $number_format Number format */ + 'number_format' => $this->resource->organization->number_format, + /** @var string $currency_format Currency format */ + 'currency_format' => $this->resource->organization->currency_format, + /** @var string $date_format Date format */ + 'date_format' => $this->resource->organization->date_format, + /** @var string $interval_format Interval format */ + 'interval_format' => $this->resource->organization->interval_format, + /** @var string $time_format Time format */ + 'time_format' => $this->resource->organization->time_format, 'properties' => [ /** @var string $group Type of first grouping */ 'group' => $this->resource->properties->group->value, diff --git a/resources/js/Components/Common/Project/ProjectTableRow.vue b/resources/js/Components/Common/Project/ProjectTableRow.vue index eb8e85de..cfdad446 100644 --- a/resources/js/Components/Common/Project/ProjectTableRow.vue +++ b/resources/js/Components/Common/Project/ProjectTableRow.vue @@ -1,7 +1,7 @@