Skip to content

Commit

Permalink
[FIX] l10n_es_facturae: Fill InvoiceDescription with plain text
Browse files Browse the repository at this point in the history
  • Loading branch information
ao-landoo committed Jun 20, 2022
1 parent 6cdfa29 commit 5d89bd8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions l10n_es_facturae/views/report_facturae.xml
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,8 @@
<t t-if="version not in ('3_2', '3_2_1')">
<InvoiceDescription
t-length="2500"
t-if="move.narration"
t-esc="move.narration"
t-if="move.get_narration()"
t-esc="move.get_narration()"
/>
<ReceiverTransactionReference t-length="20" t-if="False" />
<FileReference t-length="20" t-if="False" />
Expand Down Expand Up @@ -672,7 +672,7 @@
t-set="attachments"
t-value="move._get_facturae_move_attachments()"
/>
<AdditionalData t-if="move.narration or attachments">
<AdditionalData t-if="move.get_narration() or attachments">
<RelatedInvoice t-if="False" />
<RelatedDocuments t-if="attachments">
<Attachment t-foreach="attachments" t-as="attachment">
Expand Down

0 comments on commit 5d89bd8

Please sign in to comment.