mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
Adapting source contract module, we don't need to rely on account_invoice_merge functionality for having all the invoices merged.
25 lines
760 B
Python
25 lines
760 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2016 Carlos Dauden <carlos.dauden@tecnativa.com>
|
|
# Copyright 2017 Vicent Cubells <vicent.cubells@tecnativa.com>
|
|
# Copyright 2016-2017 Pedro M. Baeza <pedro.baeza@tecnativa.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
'name': 'Contract Invoice Merge By Partner',
|
|
'summary': 'This module merges same partner invoices generated by '
|
|
'contracts',
|
|
'version': '9.0.2.0.0',
|
|
'category': 'Account',
|
|
'license': 'AGPL-3',
|
|
'author': "Tecnativa, "
|
|
"Odoo Community Association (OCA)",
|
|
'website': 'http://www.tecnativa.com',
|
|
'depends': [
|
|
'contract',
|
|
],
|
|
'data': [
|
|
'views/res_partner_view.xml',
|
|
],
|
|
'installable': True,
|
|
}
|