mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
Big changes to tests (because of the ways stock has changed) and allow activities to be set on RMAs. Other refactors to reduce code duplication between picking and so returns.
28 lines
635 B
Python
28 lines
635 B
Python
# © 2018 Hibou Corp.
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
'name': 'Hibou RMAs',
|
|
'version': '11.0.1.0.0',
|
|
'category': 'Warehouse',
|
|
'author': "Hibou Corp.",
|
|
'license': 'AGPL-3',
|
|
'website': 'https://hibou.io/',
|
|
'depends': [
|
|
'stock',
|
|
'delivery',
|
|
],
|
|
'data': [
|
|
'data/ir_sequence_data.xml',
|
|
'security/ir.model.access.csv',
|
|
'views/rma_views.xml',
|
|
'views/stock_picking_views.xml',
|
|
'wizard/rma_lines_views.xml',
|
|
],
|
|
'demo': [
|
|
'data/rma_demo.xml',
|
|
],
|
|
'installable': True,
|
|
'application': True,
|
|
}
|