[IMP] account_ebics: correct support of ebics.userid.user_ids filter, ebics-key UI designation improvement

This commit is contained in:
evgeny-l
2023-06-21 13:34:37 +02:00
committed by Luc De Meyer
parent 657403facb
commit ce6d3da66c
5 changed files with 47 additions and 24 deletions

View File

@@ -84,6 +84,17 @@ class EbicsUserID(models.Model):
"This default can be overriden for specific "
"EBICS transactions (cf. File Formats).",
)
ui_designation = fields.Selection(
[
("both", "Download and Upload"),
("down", "Download Only"),
("up", "Upload Only"),
],
string="UI Designation",
default="both",
required=True,
help="Defines in what form this User will be available for selection.",
)
ebics_keys_fn = fields.Char(compute="_compute_ebics_keys_fn")
ebics_keys_found = fields.Boolean(compute="_compute_ebics_keys_found")
ebics_passphrase = fields.Char(string="EBICS Passphrase")