diff --git a/source/Plugins/AyaNova.Plugin.V8/V8.cs b/source/Plugins/AyaNova.Plugin.V8/V8.cs index adc2976..610335e 100644 --- a/source/Plugins/AyaNova.Plugin.V8/V8.cs +++ b/source/Plugins/AyaNova.Plugin.V8/V8.cs @@ -4432,17 +4432,17 @@ namespace AyaNova.PlugIn.V8 if (util.DateIsPast(c.StopDate)) { //Migrate rule case 3511 - //past followups v8 dueDate set to v7 stopdate + //past followups v8 reviewDate set to v7 start //past followups assumed completed and set v8 completedate to v7 stopdate - d.dueDate = sStopDate; + d.reviewDate = sStartDate; d.completedDate = sStopDate; } else { //Migrate rule case 3511 //Future followups assumed incomplete set completedDate null - //due date is v7 stop date - d.dueDate = sStopDate; + //reviewDate date is v7 start date + d.reviewDate = sStartDate; } //completed is deprecated in v8 so to preserve that info tag the completed ones only