Hi,
If I want a salary rule to be applied only in August 1st for example how can I do that?
I was thinking on using a python expression in the conditions such as
if from date_to 08/01/Y to date_to 08/02/Y:
result = True
else:
result = False
obviously this equation is wrong.
Any Idea?