mirror of
https://gitlab.com/flectra-community/l10n-switzerland-flectra.git
synced 2024-11-17 03:22:03 +00:00
31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
<odoo>
|
||
|
<record model="ir.ui.view" id="ebill_payment_contract_form_view">
|
||
|
<field name="name">ebill.payment.contract.form (in ebill_panyet)</field>
|
||
|
<field name="model">ebill.payment.contract</field>
|
||
|
<field
|
||
|
name="inherit_id"
|
||
|
ref="base_ebill_payment_contract.ebill_payment_contract_form_view"
|
||
|
/>
|
||
|
<field name="arch" type="xml">
|
||
|
<group name="main" position="after">
|
||
|
<group name="paynet" position="after">
|
||
|
<field
|
||
|
name="paynet_service_id"
|
||
|
attrs="{'invisible': [('is_paynet_contract', '=', False)]}"
|
||
|
/>
|
||
|
<field
|
||
|
name="paynet_account_number"
|
||
|
attrs="{'invisible': [('is_paynet_contract', '=', False)]}"
|
||
|
/>
|
||
|
<field
|
||
|
name="payment_type"
|
||
|
attrs="{'invisible': [('is_paynet_contract', '=', False)]}"
|
||
|
/>
|
||
|
<field name="is_paynet_contract" invisible="1" />
|
||
|
</group>
|
||
|
</group>
|
||
|
</field>
|
||
|
</record>
|
||
|
</odoo>
|