2021-05-18 11:52:53 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
2020-05-04 15:17:28 +02:00
|
|
|
<!--
|
|
|
|
Copyright (C) 2020 - Today: GRAP (http://www.grap.coop)
|
|
|
|
@author: Sylvain LE GAL (https://twitter.com/legalsylvain)
|
|
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
-->
|
|
|
|
<odoo>
|
|
|
|
|
|
|
|
<record id="view_account_tax_template_tree" model="ir.ui.view">
|
|
|
|
<field name="model">account.tax.template</field>
|
2021-05-18 11:52:53 +02:00
|
|
|
<field name="inherit_id" ref="account.view_account_tax_template_tree" />
|
2020-05-04 15:17:28 +02:00
|
|
|
<field name="arch" type="xml">
|
|
|
|
<xpath expr="//tree" position="attributes">
|
|
|
|
<attribute name="decoration-muted">not active</attribute>
|
|
|
|
</xpath>
|
|
|
|
<field name="description" position="after">
|
2021-05-18 11:52:53 +02:00
|
|
|
<field name="active" widget="boolean_toggle" />
|
2020-05-04 15:17:28 +02:00
|
|
|
</field>
|
|
|
|
</field>
|
|
|
|
</record>
|
2022-11-03 23:25:22 +01:00
|
|
|
|
2021-05-24 13:43:30 +02:00
|
|
|
<record id="view_account_tax_template_form" model="ir.ui.view">
|
|
|
|
<field name="model">account.tax.template</field>
|
|
|
|
<field name="inherit_id" ref="account.view_account_tax_template_form" />
|
|
|
|
<field name="arch" type="xml">
|
2022-11-03 23:25:22 +01:00
|
|
|
<group name="main_group" position="before">
|
|
|
|
<widget
|
|
|
|
name="web_ribbon"
|
|
|
|
title="Archived"
|
|
|
|
bg_color="bg-danger"
|
|
|
|
attrs=" {'invisible': [('active', '=', True)]}"
|
|
|
|
/>
|
|
|
|
</group>
|
2021-05-24 13:43:30 +02:00
|
|
|
<field name="name" position="after">
|
2022-11-03 23:25:22 +01:00
|
|
|
<field name="active" invisible="1" />
|
2021-05-24 13:43:30 +02:00
|
|
|
</field>
|
|
|
|
</field>
|
|
|
|
</record>
|
2022-11-03 23:25:22 +01:00
|
|
|
|
2020-05-04 15:17:28 +02:00
|
|
|
<record id="account.action_account_tax_template_form" model="ir.actions.act_window">
|
|
|
|
<field name="context">{"active_test": False}</field>
|
|
|
|
</record>
|
|
|
|
|
|
|
|
</odoo>
|