[FIX] account_ebics: Warning two fields have same label

This commit is contained in:
dsolanki 2023-02-13 12:33:07 +05:30 committed by Luc De Meyer
parent 8b9539656e
commit dc4b95ad35
3 changed files with 3 additions and 3 deletions

View File

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

View File

@ -107,7 +107,7 @@ class EbicsUserID(models.Model):
"by means of the SWIFT 3SKey token.", "by means of the SWIFT 3SKey token.",
) )
swift_3skey_certificate = fields.Binary(string="3SKey Certficate") 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 # X.509 Distinguished Name attributes used to
# create self-signed X.509 certificates # create self-signed X.509 certificates
ebics_key_x509 = fields.Boolean( ebics_key_x509 = fields.Boolean(

View File

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