vcomply-workflow-engine 2.6.185 → 2.6.186

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.
@@ -12524,13 +12524,13 @@
12524
12524
  var index1 = firstHalfMonth.indexOf((date_value.getMonth() + 1).toString());
12525
12525
  var index2 = secondHalfMonth.indexOf((date_value.getMonth() + 1).toString());
12526
12526
  var pattern = index1 > -1 ? '~' + firstHalfMonth[index1] + ',' + secondHalfMonth[index1] + '~0' : '~' + firstHalfMonth[index2] + ',' + secondHalfMonth[index2] + '~0';
12527
- frequency_details = '9~' + date_value.getDate() + pattern;
12527
+ frequency_details = '3~' + date_value.getDate() + pattern;
12528
12528
  break;
12529
12529
  case 'biannual':
12530
12530
  var biannualIndex = firstHalfMonth.indexOf((date_value.getMonth() + 1).toString());
12531
12531
  var biannualIndex1 = secondHalfMonth.indexOf((date_value.getMonth() + 1).toString());
12532
12532
  var biannualPattern = biannualIndex > -1 ? '~' + firstHalfMonth[biannualIndex] + ',' + secondHalfMonth[biannualIndex] + '~0' : '~' + firstHalfMonth[biannualIndex1] + ',' + secondHalfMonth[biannualIndex1] + '~0';
12533
- frequency_details = '9~' + date_value.getDate() + biannualPattern;
12533
+ frequency_details = '3~' + date_value.getDate() + biannualPattern;
12534
12534
  break;
12535
12535
  case 'annual':
12536
12536
  case 'yearly':