class Model(models.TransientModel):
_name = "add.month"
exp_month = fields.Integer(string='Expiry Months Valid')
current_date = fields.Datetime(string='Current Date')
added_date = fields.Datetime(string='End of Life Date')
When i enter the no. of months in the exp_month field, it should add in the added_date.
I can't find it.