Hi,
Today's date is 26/10/2020 and dateTime1 is 26/10/2020
so when i say if (26/10/2020 > 26/10/2020 2 days) then it should not enter the if statement but it does in my case so how come?
if(DateTimeUtil::getSystemDateTime() > DateTimeUtil::addDays(dateTime1 ,2)
{
info(strFmt("%1",DateTimeUtil::addDays(dateTime1,2)));
info(strFmt("%1",DateTimeUtil::getSystemDateTime()));
}