[13.0][account_asset_management]: add user error when creating asset from bill
This commit is contained in:
parent
77426303c9
commit
0d332ba006
@ -65,6 +65,10 @@ class AccountMove(models.Model):
|
|||||||
for move in self:
|
for move in self:
|
||||||
for aml in move.line_ids.filtered("asset_profile_id"):
|
for aml in move.line_ids.filtered("asset_profile_id"):
|
||||||
depreciation_base = aml.price_subtotal
|
depreciation_base = aml.price_subtotal
|
||||||
|
if not aml.name:
|
||||||
|
raise UserError(
|
||||||
|
_("Asset name must be set in the label of the line.")
|
||||||
|
)
|
||||||
vals = {
|
vals = {
|
||||||
"name": aml.name,
|
"name": aml.name,
|
||||||
"code": move.name,
|
"code": move.name,
|
||||||
|
Loading…
Reference in New Issue
Block a user