mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-28 01:58:40 -05:00
add support for 1822-DIREKT-HELADEF1822 transaction information (#484)
This commit is contained in:
16
src/app-gocardless/banks/1822-direkt-heladef1822.js
Normal file
16
src/app-gocardless/banks/1822-direkt-heladef1822.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import Fallback from './integration-bank.js';
|
||||
|
||||
/** @type {import('./bank.interface.js').IBank} */
|
||||
export default {
|
||||
...Fallback,
|
||||
|
||||
institutionIds: ['DIREKT_HELADEF1822'],
|
||||
|
||||
normalizeTransaction(transaction, booked) {
|
||||
transaction.remittanceInformationUnstructured =
|
||||
transaction.remittanceInformationUnstructured ??
|
||||
transaction.remittanceInformationStructured;
|
||||
|
||||
return Fallback.normalizeTransaction(transaction, booked);
|
||||
},
|
||||
};
|
||||
6
upcoming-release-notes/484.md
Normal file
6
upcoming-release-notes/484.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Enhancements
|
||||
authors: [matt-fidd]
|
||||
---
|
||||
|
||||
Add support for `1822-DIREKT-HELADEF1822` transaction information
|
||||
Reference in New Issue
Block a user