# Copyright 2012-2021 Akretion France (http://www.akretion.com/) # @author: BenoƮt GUILLOT # @author: Chafique DELLI # @author: Alexis de Lattre # @author: Mourad EL HADJ MIMOUNE # Copyright 2018-2021 Tecnativa - Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from odoo import fields, models class AccountMoveLine(models.Model): _inherit = "account.move.line" check_deposit_id = fields.Many2one( comodel_name="account.check.deposit", string="Check Deposit", copy=False, check_company=True, )