Skip to content

Commit

Permalink
[FIX][l10n_it_vat_statement_communication] fix encoding file and remo…
Browse files Browse the repository at this point in the history
…ve zero value from xml in according the specification of ADE

[FIX][l10n_it_vat_statement_communication] fix encoding file and remove zero value from xml in according the specification of ADE

[FIX][l10n_it_vat_statement_communication] fix encoding file and remove zero value from xml in according the specification of ADE

[FIX][l10n_it_vat_statement_communication] fix encoding file and remove zero value from xml in according the specification of ADE

[FIX][l10n_it_vat_statement_communication] fix encoding file and remove zero value from xml in according the specification of ADE

[FIX][l10n_it_vat_statement_communication] fix encoding file and remove zero value from xml in according the specification of ADE

[FIX][l10n_it_vat_statement_communication] fix encoding file and remove zero value from xml in according the specification of ADE

[FIX][l10n_it_vat_statement_communication] fix encoding file and remove zero value from xml in according the specification of ADE

[FIX][l10n_it_vat_statement_communication] fix encoding file and remove zero value from xml in according the specification of ADE
  • Loading branch information
matteoopenf committed May 21, 2024
1 parent b602391 commit 4bd4f4f
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,11 @@ def get_export_xml(self):
x1_Fornitura.append(x1_2_Comunicazione)

xml_string = etree.tostring(
x1_Fornitura, encoding="utf8", method="xml", pretty_print=True
x1_Fornitura,
encoding="utf8",
method="xml",
pretty_print=True,
xml_declaration=True,
)
return xml_string

Expand Down

0 comments on commit 4bd4f4f

Please sign in to comment.