Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
fix: IRHP permit printing issues fixed (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
fibble authored Feb 5, 2024
1 parent 3a4b935 commit bcf6eb2
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php

use Common\Service\Table\Formatter\IrhpPermitRangeType;
use Common\Service\Table\Formatter\IssuedPermitLicencePermitReference;
use Common\Service\Table\Formatter\RefData;
use Common\Util\Escape;

return [
Expand Down Expand Up @@ -87,7 +89,7 @@
'title' => 'Issued date',
'name' => 'issueDate',
'sort' => 'issueDate',
'formatter' => 'DateTime',
'formatter' => \Common\Service\Table\Formatter\DateTime::class,
],
[
'title' => 'Country',
Expand All @@ -103,7 +105,7 @@
return $this->callFormatter(
[
'name' => 'irhpPermitRangeType',
'formatter' => 'IrhpPermitRangeType',
'formatter' => IrhpPermitRangeType::class,
],
$row['irhpPermitRange']
);
Expand All @@ -112,7 +114,7 @@
[
'title' => 'Status',
'name' => 'status',
'formatter' => 'RefData',
'formatter' => RefData::class,
],
[
'type' => 'Checkbox',
Expand Down

0 comments on commit bcf6eb2

Please sign in to comment.