When I try to create a ticket or a timetracking I can choose the organisation and then the project, but after that the "tasks" do not show up.
In Timetracking the tickets do show up. This happens on my installed version and your cvs demo version.

Comments

jivmuk’s picture

I too experience the same thing. Actually I was about to post it...

catorghans’s picture

I found out why the bug happens:

javascript variable: project_tasks_url is initialized twice:

in "stormtask_init" in stormtask.module
and in
"storminvoiceitem_init" in storminvoiceitem.module

I think the second one is not needed (or might be changed in name), but cannot oversee the consequences.

Roberto Gerola’s picture

Status: Active » Fixed

Thanks.

The settings in invoiceitem can be removed.

The function should look so indeed :

function storminvoiceitem_init() {
  drupal_add_js(drupal_get_path('module', 'storminvoiceitem') .'/storminvoiceitem.js', 'module', 'header', FALSE);
}

Committed to cvs.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.