Skip to content

Commit 2d244f9

Browse files
committed
Merge branch 'feature/SUPP0RT-419'
2 parents ded22e6 + 52c3505 commit 2d244f9

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

src/Command/ReportImportCommand.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,7 @@ protected function configure()
2727
protected function execute(InputInterface $input, OutputInterface $output)
2828
{
2929
$this->import(Report::class, $input->getArgument('src'), $output);
30+
31+
return 0;
3032
}
3133
}

src/Command/SystemImportCommand.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,7 @@ protected function configure()
2727
protected function execute(InputInterface $input, OutputInterface $output)
2828
{
2929
$this->import(System::class, $input->getArgument('src'), $output);
30+
31+
return 0;
3032
}
3133
}

src/Service/ReportImporter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function import(string $src)
5959
$report->setSysDataSentTo($this->sanitizeText($entry->{'Hvor overføres data til?'}));
6060
$report->setSysDataComeFrom($this->sanitizeText($entry->{'Hvor kommer data fra?'}));
6161
$report->setSysDataLocation($this->sanitizeText($entry->{'Placering af data'}));
62-
$report->setSysLatestDeletionDate($this->sanitizeText($entry->{'Hvornår slettes oplysningerne senest'}));
62+
$report->setSysLatestDeletionDate($this->sanitizeText($entry->{'Sletning'}));
6363
$report->setSysDataProcessors($this->sanitizeText($entry->{'Databehandler'}));
6464
$report->setSysDataProcessingAgreement($this->sanitizeText($entry->{'Databehandleraftale/fortrolighedsaftale'}));
6565
$report->setSysDataProcessingAgreementLink($this->sanitizeText($entry->{'Link til databehandleraftale/fortrolighedsaftale'}));

0 commit comments

Comments
 (0)