Files
contract/contract_sale_generation/models/abstract_contract.py
Denis Roussel ae3aaa8f13 [14.0][IMP] contract_sale_generation
Use the generation_type field defined now in contract base module.

Improve tests
2022-06-22 11:38:43 +02:00

18 lines
534 B
Python

# Copyright 2017 Pesol (<http://pesol.es>)
# Copyright 2017 Angel Moya <angel.moya@pesol.es>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import api, fields, models
class ContractAbstractContract(models.AbstractModel):
_inherit = "contract.abstract.contract"
sale_autoconfirm = fields.Boolean(string="Sale Autoconfirm")
@api.model
def _get_generation_type_selection(self):
res = super()._get_generation_type_selection()
res.append(("sale", "Sale"))
return res