From 4970731cf13c630219bfd5fdba8df48a837c4927 Mon Sep 17 00:00:00 2001 From: Luc De Meyer Date: Fri, 24 Jul 2020 10:56:21 +0200 Subject: [PATCH] [13.0][FIX]remove not null on ebics userid constraint from ebics.xfer wizard to fix upload from batch payment in case of multi-bank/multi-user setup --- account_ebics/wizards/ebics_xfer.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/account_ebics/wizards/ebics_xfer.py b/account_ebics/wizards/ebics_xfer.py index 3e5b695..0bfa18f 100644 --- a/account_ebics/wizards/ebics_xfer.py +++ b/account_ebics/wizards/ebics_xfer.py @@ -51,8 +51,7 @@ class EbicsXfer(models.TransientModel): default=lambda self: self._default_ebics_config_id()) ebics_userid_id = fields.Many2one( comodel_name='ebics.userid', - string='EBICS UserID', - required=True) + string='EBICS UserID') ebics_passphrase = fields.Char( string='EBICS Passphrase') date_from = fields.Date()