Need to update a date field with tomorrows date.

Anoop Wilson July 1, 2012

We have one date field and after certain transition I want to set the date to tomorrows date for the date field using java script.

We are using jira 5.0.6

4 answers

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 1, 2012

Just to be clear on your requirement

Reading your question implies the process should be:

  1. User clicks on transition
  2. User fills in data on screen
  3. User clicks "go"
  4. Date field X is set to "tomorrow" (along with all the other changes)

That's all fine up until the point at which you say "using javascript", because javascript runs on the client's browser. The transition happens on the server and you can't run javascript there. This is why you'd need a "post function" to do the work

However, I suspect that's not what you meant, and what you actually want is:

  1. User clicks on transition
  2. User gets a screen with the date pre-set to tomorrow
  3. User clicks "go"
  4. Date field X is set to whatever they entered or accepted

That is indeed a javascript trick

0 votes
Mizan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 1, 2012

I dont know whether this is possible using javascript but a better approach is to create a post function which will set the value of the date customfield to tomorrows date.

Post function can be a plugin or a groovy script (using script runner plugin) .

A similar groovy script example is here

0 votes
Mizan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 1, 2012

This is a task of a post function , how will you identify that a certain transition has taken place using javascript ?

A reference to set the date is here

0 votes
Anoop Wilson July 1, 2012

Mizan,

we need to do this in a transition called "approve" ..while doing an "approve"...the date field value should be automatically set to tomorrows date.

Suggest an answer

Log in or Sign up to answer