Files
contract/contract_variable_quantity/__manifest__.py
Pedro M. Baeza 079d6297de [IMP] contract: remove redundant method
I have detected a method that was created as redundant and with the same
technique used when preparing the line values, so better to have
everything together in the same method instead of having it spread.
2024-01-05 11:07:38 -03:00

25 lines
782 B
Python

# Copyright 2016-2019 Tecnativa - Pedro M. Baeza
# Copyright 2018 Tecnativa - Carlos Dauden
# Copyright 2019 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Variable quantity in contract recurrent invoicing',
'version': '12.0.2.1.2',
'category': 'Contract Management',
'license': 'AGPL-3',
'author': "Tecnativa,"
"Odoo Community Association (OCA)",
'website': 'https://www.tecnativa.com',
'depends': ['contract'],
'data': [
'security/ir.model.access.csv',
'views/abstract_contract_line.xml',
'views/contract_line_formula.xml',
'views/contract_line_views.xml',
'views/contract_template.xml',
'views/contract.xml',
],
'installable': True,
}