mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
Export: fix typo in filter "filter accompanying period work on end date
This commit is contained in:
parent
2cc5fa06ae
commit
847c8238e8
5
.changes/unreleased/Fixed-20231113-120855.yaml
Normal file
5
.changes/unreleased/Fixed-20231113-120855.yaml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
kind: Fixed
|
||||||
|
body: 'Export: fix typo in filter "filter accompanying period work on end date"'
|
||||||
|
time: 2023-11-13T12:08:55.509927824+01:00
|
||||||
|
custom:
|
||||||
|
Issue: ""
|
@ -54,7 +54,7 @@ final readonly class AccompanyingPeriodWorkEndDateBetweenDateFilter implements F
|
|||||||
public function describeAction($data, $format = 'string'): array
|
public function describeAction($data, $format = 'string'): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'export.filter.work.end_between_dates.Only where end date is between %endDate% and %endDate%',
|
'export.filter.work.end_between_dates.Only where start date is between %startDate% and %endDate%',
|
||||||
[
|
[
|
||||||
'%startDate%' => null !== $data['start_date'] ? $this->rollingDateConverter->convert($data['start_date'])->format('d-m-Y') : '',
|
'%startDate%' => null !== $data['start_date'] ? $this->rollingDateConverter->convert($data['start_date'])->format('d-m-Y') : '',
|
||||||
'%endDate%' => null !== $data['end_date'] ? $this->rollingDateConverter->convert($data['end_date'])->format('d-m-Y') : '',
|
'%endDate%' => null !== $data['end_date'] ? $this->rollingDateConverter->convert($data['end_date'])->format('d-m-Y') : '',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user