mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
[FIX] - as date_start is required, constraints on it become useless [FIX] - for finished contract _get_lines_to_invoice should return False [FIX] - default value for active field in contract line [FIX] - fix flake8 [IMP] - check invoice line vals before assignment [FIX] - Fix unit tests. [FIX] - do not copy last_date_invoiced on plan_successor [FIX] - renew only recurring_invoices contract [FIX] - filter by termination_notice for contract line to renew [IMP] - Improve inprogress search filter [IMP] - Link invoice line to contract lines [IMP] - Add index on contract line [IMP] - Add is_suspended flag and _search_state [IMP] - Add is_suspended flag to stop contract line [MV] - move onchange method to contract_product module [IMP] - Replace is_suspended flag by manual_renew_needed Add a computed field for the first date of the termination notice period Adapt state compute and search method [IMP] - Improve unit tests
41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
# Copyright 2004-2010 OpenERP SA
|
|
# Copyright 2014-2018 Tecnativa - Pedro M. Baeza
|
|
# Copyright 2015 Domatix
|
|
# Copyright 2016-2018 Tecnativa - Carlos Dauden
|
|
# Copyright 2017 Tecnativa - Vicent Cubells
|
|
# Copyright 2016-2017 LasLabs Inc.
|
|
# Copyright 2018 ACSONE SA/NV
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
'name': 'Recurring - Contracts Management',
|
|
'version': '12.0.2.0.1',
|
|
'category': 'Contract Management',
|
|
'license': 'AGPL-3',
|
|
'author': "OpenERP SA, "
|
|
"Tecnativa, "
|
|
"LasLabs, "
|
|
"ACSONE SA/NV, "
|
|
"Odoo Community Association (OCA)",
|
|
'website': 'https://github.com/oca/contract',
|
|
'depends': ['base', 'account', 'analytic'],
|
|
"external_dependencies": {"python": ["dateutil"]},
|
|
'data': [
|
|
'wizards/contract_line_wizard.xml',
|
|
'security/ir.model.access.csv',
|
|
'security/contract_security.xml',
|
|
'report/report_contract.xml',
|
|
'report/contract_views.xml',
|
|
'data/contract_cron.xml',
|
|
'data/contract_renew_cron.xml',
|
|
'data/mail_template.xml',
|
|
'views/abstract_contract_line.xml',
|
|
'views/contract.xml',
|
|
'views/contract_template_line.xml',
|
|
'views/contract_template.xml',
|
|
'views/contract_line.xml',
|
|
'views/res_partner_view.xml',
|
|
],
|
|
'installable': True,
|
|
}
|