[MIG] account_move_line_product: Migration to 11.0

This commit is contained in:
mreficent
2018-08-30 18:59:45 +02:00
committed by anaïs
parent 140a52844f
commit f40835113f
6 changed files with 13 additions and 26 deletions

View File

@@ -1,5 +1,5 @@
.. image:: https://img.shields.io/badge/license-AGPLv3-blue.svg
:target: https://www.gnu.org/licenses/agpl.html
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: https://www.gnu.org/licenses/agpl
:alt: License: AGPL-3
=========================
@@ -17,15 +17,15 @@ Usage
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/92/10.0
:target: https://runbot.odoo-community.org/runbot/92/11.0
Bug Tracker
===========
Bugs are tracked on `GitHub Issues
<https://github.com/OCA/account-financial-tools/issues>`_. In case of trouble, please
<https://github.com/OCA/stock-logistics-warehouse/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first,
help us smashing it by providing a detailed and welcomed feedback.
help us smash it by providing detailed and welcomed feedback.
Credits
=======
@@ -33,7 +33,7 @@ Credits
Images
------
* Odoo Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_.
* Odoo Community Association: `Icon <https://odoo-community.org/logo.png>`_.
Contributors
------------

View File

@@ -1,4 +1 @@
# -*- coding: utf-8 -*-
# © 2016 Eficent Business and IT Consulting Services, S.L.
# (<http://www.eficent.com>)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).

View File

@@ -1,11 +1,10 @@
# -*- coding: utf-8 -*-
# © 2016-17 Eficent Business and IT Consulting Services, S.L.
# (<http://www.eficent.com>)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
"name": "Account Move Line Product",
"version": "10.0.1.0.0",
"version": "11.0.1.0.0",
"summary": "Displays the product in the journal entries and items",
"author": "Eficent, Odoo Community Association (OCA)",
"website": "http://www.eficent.com",
@@ -16,5 +15,4 @@
"views/account_move_line_view.xml",
],
'installable': True,
'active': False,
}

View File

@@ -0,0 +1 @@
* Jordi Ballester Alomar <jordi.ballester@eficent.com>

View File

@@ -0,0 +1,5 @@
This module enhances the views associated to account moves and account move
lines to display the product that is associated to the move line.
This will be relevant in perpetual inventory, for inventory-related account
moves.

View File

@@ -18,20 +18,6 @@
</field>
</record>
<record id="view_move_line_form2" model="ir.ui.view">
<field name="name">account.move.line.form2</field>
<field name="model">account.move.line</field>
<field name="inherit_id" ref="account.view_move_line_form2"/>
<field name="arch" type="xml">
<field name="quantity" position="before">
<field name="product_id"/>
</field>
<field name="quantity" position="attributes">
<attribute name="invisible">False</attribute>
</field>
</field>
</record>
<record id="view_move_line_tree" model="ir.ui.view">
<field name="name">account.move.line.tree</field>
<field name="model">account.move.line</field>