Files
odoo-usability/mrp_export_field_profile/__openerp__.py
2015-05-24 18:43:47 +02:00

53 lines
1.6 KiB
Python

# coding: utf-8
##############################################################################
#
# Copyright 2015 Akretion
#
# 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 Export Field Profile',
'version': '1.0',
'author': 'Akretion',
'summarize': 'Add predefined list for export',
'maintainer': 'Akretion',
'description': """
MRP Export Field Profile
========================
Add export list (native export screen) to:
* mrp
Note to mainteners
------------------
You can maintain csv data file and convert in xml
with https://github.com/akretion/csv2xml4odoo
""",
'category': 'manufacturing',
'depends': [
'mrp',
'product_export_field_profile',
],
'website': 'http://www.akretion.com/',
'data': [
'misc_data.xml',
'ir_exports_line_data.xml',
],
'installable': True,
'license': 'AGPL-3',
}