Files
stock-rma/rma_account/__openerp__.py
lreficent e2b2e0a622 [9.0][IMP] rma_account:
* remove unneded copy attributes.
* simplify action_view methods.
* fix wrong naming.
* fix misplaced views.
* fix wrong count and view actions for rma.orders in invoices.
* fix error when installing the module.
* remove unneded data update when preparing rma lines from invoice lines.
* minor extra fixes.
2023-02-22 11:16:02 +01:00

26 lines
761 B
Python

# -*- coding: utf-8 -*-
# © 2017 Eficent Business and IT Consulting Services S.L.
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html)
{
'name': 'RMA Account',
'version': '9.0.1.0.0',
'license': 'LGPL-3',
'category': 'RMA',
'summary': 'Integrates RMA with Invoice Processing',
'author': "Eficent",
'website': 'http://www.github.com/OCA/rma',
'depends': ['account', 'rma'],
'demo': ['demo/rma_operation.xml'],
'data': [
'views/rma_order_view.xml',
'views/rma_operation_view.xml',
'views/rma_order_line_view.xml',
'views/invoice_view.xml',
'wizards/rma_add_invoice.xml',
'wizards/rma_refund.xml',
],
'installable': True,
'auto_install': True,
}