@api.onchange('length','width')
def _compute_size_id(self):
for s in self:
if (s.length and s.width):
s.size_wise = s.length * s.width
You should cast your variable to type int :
@api.onchange('length','width')
def _compute_size_id(self):
for s in self:
if (s.length and s.width):
s.size_wise = int(s.length )* int(s.width)