closingTime

PHOTO EMBED

Tue Oct 26 2021 13:41:35 GMT+0000 (Coordinated Universal Time)

Saved by @Amoro

/*
// returns crmUpdate field in Zulu time zone
if(doc['crmUpdate'].size() > 0) {
    doc['crmUpdate'].value.withZoneSameInstant(ZoneId.of('Z'))
} 
// returns created field in Zulu time zone
else if (doc['created'].size() > 0) {
    return doc['created'].value.withZoneSameInstant(ZoneId.of('Z'))
}
*/


if(doc['crmUpdate'].size() > 0) {
    long closingTime = ChronoUnit.DAYS.between(doc['created'].value.withZoneSameInstant(ZoneId.of('Z')), doc['crmUpdate'].value.withZoneSameInstant(ZoneId.of('Z')));
    closingTime
}
content_copyCOPY