Skip to content

Commit

Permalink
[ADD] l10n_ar_account_tax_settlement: Nuevas disposiciones AGIP
Browse files Browse the repository at this point in the history
Ticket: 74335
  • Loading branch information
mem-adhoc committed May 7, 2024
1 parent a55d108 commit a7f4ecf
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion l10n_ar_account_tax_settlement/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Especificación de archivos:

* ARBA: https://www.arba.gov.ar/Apartados/Agentes/PresentacionDDJJ.asp?lugar=P?apartado=AGENTES

* AGIP: https://www.agip.gob.ar/filemanager/source/Agentes/DocTecnicoImpoOperacionesDise%C3%B1odeRegistro.pdf y https://www.agip.gob.ar/agentes/agentes-de-recaudacion/ib-agentes-recaudacion/aplicativo-arciba/ag-rec-arciba-codigo-de-normas
* AGIP: https://www.agip.gob.ar/agentes/agentes-de-recaudacion/ib-agentes-recaudacion/aplicativo-arciba/aclaraciones-sobre-las-adecuaciones-al-aplicativo-e-arciba- , https://www.agip.gob.ar/filemanager/source/Agentes/De Recaudacion/Ingresos brutos/NC.PDF , https://www.agip.gob.ar/filemanager/source/Agentes/De Recaudacion/Ingresos brutos/RP.PDF y https://www.agip.gob.ar/agentes/agentes-de-recaudacion/ib-agentes-recaudacion/aplicativo-arciba/ag-rec-arciba-codigo-de-normas

* MENDOZA https://www.atm.mendoza.gov.ar/portalatm/ModificarParametros?tipo=descargarUrl&url=/zoneBottom/serviciosDescargas/sarepe/files/SAREPE.pdf

Expand Down
13 changes: 11 additions & 2 deletions l10n_ar_account_tax_settlement/models/account_journal.py
Original file line number Diff line number Diff line change
Expand Up @@ -522,9 +522,18 @@ def iibb_aplicado_agip_files_values(self, move_lines):
line.move_id.display_name))

# 6 - Tipo de comprobante origen de la retención
# por ahora solo tenemos facturas implementadas
content += '01'

#Identificamos si el comprobante es una Nota de Credito MiPyMEs
band = False
for doc_type in ['dc_fce_a_f', 'dc_fce_a_f', 'dc_fce_a_f']:
if or_inv == self.env.ref('l10n_ar.%s' % doc_type):
content += '10'
band = True
break
if not band:
# Notas de crédito que NO son MiPyMEs
content+= '01'

# 7 - Letra del Comprobante
if payment:
content += ' '
Expand Down

0 comments on commit a7f4ecf

Please sign in to comment.