Skip to content

Commit

Permalink
[FIX] l10n_ar_account_tax_settlement: Fix por error introducido en PR…
Browse files Browse the repository at this point in the history
… numero 378

closes #390

Ticket: 74335
Signed-off-by: Katherine Zaoral <[email protected]>
  • Loading branch information
mem-adhoc committed May 15, 2024
1 parent 6b37059 commit e134609
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l10n_ar_account_tax_settlement/models/account_journal.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ def iibb_aplicado_agip_files_values(self, move_lines):

#Identificamos si el comprobante de origen es una Factura de credito MiPyMEs sino lo
# tratamos como una factura normal
content += '10' if or_inv.l10n_latam_document_type.code in [201, 206, 211] else '01'
content += '10' if or_inv.l10n_latam_document_type_id.code in ['201', '206', '211'] else '01'

# 7 - Letra del Comprobante
if payment:
Expand Down

0 comments on commit e134609

Please sign in to comment.