<#-- -------------------------------------------------------------------------------------------- --> <#-- Concat HARDIS WMS timestamp with HARDIS WMS time zone and format this date in ISO UTC format --> <#-- -------------------------------------------------------------------------------------------- --> <#function RfxDateTimetoUTC rfxdatetime offset > <#return ((rfxdatetime + offset)?datetime.iso?iso_utc)> <#function DateTimeUTCtoRfxLocale dateutc locale > <#return dateutc?datetime.iso?iso_nz(locale)> <#-- -------------------------------------------------------------------------------------------- --> <#-- Add second to dateTime ex: AddSecondsToDatetime("2025-11-17T09:15:00Z"?datetime.iso, 61) --> <#-- -------------------------------------------------------------------------------------------- --> <#function AddSecondsToDatetime date seconds> <#assign timeInMilliseconds = (1000 * seconds) > <#assign aDate = date?long + timeInMilliseconds> <#return aDate?number_to_datetime> <#-- -------------------------------------------------------------------------------------------- --> <#-- Duration between two datetimes in second --> <#-- -------------------------------------------------------------------------------------------- --> <#function DurationBetweenTwoDatetimeInSeconds startDate endDate> <#return (endDate?long - startDate?long) / 1000 > <#-- --------------------------------------------------------------------------------------- --> <#-- Split email HARDIS WMS into json array string --> <#-- Example : splitemail "john.doe@hardis-group.com,; name@hardis-group.com" --> <#-- return "["john.doe@hardis-group.com","name@hardis-group.com"]" --> <#-- --------------------------------------------------------------------------------------- --> <#function splitEmailsIntoArray emails > <#local str = "["> <#list emails?split(";|,| |à|/","r")?filter(l -> l != "") as email> <#if email?matches("^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$")> <#if str != "["> <#local str += ","> <#local str += "\""> <#local str += email> <#local str += "\""> <#local str += "]"> <#return (str)>