Question
Updating datetime field type with velocity script
I am looking to pull a datetime field type, {paymentStartDateTime_c}, add one year to the value and display the result.
I also need the value displayed to adjust based on the leads time zone, {timeZone_c}.
Here is the code I am using:

This is the output for a lead located in US/Central time:
$z.add(1, 1) $z.add(10,2) $date.format('medium',$z)
Suggestions?
Thank you!