Skip to content

Commit

Permalink
[FIX] l10n_uy_edi: Now we can invoice without partner name
Browse files Browse the repository at this point in the history
Task : 65184
  • Loading branch information
mem-adhoc committed Sep 6, 2023
1 parent 9e9a8a6 commit f4b419f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion l10n_uy_edi/models/l10n_uy_cfe.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,8 @@ def _l10n_uy_get_cfe_receptor(self):
'DocRecep' if tipo_doc in [1, 2, 3] else 'DocRecepExt': self.partner_id.vat, # A62 / A62.1
})

res.update({'RznSocRecep': self.partner_id.name[:150]}) # A63

res.update({'RznSocRecep': self.partner_id.commercial_partner_id.name[:150]}) # A63
res.update(self._uy_cfe_A64_DirRecep())
res.update(self._uy_cfe_A65_CiudadRecep())
res.update(self._uy_cfe_A66_DeptoRecep())
Expand Down

0 comments on commit f4b419f

Please sign in to comment.