diff --git a/account_asset_management/models/account_move.py b/account_asset_management/models/account_move.py index 009c3fd0d..f8739087f 100644 --- a/account_asset_management/models/account_move.py +++ b/account_asset_management/models/account_move.py @@ -74,6 +74,10 @@ class AccountMove(models.Model): for move in self: for aml in move.line_ids.filtered("asset_profile_id"): depreciation_base = aml.debit or -aml.credit + if not aml.name: + raise UserError( + _("Asset name must be set in the label of the line.") + ) vals = { "name": aml.name, "code": move.name,