-
-
Notifications
You must be signed in to change notification settings - Fork 520
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[16.0][FIX] l10n_es_facturae: Fix addition of invoice PDF by adding encoding #3424
Conversation
Hi @etobella, |
fe75ea9
to
74d4cf0
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Por mi parte lo veo bien, solo dos cosas, unos es un comentario tonto de formato
Puedes cambiar el descriptivo del commit poor algo así com
[IMP] l10n_es_facturae: Fix addition of invoice PDF by adding encoding
@@ -197,7 +197,7 @@ def _get_facturae_move_attachments(self): | |||
) | |||
result.append( | |||
{ | |||
"data": base64.b64encode(content), | |||
"data": (base64.b64encode(content)).decode("utf-8"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"data": (base64.b64encode(content)).decode("utf-8"), | |
"data": base64.b64encode(content).decode("utf-8"), |
El paréntesis no es necesario
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay! merci
cf76bf9
to
6a6a245
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/ocabot merge patch
What a great day to merge this nice PR. Let's do it! |
Congratulations, your PR was merged at 7bfcf13. Thanks a lot for contributing to OCA. ❤️ |
No description provided.