when 1st time the data is created, in the chatter section it is showing
Mitchell Admin- 2 hours ago
asset.asset_category created
Instead of " asset.asset_category created", I want to show "Asset Category: Name"
asset_category model is:-
classAssetCategory(models.Model):
""" This class used for the Asset Category data model. """
_name = 'asset.asset_category'
_description = 'asset.asset_category'
_inherit = ['portal.mixin', 'mail.thread', 'mail.activity.mixin']
description = fields.Text(string="Description", track_visibility='onchange')
name = fields.Char(string="Name", required=True, track_visibility='onchange')
.test..