Hi
I have a form that contain two fields( Casier And Rayon ) i wante to translate this code bellow in odoo framework 10 in every new record created:
rayon = ""
case = ""
inc = 0
for i in range(1,10):
if i == 9:
inc += 1
i = 1
rayon = "R" + str(inc)
case = "C" + str(i)
Thanks,