mirror of
https://github.com/brain-tec/account_ebics.git
synced 2024-11-22 20:22:03 +00:00
ebics config bank account domain
This commit is contained in:
parent
8365651efb
commit
8662a1215b
@ -3,7 +3,8 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
'name': 'EBICS banking protocol',
|
'name': 'EBICS banking protocol',
|
||||||
'version': '13.0.1.0.1',
|
|
||||||
|
'version': '13.0.1.0.2',
|
||||||
'license': 'LGPL-3',
|
'license': 'LGPL-3',
|
||||||
'author': 'Noviat',
|
'author': 'Noviat',
|
||||||
'category': 'Accounting & Finance',
|
'category': 'Accounting & Finance',
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Copyright 2009-2019 Noviat.
|
# Copyright 2009-2020 Noviat.
|
||||||
# License LGPL-3 or later (http://www.gnu.org/licenses/lpgl).
|
# License LGPL-3 or later (http://www.gnu.org/licenses/lpgl).
|
||||||
|
|
||||||
import base64
|
import base64
|
||||||
@ -49,10 +49,17 @@ class EbicsConfig(models.Model):
|
|||||||
_order = 'name'
|
_order = 'name'
|
||||||
|
|
||||||
name = fields.Char(string='Name', required=True)
|
name = fields.Char(string='Name', required=True)
|
||||||
|
company_partner_id = fields.Many2one(
|
||||||
|
comodel_name='res.partner',
|
||||||
|
related='company_id.partner_id',
|
||||||
|
string='Account Holder',
|
||||||
|
readonly=True, store=False)
|
||||||
bank_id = fields.Many2one(
|
bank_id = fields.Many2one(
|
||||||
comodel_name='res.partner.bank',
|
comodel_name='res.partner.bank',
|
||||||
readonly=True, states={'draft': [('readonly', False)]},
|
readonly=True, states={'draft': [('readonly', False)]},
|
||||||
string='Bank Account', required=True)
|
string='Bank Account',
|
||||||
|
domain="[('partner_id','=', company_partner_id)]",
|
||||||
|
required=True)
|
||||||
ebics_host = fields.Char(
|
ebics_host = fields.Char(
|
||||||
string='EBICS HostID', required=True,
|
string='EBICS HostID', required=True,
|
||||||
readonly=True, states={'draft': [('readonly', False)]},
|
readonly=True, states={'draft': [('readonly', False)]},
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
</header>
|
</header>
|
||||||
<group col="4">
|
<group col="4">
|
||||||
<field name="name" colspan="2"/>
|
<field name="name" colspan="2"/>
|
||||||
<field name="bank_id" domain="[('company_id', '=', company_id)]"/>
|
<field name="bank_id"/>
|
||||||
<field name="ebics_host"/>
|
<field name="ebics_host"/>
|
||||||
<field name="ebics_url"/>
|
<field name="ebics_url"/>
|
||||||
<field name="ebics_partner"/>
|
<field name="ebics_partner"/>
|
||||||
@ -47,6 +47,7 @@
|
|||||||
attrs="{'invisible': [('ebics_version', '=', 'H004')]}"/>
|
attrs="{'invisible': [('ebics_version', '=', 'H004')]}"/>
|
||||||
<field name="active"/>
|
<field name="active"/>
|
||||||
<field name="company_id" widget='selection' groups="base.group_multi_company"/>
|
<field name="company_id" widget='selection' groups="base.group_multi_company"/>
|
||||||
|
<field name="company_partner_id" invisible="1"/>
|
||||||
</group>
|
</group>
|
||||||
<notebook>
|
<notebook>
|
||||||
<page string="Keys" groups="account_ebics.group_ebics_manager">
|
<page string="Keys" groups="account_ebics.group_ebics_manager">
|
||||||
|
Loading…
Reference in New Issue
Block a user