Skip to content

Commit

Permalink
[FIX] l10n_uy_edi: Fix en linea de descuento
Browse files Browse the repository at this point in the history
Ticket: 66581
  • Loading branch information
mem-adhoc committed Oct 3, 2023
1 parent 7554ae7 commit 43a6268
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l10n_uy_edi/models/l10n_uy_cfe.py
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,7 @@ def _l10n_uy_get_cfe_item_detail(self):
'MontoItem': self._uy_cfe_B24_MontoItem(line), # B24 Monto Item
})
if self._is_uy_inv_type_cfe() and line.discount:
item.update({'DescuentoPct': line._uy_cfe_B12_DescuentoPct(line),
item.update({'DescuentoPct': self._uy_cfe_B12_DescuentoPct(line),
'DescuentoMonto': self._uy_cfe_B13_DescuentoMonto(line)
})
item.update(self._uy_cfe_B11_PrecioUnitario(line, item.get('IndFact')))
Expand Down

0 comments on commit 43a6268

Please sign in to comment.