From 70359ec343bbf8a93a385821065e911ac5fd6e73 Mon Sep 17 00:00:00 2001 From: s j <sj@1729.be> Date: Wed, 20 Oct 2021 09:15:34 +0200 Subject: [PATCH] i6437 column data for share ids is missing in export --- .../TransactionsAndConversions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Plugin/ShareholderRegisterExportPlugin/TransactionsAndConversions.php b/src/Plugin/ShareholderRegisterExportPlugin/TransactionsAndConversions.php index c77cea8d..5d12c1b2 100644 --- a/src/Plugin/ShareholderRegisterExportPlugin/TransactionsAndConversions.php +++ b/src/Plugin/ShareholderRegisterExportPlugin/TransactionsAndConversions.php @@ -75,7 +75,7 @@ class TransactionsAndConversions extends PluginBase implements PluginFormInterfa '@type' => $this->configuration['form_values']['use_payment_date'] ? $this->t('Date of payment') : $this->t('Date of validation'), ]), 'column_headers' => [ - t('ID'), + t('Export ID'), t('Date'), t('Shareholder Number'), t('Shareholder Name'), @@ -167,7 +167,7 @@ class TransactionsAndConversions extends PluginBase implements PluginFormInterfa $sheet->setCellValue("E{$row}", $line->getQuantity()); $sheet->setCellValue("F{$row}", $formatter->shareIdsToRanges($line->getShareIds())); - $col = 'F'; + $col = 'G'; foreach (ShareholderRegisterService::getShareHashTextComponents($line->getShareHash()) as $component) { $sheet->setCellValue("{$col}{$row}", $component); $col = chr(ord($col) + 1); -- GitLab