When I go here admin/support/plan_report and I click on generate report I get the following error message and no report generated.
Notice: Undefined index: client_actual in support_pm_admin_reports() (line 205 of /home/plstest/public_html/sites/all/modules/support/support_pm/support_pm.admin.inc).
Notice: Undefined index: user_actual in support_pm_admin_reports() (line 216 of /home/plstest/public_html/sites/all/modules/support/support_pm/support_pm.admin.inc).
Comments
Comment #1
BartGysens commentedSame issue here, any responses yet?
Comment #2
jeremy commentedRaising priority; it's very broken atm. Patches welcome.
Comment #3
bazzly commentedIf its the same thing I think it is..
https://www.drupal.org/node/1945242
If you have access to the Administer Plan overview, or something like that... Click on your profile name and you should see an option where it says support plan.If you click it, you should be able to create a support plan "Edit plan". Once you have a plan in place that page should work.
Comment #4
skari commentedThe problem is that the keys 'client_actual' and 'user_actual' are not defined unless the support_timer module is downloaded and enabled. So, the simple fix is to check if these keys are defined, as in the following patch:
Then as bazzly points out (in #3) users need to edit their plan (i.e. register their time spent doing ticket work) in order for the report to show anything (unless, of course, the support_timer module is being used)
Comment #5
purencool commented