mirror of
https://github.com/OCA/intrastat-extrastat.git
synced 2025-02-16 17:13:41 +02:00
* Backport from 10.0 to 9.0: import odoo to import openerp, <odoo> to <openerp>, bring back <data> if noupdate=1, rename __manifest__.py to __openerp__.py, downgrade version number to 9.0.1.0.0, and make module installable. * Re-add H.S.codes menu item under Sales-Product-Configuration. (it had been removed to remove the reference to product module, but I don't understand that decision since this module by nature depends on product module anyway) * Added module tests. * flake8 * Encoding lines at the beginning of python files
29 lines
905 B
Python
29 lines
905 B
Python
# -*- coding: utf-8 -*-
|
|
# © 2011-2016 Akretion (http://www.akretion.com)
|
|
# © 2009-2016 Noviat (http://www.noviat.com)
|
|
# @author Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# @author Luc de Meyer <info@noviat.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
'name': 'Product Harmonized System Codes',
|
|
'version': '9.0.1.0.0',
|
|
'category': 'Reporting',
|
|
'license': 'AGPL-3',
|
|
'summary': 'Base module for Product Import/Export reports',
|
|
'author': 'Akretion, Noviat, Odoo Community Association (OCA)',
|
|
'depends': ['product'],
|
|
'conflicts': ['report_intrastat'],
|
|
'data': [
|
|
'security/product_hs_security.xml',
|
|
'security/ir.model.access.csv',
|
|
'views/hs_code.xml',
|
|
'views/product_category.xml',
|
|
'views/product_template.xml',
|
|
],
|
|
'demo': [
|
|
'demo/product_demo.xml',
|
|
],
|
|
'installable': True,
|
|
}
|