mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-07-20 14:38:04 +00:00
Fixed export to Excel feature, it works now
This commit is contained in:
@ -1,12 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">
|
||||
<Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml"/>
|
||||
<Types
|
||||
xmlns="http://schemas.openxmlformats.org/package/2006/content-types"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
>
|
||||
<Default Extension="xml" ContentType="application/xml"/>
|
||||
<Default Extension="bin" ContentType="application/vnd.ms-excel.sheet.binary.macroEnabled.main"/>
|
||||
<Default Extension="vml" ContentType="application/vnd.openxmlformats-officedocument.vmlDrawing"/>
|
||||
<Default Extension="data" ContentType="application/vnd.openxmlformats-officedocument.model+data"/>
|
||||
<Default Extension="bmp" ContentType="image/bmp"/>
|
||||
<Default Extension="png" ContentType="image/png"/>
|
||||
<Default Extension="gif" ContentType="image/gif"/>
|
||||
<Default Extension="emf" ContentType="image/x-emf"/>
|
||||
<Default Extension="wmf" ContentType="image/x-wmf"/>
|
||||
<Default Extension="jpg" ContentType="image/jpeg"/>
|
||||
<Default Extension="jpeg" ContentType="image/jpeg"/>
|
||||
<Default Extension="tif" ContentType="image/tiff"/>
|
||||
<Default Extension="tiff" ContentType="image/tiff"/>
|
||||
<Default Extension="pdf" ContentType="application/pdf"/>
|
||||
<Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml"/>
|
||||
<Override PartName="/xl/workbook.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml"/>
|
||||
<Override PartName="/xl/worksheets/sheet1.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"/>
|
||||
<Override PartName="/xl/theme/theme1.xml" ContentType="application/vnd.openxmlformats-officedocument.theme+xml"/>
|
||||
<Override PartName="/xl/styles.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml"/>
|
||||
<Override PartName="/xl/sharedStrings.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml"/>
|
||||
<Override PartName="/docProps/core.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml"/>
|
||||
<Override PartName="/docProps/app.xml" ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml"/>
|
||||
<Override PartName="/xl/metadata.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml"/>
|
||||
</Types>
|
||||
|
6
internal/app/collection_find_export_excel/dotrels.xml
Normal file
6
internal/app/collection_find_export_excel/dotrels.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
|
||||
<Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/>
|
||||
<Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/>
|
||||
<Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="xl/workbook.xml"/>
|
||||
</Relationships>
|
20
internal/app/collection_find_export_excel/metadata.xml
Normal file
20
internal/app/collection_find_export_excel/metadata.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<metadata xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:xlrd="http://schemas.microsoft.com/office/spreadsheetml/2017/richdata" xmlns:xda="http://schemas.microsoft.com/office/spreadsheetml/2017/dynamicarray">
|
||||
<metadataTypes count="1">
|
||||
<metadataType name="XLDAPR" minSupportedVersion="120000" copy="1" pasteAll="1" pasteValues="1" merge="1" splitFirst="1" rowColShift="1" clearFormats="1" clearComments="1" assign="1" coerce="1" cellMeta="1"/>
|
||||
</metadataTypes>
|
||||
<futureMetadata name="XLDAPR" count="1">
|
||||
<bk>
|
||||
<extLst>
|
||||
<ext uri="{bdbb8cdc-fa1e-496e-a857-3c3f30c029c3}">
|
||||
<xda:dynamicArrayProperties fDynamic="1" fCollapsed="0"/>
|
||||
</ext>
|
||||
</extLst>
|
||||
</bk>
|
||||
</futureMetadata>
|
||||
<cellMetadata count="1">
|
||||
<bk>
|
||||
<rc t="1" v="0"/>
|
||||
</bk>
|
||||
</cellMetadata>
|
||||
</metadata>
|
BIN
internal/app/collection_find_export_excel/template.xlsx
Normal file
BIN
internal/app/collection_find_export_excel/template.xlsx
Normal file
Binary file not shown.
10
internal/app/collection_find_export_excel/workbook.xml
Normal file
10
internal/app/collection_find_export_excel/workbook.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<workbook
|
||||
xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main"
|
||||
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
||||
>
|
||||
<workbookPr codeName="ThisWorkbook"/>
|
||||
<sheets>
|
||||
<sheet name="RolensExport" sheetId="1" r:id="rId1"/>
|
||||
</sheets>
|
||||
</workbook>
|
Reference in New Issue
Block a user