28 lines
852 B
XML
28 lines
852 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright 2021-2024 Akretion (https://www.akretion.com/)
|
|
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
-->
|
|
|
|
<odoo>
|
|
|
|
|
|
<record id="view_company_form" model="ir.ui.view">
|
|
<field name="name">account_usability.res.company.form</field>
|
|
<field name="model">res.company</field>
|
|
<field name="inherit_id" ref="base.view_company_form"/>
|
|
<field name="arch" type="xml">
|
|
<notebook position="inside">
|
|
<page string="Legal Terms" name="legal_terms">
|
|
<group string="Invoice Legal Terms" name="static_invoice_terms">
|
|
<field name="static_invoice_terms" nolabel="1" colspan="2"/>
|
|
</group>
|
|
</page>
|
|
</notebook>
|
|
</field>
|
|
</record>
|
|
|
|
|
|
</odoo>
|