mirror of
https://github.com/brain-tec/account_ebics.git
synced 2024-11-23 12:42:04 +00:00
ebics_xfer - fix for BTU with empty suffix
This commit is contained in:
parent
51e4f00404
commit
f1f9cfd2f8
@ -152,7 +152,7 @@ class EbicsXfer(models.TransientModel):
|
|||||||
)
|
)
|
||||||
if len(upload_formats) > 1:
|
if len(upload_formats) > 1:
|
||||||
upload_formats = upload_formats.filtered(
|
upload_formats = upload_formats.filtered(
|
||||||
lambda r: self.upload_fname.endswith(r.suffix)
|
lambda r: self.upload_fname.endswith(r.suffix or "")
|
||||||
)
|
)
|
||||||
if len(upload_formats) == 1:
|
if len(upload_formats) == 1:
|
||||||
self.format_id = upload_formats
|
self.format_id = upload_formats
|
||||||
|
Loading…
Reference in New Issue
Block a user