mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
In order to get visibility on https://www.odoo.com/apps the OCA board has decided to add the OCA as author of all the addons maintained as part of the association.
47 lines
2.3 KiB
Python
47 lines
2.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
###############################################################################
|
|
# #
|
|
# Author: Leonardo Pistone <leonardo.pistone@camptocamp.com> #
|
|
# Copyright 2014 Camptocamp SA #
|
|
# #
|
|
# 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 Split Units',
|
|
'version': '0.1',
|
|
'category': 'Generic Modules/Others',
|
|
'license': 'AGPL-3',
|
|
'description': """
|
|
MRP Split one line into many lines with quantity one each
|
|
in a production order.
|
|
|
|
This module adds a button in each line of the Products to Finish and Finished
|
|
Products to automatically split one line with integer quantity into many lines,
|
|
each with quantity 1. After the split, the module performs a
|
|
"poor man's refresh" (i.e. manually reloads the page) as a workaround for the
|
|
bug lp:1083253.
|
|
""",
|
|
'complexity': 'easy',
|
|
'author': "Camptocamp,Odoo Community Association (OCA)",
|
|
'website': 'http://www.camptocamp.com/',
|
|
'depends': ['mrp'],
|
|
'init_xml': [],
|
|
'update_xml': ['mrp_view.xml'],
|
|
'demo_xml': [],
|
|
'installable': True,
|
|
'active': False,
|
|
}
|