You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are doing bank transfers to the USA, where the DTAZV format is needed. Transfers are done via routing number and BIC codes. A U.S. bank routing number is 9 digits, while KingDta::Account accepts 8 digits only.
I would fix this myself, but are not sure, which would be the best option.
Option A: Subclass KingDta::Account to a KingDta::DtazvAccount where longer bank_numbers and bank_account_numbers are allowed.
Option B: Move the length check to KingDta::Dtaus, so that the allowed length is checked depending on the format (DTAZV allows longer numbers than DTAUS).
Any suggestions?
The text was updated successfully, but these errors were encountered:
We are doing bank transfers to the USA, where the DTAZV format is needed. Transfers are done via routing number and BIC codes. A U.S. bank routing number is 9 digits, while KingDta::Account accepts 8 digits only.
I would fix this myself, but are not sure, which would be the best option.
KingDta::Account
to aKingDta::DtazvAccount
where longer bank_numbers and bank_account_numbers are allowed.KingDta::Dtaus
, so that the allowed length is checked depending on the format (DTAZV allows longer numbers than DTAUS).Any suggestions?
The text was updated successfully, but these errors were encountered: