Files
manufacture/mrp_workcenter_group/__openerp__.py
david.beal@akretion.com 8c0bb059e1 [IMP] add demo data
2015-03-20 22:31:43 +01:00

97 lines
2.7 KiB
Python

# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (C) All Rights Reserved 2015 Akretion
# @author David BEAL <david.beal@akretion.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
###############################################################################
{
'name': 'MRP Workcenter Group',
'version': '0.5',
'author': 'Akretion,Odoo Community Association (OCA)',
'summary': "Organise Workcenters by section",
'category': 'Manufacturing',
'depends': [
'mrp_operations',
],
'description': """
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:alt: License
MRP Workcenter Group
====================
* Add Workcenter Groups to apply some behavior to several Workcenters at once
* Define a new 'Group by' entry named 'Group' in Workcenter search view
Configuration
=============
To visualize features offered by this module, you need to:
* go to Settings > Configuration > Manufacturing
* in the section Manufacturing Order / Planning,
check "Manage routings and work orders" and Validate
Usage
=====
To use this module, you need to go to:
* Manufacturing > Configuration > Workcenter Groups
Credits
=======
Contributors
------------
* David BEAL <david.beal@akretion.com>
* Sébastien BEAU <sebastien.beau@akretion.com>
Maintainer
----------
.. image:: http://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: http://odoo-community.org
This module is maintained by the OCA.
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.
To contribute to this module, please visit http://odoo-community.org.
""",
'website': 'http://www.akretion.com/',
'data': [
'workcenter_view.xml',
],
'demo': [
'demo/workcenter.group.csv',
'demo/mrp.workcenter.csv',
],
'license': 'AGPL-3',
'tests': [],
'installable': True,
'auto_install': False,
'application': False,
}