Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
39356 Prikazi

I am doing:

line.sale_margin_percent = 100-((line.purchase_price*100)/line.price_unit)

Whe line.price_unit is 0 I get:

ZeroDivisionError: float division by zero

Which is the regular way to avoid that in python/odoo?    

Avatar
Opusti
Best Answer

Hello E.M

This will occur when price_unit is Zero

You can add condition before doing this

if line.price_unit > 0:
     line.sale_margin_percent = 100-((line.purchase_price*100)/line.price_unit)
Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
3
maj 25
3370
0
mar. 15
4892
0
jul. 24
1259
0
avg. 18
7035
2
dec. 16
9665