redmine-plugin-recurring-tasks
redmine-plugin-recurring-tasks copied to clipboard
'Predict' recurrences on calendar
Not sure how recurring task plugin really works.
I'm Able to add recurrence to issues but that is not showing in calender.
I'm on bitnami windows stack and was able to successfully install the 1.3.0 version except configuration part which says setting up Cronjob. I'm not sure how to set it up in bitnami stack on windows. Kindly advise how to configure on bitnami windows environment..

And thanks a lot for this plugin.
Await your reply, Kamal
After hitting and trying now I'm able to run a command which creates due recurring tasks.. Thanks
C:\BitNami\redmine-2.5.1-0\apps\redmine\htdocs>bundle exec rake redmine:recur_ta sks RAILS_ENV=production Checking for Redmine recurring tasks. Recurring 5: Test_recur (04/02/2014), created 6: Test_recur (04/09/2014) Recurring 2: TDS Return of MCFL (04/07/2014), created 7: TDS Return of MCFL (05/ 07/2014)
Predicting recurrences could be implemented as a per-task setting for items that recur on a fixed schedule and are cloned (not re-opened) where it will create recurrences in advance. So if a task recurs weekly, there would have a setting that says how many weeks in the future to open tasks. This will allow future work to be reflected on the calendar and elsewhere.
"if a task recurs weekly, there would have a setting that says how many weeks in the future to open tasks" Is this feature available in the current version? Please let me know, I really want this feature badly to capture the team's availability 2-3 weeks in advance.
If this is not available, can I modify some setting or code to blanket change how many days ahead the tasks will be opened for all recurring tasks?
@ssandeep Right now the task opens as soon as the previous one has closed, or on a fixed schedule.
Recurrences are added in the recur_issue_if_needed! method in the RecurringTask model if you want to play around with it there. Specifically deciding whether to add a recurrent issue is in the need_to_recur? method; one option would be that you can add a setting for the number of days in advance to open an issue on a fixed schedule.
https://github.com/nutso/redmine-plugin-recurring-tasks/blob/c87684c87be478c301b0831b1e5669cbc2a73d04/app/models/recurring_task.rb#L218