Import csv with scripted field

Itamar Ben Sinai January 10, 2016

I need to make calculation based on existing dates from cf , compare with the dates from the csv imported dates and insert a busy/available text on the scripted field

Howccancthat be achieved? 

1 answer

0 votes
Vasiliy Zverev
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.
January 11, 2016

Lets specify a trouble at first.

  1. You have some dates into custom field. 
  2. You also have other dates form csv. Are these dates already imported into JIRA into sertain customfield or these dates are stored into csv.
  3. If you need to compare two dates into different customfileds try adapt folloeing script

    long DateDiff = 0;
    if( (getCustomFieldValue(10105) != null) & (getCustomFieldValue(12700) != null))   
    	DateDiff = (getCustomFieldValue(10105).getTime() -  getCustomFieldValue(12700).getTime())/(24*60*60*1000);
    return (String) DateDiff

Suggest an answer

Log in or Sign up to answer