mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
* Change the method called in the view * Complete the create_invoice method * Bump version + authoring * Correct bad call of method Small Documentation * Add super call in python test * FIX bad field names causing bad quantities in sale.order.line
24 lines
713 B
Python
24 lines
713 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2017 Pesol (<http://pesol.es>)
|
|
# Copyright 2017 Angel Moya <angel.moya@pesol.es>
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html)
|
|
|
|
|
|
{
|
|
'name': 'Contracts Management - Recurring Sales',
|
|
'version': '10.0.3.0.0',
|
|
'category': 'Contract Management',
|
|
'license': 'AGPL-3',
|
|
'author': "PESOL, "
|
|
"Odoo Community Association (OCA)",
|
|
'website': 'https://github.com/oca/contract',
|
|
'depends': ['contract', 'sale'],
|
|
'data': [
|
|
'views/account_analytic_account_view.xml',
|
|
'views/account_analytic_contract_view.xml',
|
|
'views/sale_view.xml',
|
|
'data/contract_cron.xml',
|
|
],
|
|
'installable': True,
|
|
}
|