Skip to content

Commit

Permalink
[FIX] l10n_ar_account_tax_settlement: iibb aplicado sircar
Browse files Browse the repository at this point in the history
Ticket: 60795
En el txt de iibb aplicado sircar en lugar de informar como número del comprobante el nro de op informamos el "Número de Retención"

closes #205

Signed-off-by: Ignacio Cainelli <ica@adhoc.com.ar>
  • Loading branch information
pablohmontenegro committed May 16, 2023
1 parent 6920a40 commit c40180b
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
Expand Up @@ -847,7 +847,7 @@ def iibb_aplicado_sircar_files_values(self, move_lines):

# 4 Número del comprobante
content.append('%012d' % int(
re.sub('[^0-9]', '', line.move_id.l10n_latam_document_number or '')))
re.sub('[^0-9]', '', line.payment_id.withholding_number or '')))

# 5 Cuit del contribuyene
content.append(line.partner_id.ensure_vat())
Expand Down

0 comments on commit c40180b

Please sign in to comment.