[13.0] [MIG] account_balance_line: Migration to 13.0

This commit is contained in:
Mihai Fekete
2020-02-07 09:02:07 +02:00
parent 9c6ed0d61f
commit 9f9e9bf566
3 changed files with 37 additions and 25 deletions

View File

@@ -17,13 +17,13 @@ Balance on journal items
:target: https://github.com/OCA/account-financial-tools/tree/12.0/account_balance_line
:alt: OCA/account-financial-tools
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/account-financial-tools-12-0/account-financial-tools-12-0-account_balance_line
:target: https://translation.odoo-community.org/projects/account-financial-tools-13-0/account-financial-tools-13-0-account_balance_line
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/92/12.0
:target: https://runbot.odoo-community.org/runbot/92/13.0
:alt: Try me on Runbot
|badge1| |badge2| |badge3| |badge4| |badge5|
|badge1| |badge2| |badge3| |badge4| |badge5|
This module adds a balance total for lines in move line view.
@@ -36,7 +36,7 @@ Usage
=====
#. If you're an accounting adviser, enable developer mode and go to
Accounting > Adviser > Journal items.
Accounting > Miscellaneous > Journal items.
#. Or open an account or a partner, and click on Action > Journal items.
#. You will see a column named "Balance" with the balance of the line.
@@ -80,6 +80,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.
This module is part of the `OCA/account-financial-tools <https://github.com/OCA/account-financial-tools/tree/12.0/account_balance_line>`_ project on GitHub.
This module is part of the `OCA/account-financial-tools <https://github.com/OCA/account-financial-tools/tree/13.0/account_balance_line>`_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

View File

@@ -2,21 +2,15 @@
# Copyright 2016 Tecnativa - Vicent Cubells
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Balance on journal items',
'summary': 'Display balance totals in move line view',
'version': '12.0.1.0.0',
'category': 'Accounting',
'website': 'https://github.com/OCA/account-financial-tools',
'author': "Camptocamp,"
"Tecnativa,"
"Odoo Community Association (OCA)",
'license': 'AGPL-3',
'application': False,
'installable': True,
'depends': [
'account'
],
'data': [
'views/account_move_line_view.xml'
],
"name": "Balance on journal items",
"summary": "Display balance totals in move line view",
"version": "13.0.1.0.0",
"category": "Accounting",
"website": "https://github.com/OCA/account-financial-tools",
"author": "Camptocamp," "Tecnativa," "Odoo Community Association (OCA)",
"license": "AGPL-3",
"application": False,
"installable": True,
"depends": ["account"],
"data": ["views/account_move_line_view.xml"],
}

View File

@@ -1,14 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record model="ir.ui.view" id="account_move_line_balance_custom">
<record model="ir.ui.view" id="account_move_line_balance_tree">
<field name="model">account.move.line</field>
<field name="inherit_id" ref="account.view_move_line_tree"/>
<field name="arch" type="xml">
<field name="credit" position="after" >
<field name="balance" sum="Total Balance"/>
<field name="credit" position="after">
<field name="balance" sum="Total Balance" optional="show"/>
</field>
</field>
</record>
<record model="ir.ui.view" id="account_move_line_balance_tree_grouped">
<field name="model">account.move.line</field>
<field name="inherit_id" ref="account.view_move_line_tree_grouped"/>
<field name="arch" type="xml">
<field name="credit" position="after">
<field name="balance" sum="Total Balance" optional="show"/>
</field>
</field>
</record>
<record model="ir.ui.view" id="account_move_line_balance_audit_tree">
<field name="model">account.move.line</field>
<field name="inherit_id" ref="account.view_move_line_tax_audit_tree"/>
<field name="arch" type="xml">
<field name="balance" position="replace" optional="show"/>
</field>
</record>
</odoo>