[MIG] Migrated mrp_progress_button to v12

This commit is contained in:
Sudhir Arya
2018-12-04 14:43:15 +05:30
committed by AaronHForgeFlow
parent 6dd4d711d4
commit 3063248b4b
5 changed files with 29 additions and 26 deletions

View File

@@ -14,13 +14,13 @@ Mrp Progress Button
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmanufacture-lightgray.png?logo=github
:target: https://github.com/OCA/manufacture/tree/11.0/mrp_progress_button
:target: https://github.com/OCA/manufacture/tree/12.0/mrp_progress_button
:alt: OCA/manufacture
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/manufacture-11-0/manufacture-11-0-mrp_progress_button
:target: https://translation.odoo-community.org/projects/manufacture-12-0/manufacture-12-0-mrp_progress_button
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/129/11.0
:target: https://runbot.odoo-community.org/runbot/129/12.0
:alt: Try me on Runbot
|badge1| |badge2| |badge3| |badge4| |badge5|
@@ -46,12 +46,10 @@ To use this module, you need to:
Bug Tracker
===========
Bugs are tracked on `GitHub Issues <https://github.com/OCA/manufacture/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 <https://github.com/OCA/manufacture/issues/new?body=module:%20mrp_progress_button%0Aversion:%2011.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Do not contact contributors directly about support or help with technical issues.
Bugs are tracked on `GitHub Issues
<https://github.com/OCA/manufacture/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first,
help us smash it by providing detailed and welcomed feedback.
Credits
=======
@@ -65,6 +63,7 @@ Contributors
~~~~~~~~~~~~
* Florian da Costa <florian.dacosta@akretion.com>
* Sudhir Arya <sudhir@erpharbor.com>
Maintainers
~~~~~~~~~~~
@@ -79,6 +78,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/manufacture <https://github.com/OCA/manufacture/tree/11.0/mrp_progress_button>`_ project on GitHub.
This module is part of the `OCA/manufacture <https://github.com/OCA/manufacture/tree/12.0/mrp_progress_button>`_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

View File

@@ -8,10 +8,13 @@
"author": "Akretion, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/manufacture",
"category": "Manufacturing",
"version": "11.0.1.0.0",
"version": "12.0.1.0.0",
"license": "AGPL-3",
"application": False,
"depends": [
"mrp"
],
"data": [
"views/production.xml"
],
"installable": True,
"depends": ["mrp"],
"data": ["views/production.xml"],
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@@ -14,7 +14,7 @@ class TestProgressButton(TransactionCase):
self.stock_location_stock = self.env.ref('stock.stock_location_stock')
self.manufacture_route = self.env.ref(
'mrp.route_warehouse0_manufacture')
self.uom_unit = self.env.ref('product.product_uom_unit')
self.uom_unit = self.env.ref('uom.product_uom_unit')
self.product_manuf = self.env['product.product'].create({
'name': 'Manuf',
@@ -67,3 +67,4 @@ class TestProgressButton(TransactionCase):
})
production.action_progress()
self.assertEqual(production.state, 'progress')

View File

@@ -1,15 +1,15 @@
<?xml version="1.0"?>
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record id="mrp_production_progress_button_form_view" model="ir.ui.view">
<field name="model">mrp.production</field>
<field name="inherit_id" ref="mrp.mrp_production_form_view"/>
<field name="arch" type="xml">
<button name="action_assign" position="after">
<button name="action_progress" attrs="{'invisible': ['|', ('state', '!=', 'confirmed'), ('routing_id', '!=', False)]}"
type="object" string="Mark As Started" class="oe_highlight"/>
</button>
</field>
</record>
<record id="mrp_production_progress_button_form_view" model="ir.ui.view">
<field name="model">mrp.production</field>
<field name="inherit_id" ref="mrp.mrp_production_form_view"/>
<field name="arch" type="xml">
<button name="action_assign" position="after">
<button name="action_progress" attrs="{'invisible': ['|', ('state', '!=', 'confirmed'), ('routing_id', '!=', False)]}"
type="object" string="Mark As Started" class="oe_highlight"/>
</button>
</field>
</record>
</odoo>