Skip to content

Writing XLSX from templates don't keep all archive files #4394

Open
@mdiasCP

Description

@mdiasCP

I am loading a template file, editing it and then saving it, like this :

$filename = 'templateImportFactureVente_CAF.xlsx';
$spreadsheet = IOFactory::load( __DIR__ . '/../../' . $filename );

// edit file

$writer = IOFactory::createWriter( $spreadsheet, 'Xlsx' );
$writer->save( $filename );

The template file contains some required .xml files in the XLSX archive. When saving it, some of the .xml files are missing, which is problematic for the feature I'm building.

Image

Image
xmlMaps.xml is missing when saving

Image
customXml is missing when saving

You can see by the size of the folders that some files are missing from these too.

Is there a way to do what I want? I just want to add lines to the templates, while keeping all .xml file structure that are necessary. I tried to look into the save() method but it's hard to understand everything that's happening.

templateImportFactureVente_CAF.xlsx

Using 3.3.0

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions