mirror of
https://github.com/brain-tec/account_ebics.git
synced 2024-11-23 12:42:04 +00:00
suffix no longer required
This commit is contained in:
parent
b8b09217a8
commit
9b7a2a670a
@ -56,7 +56,6 @@ class EbicsFileFormat(models.Model):
|
||||
)
|
||||
description = fields.Char()
|
||||
suffix = fields.Char(
|
||||
required=True,
|
||||
help="Specify the filename suffix for this File Format.\nE.g. c53.xml",
|
||||
)
|
||||
# EBICS 3.0 BTF
|
||||
|
@ -374,7 +374,7 @@ class EbicsXfer(models.TransientModel):
|
||||
ef_note += "\n" + _("Origin: %s") % self._context["origin"]
|
||||
suffix = self.format_id.suffix
|
||||
fn = self.upload_fname
|
||||
if not fn.endswith(suffix):
|
||||
if suffix and not fn.endswith(suffix):
|
||||
fn = ".".join([fn, suffix])
|
||||
ef_vals = {
|
||||
"name": self.upload_fname,
|
||||
@ -554,7 +554,10 @@ class EbicsXfer(models.TransientModel):
|
||||
if file_format.name in ff_methods:
|
||||
data = ff_methods[file_format.name](data)
|
||||
|
||||
fn = ".".join([base_fn, file_format.suffix])
|
||||
fn = base_fn
|
||||
suffix = file_format.suffix
|
||||
if suffix and not fn.endswith(suffix):
|
||||
fn = ".".join([fn, suffix])
|
||||
dups = self._check_duplicate_ebics_file(fn, file_format)
|
||||
if dups:
|
||||
raise UserError(
|
||||
|
Loading…
Reference in New Issue
Block a user