Merge pull request #67 from Nitrokey/15.0-fix-account_ebics

[15.0][FIX] account_ebics: Warning two fields have same label
This commit is contained in:
Luc De Meyer 2023-02-14 19:45:27 +01:00 committed by GitHub
commit 48f24e5bee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -65,7 +65,7 @@ class EbicsFile(models.Model):
readonly=True,
)
note = fields.Text(string="Notes")
note_process = fields.Text(string="Notes")
note_process = fields.Text(string="Process Notes")
company_ids = fields.Many2many(
comodel_name="res.company",
string="Companies",

View File

@ -107,7 +107,7 @@ class EbicsUserID(models.Model):
"by means of the SWIFT 3SKey token.",
)
swift_3skey_certificate = fields.Binary(string="3SKey Certficate")
swift_3skey_certificate_fn = fields.Char(string="EBICS Public Bank Keys Filename")
swift_3skey_certificate_fn = fields.Char(string="EBICS certificate name")
# X.509 Distinguished Name attributes used to
# create self-signed X.509 certificates
ebics_key_x509 = fields.Boolean(

View File

@ -65,7 +65,7 @@ class EbicsXfer(models.TransientModel):
date_from = fields.Date()
date_to = fields.Date()
upload_data = fields.Binary(string="File to Upload")
upload_fname = fields.Char(string="Upload Filename", default="")
upload_fname = fields.Char(default="")
upload_fname_dummy = fields.Char(
related="upload_fname", string="Upload Filename", readonly=True
)