You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.4 KiB
40 lines
1.4 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
Copyright 2017 LasLabs Inc.
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
-->
|
|
|
|
<odoo>
|
|
|
|
<record id="contract_contract_form_view" model="ir.ui.view">
|
|
<field name="name">Contract Auto Pay</field>
|
|
<field name="model">contract.contract</field>
|
|
<field name="inherit_id" ref="contract.contract_contract_customer_form_view"/>
|
|
<field name="arch" type="xml">
|
|
|
|
<page name="info" position="before">
|
|
<page name="autopay" string="Auto Pay">
|
|
<group>
|
|
<field name="is_auto_pay"/>
|
|
</group>
|
|
<group name="group_auto_pay"
|
|
attrs="{'invisible': [('is_auto_pay', '=', False)]}"
|
|
>
|
|
<group>
|
|
<field name="payment_token_id" />
|
|
<field name="invoice_mail_template_id" />
|
|
<field name="pay_retry_mail_template_id" />
|
|
</group>
|
|
<group>
|
|
<field name="pay_fail_mail_template_id" />
|
|
<field name="auto_pay_retries" />
|
|
<field name="auto_pay_retry_hours" />
|
|
</group>
|
|
</group>
|
|
</page>
|
|
</page>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|