Fix a bug where transfers would be stored reversed (ie. source and destination switched).

This commit is contained in:
James Cole
2018-07-14 08:33:13 +02:00
parent 46482bdae1
commit cd076cc069
7 changed files with 28 additions and 22 deletions

View File

@@ -283,6 +283,12 @@ return [
'converter' => 'AssetAccountNumber',
'mapper' => 'AssetAccounts',
],
'account-bic' => [
'mappable' => false,
'pre-process-map' => false,
'field' => 'asset-account-bic',
'converter' => 'AccountBic',
],
'opposing-id' => [
'mappable' => true,
'pre-process-map' => false,
@@ -391,6 +397,13 @@ return [
'converter' => 'Description',
'field' => 'sepa_ci',
],
// SEPA Batch ID
'sepa-batch-id' => [
'mappable' => false,
'pre-process-map' => false,
'converter' => 'Description',
'field' => 'sepa_batch',
],
// Internal reference
'internal-reference' => [
'mappable' => false,