vcomply-workflow-engine 2.6.182 → 2.6.184

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12428,13 +12428,13 @@
12428
12428
  var index1 = firstHalfMonth.indexOf((date_value.getMonth() + 1).toString());
12429
12429
  var index2 = secondHalfMonth.indexOf((date_value.getMonth() + 1).toString());
12430
12430
  var pattern = index1 > -1 ? '~' + firstHalfMonth[index1] + ',' + secondHalfMonth[index1] + '~0' : '~' + firstHalfMonth[index2] + ',' + secondHalfMonth[index2] + '~0';
12431
- frequency_details = '3~' + date_value.getDate() + pattern;
12431
+ frequency_details = '9~' + date_value.getDate() + pattern;
12432
12432
  break;
12433
12433
  case 'biannual':
12434
12434
  var biannualIndex = firstHalfMonth.indexOf((date_value.getMonth() + 1).toString());
12435
12435
  var biannualIndex1 = secondHalfMonth.indexOf((date_value.getMonth() + 1).toString());
12436
12436
  var biannualPattern = biannualIndex > -1 ? '~' + firstHalfMonth[biannualIndex] + ',' + secondHalfMonth[biannualIndex] + '~0' : '~' + firstHalfMonth[biannualIndex1] + ',' + secondHalfMonth[biannualIndex1] + '~0';
12437
- frequency_details = '3~' + date_value.getDate() + biannualPattern;
12437
+ frequency_details = '9~' + date_value.getDate() + biannualPattern;
12438
12438
  break;
12439
12439
  case 'annual':
12440
12440
  case 'yearly':