We want to populate a Date and Time picker custom field while using the JWT post function "Create issues and subtasks" with the following logic:
If System Time <16:30:00, then Date part of the field - same as system date and Time part of the field - System Time+ 30 Minutes.
If System Time >16:30:00, then Date part of the field - next working day and Time part of the field = 10:00.
Could you please help us with the math/time expression for above logic, so that we can use the same while creating issues.
Any help would be appreciated.
Hi @SWAPNIL SRIVASTAV ,
what you're trying to implement should be absolutely possible.
Could you please further elaborate the schedule you're thinking of, e.g. specifiy your 'working days' (MO - FR?) as well as the starting time for each day?
I got you covered regarding the following examples:
I'm curious about the exact limits starting from 00:00 (assumptions following):
Cheers
Thorsten
Hi @Thorsten Letschert _Decadis AG_ ,
We have come up with it :
and it is working fine. Any improvements are welcome.
Thanks,
Swapnil Srivastav
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @SWAPNIL SRIVASTAV ,
first of all congrats to coming up with a valid solution yourself.
With regard to future maintainability, personally I'd prefer a more generic approach using schedules (see the documentation).
First, create a schedule, e.g. called Business Hours using the expression
MON-FRI{10:00-16:30;}
Afterwards, use this schedule within your expression, that's then is as short as (00057 is the field code for Current date and time):
inSchedule({00057}, "Business Hours", LOCAL) ? {00057} + 30 * {MINUTE} : nextTime({00057}, "Business Hours", LOCAL)
Update: just saw that you were skipping weekends when adding those 30 minutes. To do so, the correct expression would be:
inSchedule({00057}, "Business Hours", LOCAL) ? addTime({00057}, 30 * {MINUTE}, "Business Hours", LOCAL) : nextTime({00057}, "Business Hours", LOCAL)
Short explanation of the expression above:
The advantages, apart from a shorter expression, lie primarily in the future maintainability and flexibility in editing the business hours (e.g. taking holidays into account, using different hours per weekday, etc.).
Cheers
Thorsten
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.