Skip to content

Commit

Permalink
[SHPWR-198] remove SEPA BIC field and IBAN country validation
Browse files Browse the repository at this point in the history
  • Loading branch information
AnnegretS committed Mar 2, 2017
1 parent 3ee8af0 commit d27a34f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
3 changes: 1 addition & 2 deletions Component/Model/SubModel/BankAccount.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,7 @@ public function toArray()

return array(
'owner' => $this->getOwner(),
'iban' => $this->getBankAccount(),
'bic-swift' => $this->getBankCode()
'iban' => $this->getBankAccount()
);

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@
if ($(this).val().match(/^\d+$/)) {
blzInput.prop('disabled', false);
blzBlock.show();
} else if ($(this).val().match(/at/i)) {
blzInput.prop('disabled', false);
blzBlock.show();
}
else {
blzInput.prop('disabled', true);
Expand Down

0 comments on commit d27a34f

Please sign in to comment.