Skip to Content
मेन्यू
This question has been flagged
1 Reply
4288 Views

Hi,

I have been searching everywhere for this answer, but with no luck.

I want to use payslip.date_to.days to get the INT value from the date, to use in a condition for a rule.

I can do it like this:

date_to = str(payslip.date_to)[8:10]

if int(date_to) > 15:

    result = True


And it works! But I was told that is not the correct way to do it "pythonically".

Best way would be simply:

if payslip.date_to.days > 15:
    result = True

But all I get is Wrong python code defined for salary rule.

Avatar
Discard
Best Answer

Hi Denisse,
only remove the "s" from day:


if payslip.date_to.day > 15:
    result = True


and it will work fine :)

Avatar
Discard
Related Posts Replies Views Activity
1
जन॰ 19
4670
4
सित॰ 25
6342
0
मार्च 23
2452
0
जुल॰ 19
4656
0
दिस॰ 18
3125