X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=tofile.php;h=07bbc11a67f1235804f958b5d3956bd33f1e9272;hb=15ae2165165da813912300d223c50b74f44cc1e0;hp=5a190f4bb595e6505706283b8d8ca094db5a9197;hpb=187a16b0ffee5ae6af51b010ff90a194048d3457;p=timetracker.git diff --git a/tofile.php b/tofile.php index 5a190f4b..07bbc11a 100644 --- a/tofile.php +++ b/tofile.php @@ -60,9 +60,9 @@ $totals_only = $bean->getAttribute('chtotalsonly'); // Obtain items. $options = ttReportHelper::getReportOptions($bean); if ($totals_only) - $subtotals = ttReportHelper::getSubtotals($bean, $options); + $subtotals = ttReportHelper::getSubtotals($options); else - $items = ttReportHelper::getItems($bean, $options); + $items = ttReportHelper::getItems($options); // Build a string to use as filename for the files being downloaded. $filename = strtolower($i18n->get('title.report')).'_'.$bean->mValues['start_date'].'_'.$bean->mValues['end_date']; @@ -84,12 +84,14 @@ if ('xml' == $type) { print "\n"; print "\n"; - $group_by = $bean->getAttribute('group_by'); if ($totals_only) { - // Totals only report. Print subtotals. + // Totals only report. + $group_by_tag = ttReportHelper::makeGroupByXmlTag($options); + + // Print subtotals. foreach ($subtotals as $subtotal) { print "\n"; - print "\t<".$group_by.">\n"; + print "\t<".$group_by_tag.">\n"; if ($bean->getAttribute('chduration')) { $val = $subtotal['time']; if($val && defined('EXPORT_DECIMAL_DURATION') && isTrue(EXPORT_DECIMAL_DURATION)) @@ -161,17 +163,9 @@ if ('csv' == $type) { $bom = chr(239).chr(187).chr(191); // 0xEF 0xBB 0xBF in the beginning of the file is UTF8 BOM. print $bom; // Without this Excel does not display UTF8 characters properly. - $group_by = $bean->getAttribute('group_by'); if ($totals_only) { // Totals only report. - - // Determine group_by header. - if ('cf_1' == $group_by) - $group_by_header = $custom_fields->fields[0]['label']; - else { - $key = 'label.'.$group_by; - $group_by_header = $i18n->get($key); - } + $group_by_header = ttReportHelper::makeGroupByHeader($options); // Print headers. print '"'.$group_by_header.'"';