Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIG] l10n_ar_account_tax_settlement: Migration to 18.0 #506

Open
wants to merge 1 commit into
base: 18.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions l10n_ar_account_tax_settlement/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
##############################################################################
{
'name': 'Tax Settlements For Argentina',
'version': "17.0.1.4.0",
'version': "18.0.1.0.0",
'category': 'Accounting',
'website': 'www.adhoc.com.ar',
'license': 'LGPL-3',
Expand All @@ -43,7 +43,7 @@
],
'test': [
],
'installable': False,
'installable': True,
'auto_install': True,
'application': False,
}
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<odoo>

<record id="inflation_adjustment_index_tree" model="ir.ui.view">
<field name="name">inflation.adjustment.index.tree</field>
<field name="name">inflation.adjustment.index.list</field>
<field name="model">inflation.adjustment.index</field>
<field name="arch" type="xml">
<tree editable="top">
<list editable="top">
<field name="date"/>
<field name="value"/>
<field name="xml_id" groups="base.group_no_one"/>
</tree>
</list>
</field>
</record>

Expand All @@ -25,7 +25,7 @@
<record id="inflation_adjustment_index_action" model="ir.actions.act_window">
<field name="name">Indices de Ajuste de Inflación</field>
<field name="res_model">inflation.adjustment.index</field>
<field name="view_mode">tree,form</field>
<field name="view_mode">list,form</field>
<field name="help" type="html">
<p class="oe_view_nocontent_create">
No hay indices de ajuste por inflación aún. Por favor cree uno.
Expand Down