Velocity Scripting an equation with dates | Community
Skip to main content
May 22, 2018
Question

Velocity Scripting an equation with dates

  • May 22, 2018
  • 1 reply
  • 2347 views

Here is what I'm trying to do:

Find the difference between todays date, and the lease creation date.

Subtract the difference from 89 days.

Display that number.

Here is what I have so far:

I just can't get the "minus 89 days" to work.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

SanfordWhiteman
Level 10
May 23, 2018

You should read this seminal post​ on days and times in Velocity, where I explain that you must always include a timezone when parsing dates.

In particular, this section explains how to use $date.difference without surprising shifts of one day in either direction.

Once you set the tz (by including the boilerplate code at the top of the post), you simply call $math.sub:

#set( $DAYS_OFFSET_BASE = 89 )

#set( $ret = $calNow.set(

   $calNow.get($calConst.YEAR),

   $calNow.get($calConst.MONTH),

   $calNow.get($calConst.DAY_OF_MONTH),

   0,

   0,

   0

) )

#set( $ret = $calNow.set($calConst.MILLISECOND,0) )

#set( $calLeaseCreateDate = $convert.toCalendar(

  $convert.parseDate(

    $lead.prog_leasecreatedate,

    $ISO8601DateOnly,

    $defaultLocale,

    $defaultTimeZone

  )

) )

#set( $daysUntilLeaseCreate = $date.difference($calNow,$calLeaseCreateDate).getDays() )

#if(  $daysUntilLeaseCreate > 0 )

#set( $daysOffsetFromBase = $math.sub($DAYS_OFFSET_BASE, $daysUntilLeaseCreate) )

prog_leasecreatedate offset is $daysOffsetFromBase.

#else

prog_leasecreatedate is not in the future.

#end

Finally, when posting code, please use the syntax highlighter in Advanced Editor, not a screenshot:

Level 9
July 27, 2018

Thanks again Sanford, that blog post of yours is extremely useful.