bug-in-export-function
When I export the reservations using Reports->export button, the resulting csv shows workers in the service column. (The actual worker column is correct).
5 Answers
Hi thanks for reporting, I will have to check that locally.
Best regards,
Nikola
In ajax.php line 846-848 removing \'= $response\' solves the problem. I don\'t know if that causes problems elsewhere, but $reponse is not used anywhere else in the function \'ajax_export()\' as far as I can see.
The right solution is in ajax.php line 921:
it curently reads:'$app[] = $workers[$arr['service']];'
Should be:'$app[] = $services[$arr['service']];'
Should be:'$app[] = $services[$arr['service']];'
Hi Rob, thanks for that. It’s a bug and it will be fixed in next version. It should be released during this week.
Best regards,
Nikola
Please login or Register to submit your answer