Hello Community,
I want to generate a sequence in my sequence_field as per the selection of my country.
Example:
Class TempTemp(models.Model)
_name = 'temp.temp'
country_id = fields.Many2one('res.country','Country')
sequence_field = fields.Char()
Any idea how to do this?
Thanks.