Skip to content
This repository has been archived by the owner on Feb 16, 2022. It is now read-only.

Commit

Permalink
Merge pull request #50 from kellerkinderDE/feature/HEIDELPAYSUPPORT-98
Browse files Browse the repository at this point in the history
[HEIDELPAYSUPPORT-98] Fix birthdate error with sepa direct debit for saved account
  • Loading branch information
Ryouzanpaku authored Apr 6, 2021
2 parents 9874280 + 350b782 commit 3299a27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
createPaymentFromVault: function (typeId) {
var me = this,
birthDateTarget = '#' + typeId + '_birthDate',
birthDate = this.heidelpayPlugin.getFormattedBirthday(birthDateTarget);
birthDate = $(birthDateTarget).val();

if (!birthDate) {
me.onError({ message: me.heidelpayPlugin.opts.heidelpayBirthdayError });
Expand Down
2 changes: 2 additions & 0 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@
<li>Korrektur eines Fehlers für wiederkehrende Kreditkarten Zahlung in Verbindung mit SwagAboCommerce</li>
<li>Korrektur der Validierung des Geburtsdatums für FlexiPay Rechnung für B2B</li>
<li>Korrektur der Warenkorb Verarbeitung</li>
<li>Korrektur eines Fehlers für FlexiPay Lastschrift (gesichert) für gespeicherte Lastschriftkonten</li>
</ul>
]]>
</changes>
Expand All @@ -140,6 +141,7 @@
<li>Fixed an error of credit card payments in combination with AboCommerce orders</li>
<li>Fixed the validation of the birthdate for FlexiPay invoice for B2B</li>
<li>Fixed the shopping cart hydration</li>
<li>Fixed an error with FlexiPay Direct Debit (secured) for saved bank accounts</li>
</ul>
]]>
</changes>
Expand Down

0 comments on commit 3299a27

Please sign in to comment.