Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 1608 → Rev 1609

/trunk/jrest/services/InventoryImageExport.php
331,9 → 331,11
// Creating a workbook
$this->chemin_export_liste = $this->renvoyerCheminExport(false).'/liste'.$index.'.xls';
$this->workbook = new Spreadsheet_Excel_Writer($this->chemin_export_liste);
$workbook->setVersion(8);
 
// Creating a worksheet
$this->worksheet = $this->workbook->addWorksheet('Liste');
$worksheet->setInputEncoding('utf-8');
 
$this->worksheet->write(0,0,'url de l\'image');
$this->worksheet->write(0,1,'Nom original de l\'image');
/trunk/jrest/services/InventoryByDept.php
47,8 → 47,10
// Creating a workbook
$workbook = new Spreadsheet_Excel_Writer();
$workbook->setVersion(8);
// Creating a worksheet
$worksheet = $workbook->addWorksheet('Liste');
$worksheet->setInputEncoding('utf-8');
 
$worksheet->write(0,0,'Departement');
$worksheet->write(0,1,'Nom saisi');
/trunk/jrest/services/InventoryExport.php
50,11 → 50,13
 
// Creating a workbook
$workbook = new Spreadsheet_Excel_Writer();
$workbook->setVersion(8);
 
$workbook->send('liste.xls');
 
// Creating a worksheet
$worksheet = $workbook->addWorksheet('Liste');
$worksheet->setInputEncoding('utf-8');
$worksheet->write(0,0,'Espece');
$worksheet->write(0,1,'Numero nomenclatural');