9 lines
489 B
Java
9 lines
489 B
Java
<#-- --------------------------------------------------------------------------------------- -->
|
|
<#-- Concat reflex timestamp with reflex time zone and format this date in ISO UTC format -->
|
|
<#-- --------------------------------------------------------------------------------------- -->
|
|
<#function RfxDateTimetoUTC rfxdatetime offset >
|
|
<#assign datetimeUTC = JsonUtil.createUTCDateTime(rfxdatetime,time_zone_rfx , "yyyy-MM-dd'T'HH:mm:ss") />
|
|
<#return (datetimeUTC)>
|
|
</#function>
|
|
|
|
|