mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-24 16:43:48 +00:00
Git add desactivation date for social issue csv export
This commit is contained in:
@@ -44,6 +44,7 @@ readonly class SocialIssueCSVExportService
|
||||
'Id',
|
||||
'Label',
|
||||
'Social issue',
|
||||
'export.social_action_list.desactivation_date',
|
||||
'socialIssue.isParent?',
|
||||
'socialIssue.Parent id',
|
||||
]
|
||||
@@ -66,6 +67,7 @@ readonly class SocialIssueCSVExportService
|
||||
'id' => $issue->getId(),
|
||||
'label' => $this->stringHelper->localize($issue->getTitle()),
|
||||
'title' => $this->socialIssueRender->renderString($issue, []),
|
||||
'export.social_action_list.desactivation_date' => $issue->getDesactivationDate()?->format('Y-m-d'),
|
||||
'isParent' => $issue->hasChildren() ? 'X' : '',
|
||||
'parent_id' => null !== $issue->getParent() ? $issue->getParent()->getId() : '',
|
||||
];
|
||||
|
Reference in New Issue
Block a user