mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
Git add desactivation date for social action csv export
This commit is contained in:
parent
4c5dee5f0a
commit
b6d454691a
@ -740,6 +740,7 @@ export:
|
|||||||
id: Identifiant de l'action
|
id: Identifiant de l'action
|
||||||
social_issue_id: Identifiant de la problématique sociale
|
social_issue_id: Identifiant de la problématique sociale
|
||||||
social_issue: Problématique sociale
|
social_issue: Problématique sociale
|
||||||
|
desactivation_date: Date de désactivation
|
||||||
social_issue_ordering: Ordre de la problématique sociale
|
social_issue_ordering: Ordre de la problématique sociale
|
||||||
action_label: Action d'accompagnement
|
action_label: Action d'accompagnement
|
||||||
action_ordering: Ordre
|
action_ordering: Ordre
|
||||||
|
@ -30,9 +30,6 @@ final readonly class SocialActionCSVExportService
|
|||||||
private TranslatorInterface $translator,
|
private TranslatorInterface $translator,
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param list<SocialAction> $actions
|
|
||||||
*/
|
|
||||||
public function generateCsv(array $actions): Writer
|
public function generateCsv(array $actions): Writer
|
||||||
{
|
{
|
||||||
// CSV headers
|
// CSV headers
|
||||||
@ -84,7 +81,8 @@ final readonly class SocialActionCSVExportService
|
|||||||
'action_id' => $action->getId(),
|
'action_id' => $action->getId(),
|
||||||
'social_issue_id' => $action->getIssue()?->getId(),
|
'social_issue_id' => $action->getIssue()?->getId(),
|
||||||
'problematique_label' => null !== $action->getIssue() ? $this->socialIssueRender->renderString($action->getIssue(), []) : null,
|
'problematique_label' => null !== $action->getIssue() ? $this->socialIssueRender->renderString($action->getIssue(), []) : null,
|
||||||
'social_issue_ordering' => null !== $action->getIssue() ? $action->getIssue()->getOrdering() : null,
|
'desactivation_date' => $action->getDesactivationDate()?->format('Y-m-d'),
|
||||||
|
'social_issue_ordering' => $action->getIssue()?->getOrdering(),
|
||||||
'action_label' => $this->socialActionRender->renderString($action, []),
|
'action_label' => $this->socialActionRender->renderString($action, []),
|
||||||
'action_ordering' => $action->getOrdering(),
|
'action_ordering' => $action->getOrdering(),
|
||||||
'goal_label' => null !== $goal ? $this->stringHelper->localize($goal->getTitle()) : null,
|
'goal_label' => null !== $goal ? $this->stringHelper->localize($goal->getTitle()) : null,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user