Commit 610fb0d43bcbd5e9d2ec147a9145e97bfa68e87d
1 parent
0db9d39b
Exists in
master
and in
2 other branches
data e hora
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
Controller/PrinterController.php
... | ... | @@ -132,6 +132,7 @@ class PrinterController extends Controller |
132 | 132 | $tmpfile = tempnam(sys_get_temp_dir(), 'impressoras'); |
133 | 133 | $file = new \SplFileObject($tmpfile, 'w'); |
134 | 134 | $writer = new CsvWriter($file); |
135 | + $writer->writeItem(array('Id', 'Nome','Host','Serie','Local','Impressões')); | |
135 | 136 | $workflow->addWriter($writer); |
136 | 137 | |
137 | 138 | // Process the workflow | ... | ... |