Skip to content

Commit

Permalink
fix: save bic for concardis direct debit payment method (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
harshrsys authored Jul 16, 2020
1 parent 8d96718 commit b5d26dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ describe('Payment Concardis Directdebit Component', () => {
attributes: {
accountHolder: 'Klaus Klausen',
iban: '123456789',
bic: 'BYLADEM1SKB',
mandateReference: 'ref',
mandate: {
mandateReference: 'ref',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ export class PaymentConcardisDirectdebitComponent extends PaymentConcardisCompon
attributes: {
accountHolder: string;
iban: string;
bic: string;
mandateReference: string;
mandate: {
mandateReference: string;
Expand Down Expand Up @@ -170,6 +171,7 @@ export class PaymentConcardisDirectdebitComponent extends PaymentConcardisCompon
{ name: 'paymentInstrumentId', value: result.paymentInstrumentId },
{ name: 'accountHolder', value: result.attributes.accountHolder },
{ name: 'IBAN', value: result.attributes.iban },
{ name: 'BIC', value: result.attributes.bic },
{ name: 'mandateReference', value: result.attributes.mandate.mandateReference },
{ name: 'mandateText', value: result.attributes.mandate.mandateText },
{ name: 'mandateCreatedDateTime', value: result.attributes.mandate.createdDateTime },
Expand Down

0 comments on commit b5d26dd

Please sign in to comment.