mirror of
https://github.com/brain-tec/account_ebics.git
synced 2024-11-22 20:22:03 +00:00
[FIX] account_ebics: Warning two fields have same label
This commit is contained in:
parent
36fcb3dc9d
commit
21dffae3e6
@ -65,7 +65,7 @@ class EbicsFile(models.Model):
|
|||||||
readonly=True,
|
readonly=True,
|
||||||
)
|
)
|
||||||
note = fields.Text(string="Notes")
|
note = fields.Text(string="Notes")
|
||||||
note_process = fields.Text(string="Notes")
|
note_process = fields.Text(string="Process Notes")
|
||||||
company_ids = fields.Many2many(
|
company_ids = fields.Many2many(
|
||||||
comodel_name="res.company",
|
comodel_name="res.company",
|
||||||
string="Companies",
|
string="Companies",
|
||||||
|
@ -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(
|
||||||
|
@ -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
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user