Im trying to divide a value of my Integer field by a static value which is an int, of course this wont work, what is the solution to this ?
@api.one
def _compute_uren(self):
treatment_duur = fields.Integer(related='treatment_id.duur')
self.uren = treatment_duur // 60
uren = fields.Integer(compute='_compute_uren')