Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
4437 มุมมอง

Hello,
Any idea how to round the sum of the two conditions below? I'm not sure how to write the code to achieve this. Thank you!

This is our code in the salary rule:


if worked_days.WORK100:
     result = worked_days.WORK100.number_of_days
if worked_days.WORK110:
    result += worked_days.WORK110.number_of_days


basically we want to get the sum first before rounding the value so adding just round() after the = sign wont do.



อวตาร
ละทิ้ง

Hello,

Could you just round before assignment? I assume after this statement you assign the variable result to a value on worked_days.

if worked_days.WORK100:

result = worked_days.WORK100.number_of_days

if worked_days.WORK110:

result += worked_days.WORK110.number_of_days

# variable assignment

worked_days.sum = round(result)

Does this work?

ผู้เขียน

Hi Jack,

i am getting this error "Wrong python code defined for salary rule"

คำตอบที่ดีที่สุด

I believe you can use the function round().

example :

if worked_days.WORK100.number_of_days outputs a value of 6.4323157

you can user round(worked_days.WORK100.number_of_days, 2) to output the value 6.43
The second argument of the round function specifies the number of decimals to round to.

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
0
พ.ย. 21
21
0
พ.ย. 21
3569
1
ม.ค. 23
2668
1
ส.ค. 22
2227
Odoo studio ! python ? แก้ไขแล้ว
2
ม.ค. 22
5060