Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Available addons
----------------
addon | version | maintainers | summary
--- | --- | --- | ---
[base_bank_from_iban](base_bank_from_iban/) | 19.0.1.0.0 | | Bank from IBAN
[base_bank_from_iban](base_bank_from_iban/) | 19.0.1.0.1 | | Bank from IBAN
[uom_unece](uom_unece/) | 19.0.1.0.0 | <a href='https://github.com/astirpe'><img src='https://github.com/astirpe.png' width='32' height='32' style='border-radius:50%;' alt='astirpe'/></a> <a href='https://github.com/alexis-via'><img src='https://github.com/alexis-via.png' width='32' height='32' style='border-radius:50%;' alt='alexis-via'/></a> | UNECE nomenclature for the units of measure

[//]: # (end addons)
Expand Down
2 changes: 1 addition & 1 deletion base_bank_from_iban/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Bank from IBAN
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:a504d9a9e5e9229364e052ca5269dee8f7752dcd223bde5bd06c8f9d31e088c6
!! source digest: sha256:2bad66ac89dec2680904060198c2ca2beb1337f4c5837fd58b82ff84c8cb58ec
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png
Expand Down
2 changes: 1 addition & 1 deletion base_bank_from_iban/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

{
"name": "Bank from IBAN",
"version": "19.0.1.0.0",
"version": "19.0.1.0.1",
"author": "Tecnativa, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/community-data-files",
"category": "Localization",
Expand Down
5 changes: 4 additions & 1 deletion base_bank_from_iban/models/res_partner_bank.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ def _get_bank_from_iban(self, acc_number):
bank = self.env["res.bank"].create(vals)
else:
bank = self.env["res.bank"]
except schwifty.exceptions.InvalidStructure:
except (
schwifty.exceptions.InvalidStructure,
schwifty.exceptions.InvalidChecksumDigits,
):
bank = self.env["res.bank"]
return bank

Expand Down
2 changes: 1 addition & 1 deletion base_bank_from_iban/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ <h1>Bank from IBAN</h1>
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:a504d9a9e5e9229364e052ca5269dee8f7752dcd223bde5bd06c8f9d31e088c6
!! source digest: sha256:2bad66ac89dec2680904060198c2ca2beb1337f4c5837fd58b82ff84c8cb58ec
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Mature" src="https://img.shields.io/badge/maturity-Mature-brightgreen.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/community-data-files/tree/19.0/base_bank_from_iban"><img alt="OCA/community-data-files" src="https://img.shields.io/badge/github-OCA%2Fcommunity--data--files-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/community-data-files-19-0/community-data-files-19-0-base_bank_from_iban"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/community-data-files&amp;target_branch=19.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
<p>This module adds a code to bank definition for using it as matching for
Expand Down