Files
pms/account_asset_pms/models/account_asset_line.py
2022-12-20 19:46:29 +01:00

15 lines
439 B
Python

# Copyright 2022 Comunitea Servicios Tecnológicos S.L. (https://comunitea.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from odoo import models
class AccountAssetLine(models.Model):
_inherit = "account.asset.line"
def create_move(self):
return super(
AccountAssetLine,
self.with_context(force_pms_property=self.asset_id.pms_property_id.id),
).create_move()