-
-
Notifications
You must be signed in to change notification settings - Fork 306
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
[ADD] l10n_it_fatturapa_import_zip #3526
[ADD] l10n_it_fatturapa_import_zip #3526
Conversation
…mportare in massa e-fatture in/out
Also allow to create withholding taxes in other tests
Do not assume there is a `/tmp` directory or that path separator is `/` so that this can also work in other FileSystems than Linux's
Override exposed methods instead of duplicating Reuse common tests data
Revisione funzionale effettuata su runboat, e ha superato tutti i test. |
Grazie mille della revisione! Riuscresti a scriverlo sotto forma di review in github?
C'è qualche screenshot che potrebbe aiutarti in https://www.odoo-italia.org/documentazione/14.0/sviluppo/review.html#revisione-tecnica |
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.
revisione funzionale effettuata su runboat, funziona perfettamente
This PR has the |
zip_data = base64.b64decode(datas) | ||
with tempfile.NamedTemporaryFile(mode="wb") as tmp_file: | ||
tmp_file.write(zip_data) | ||
with zipfile.ZipFile(tmp_file.name, mode="r") as zip_ref: |
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.
come da commento su PR sulla 16.0 bisogna mettere anche qui un tmp_file.flush() dopo il .write in quanto randomicamente non flusha i dati su file temporaneo e zipfile non riesce ad aprirlo
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.
Ho verificato che il problema di CessionarioCommittente era presente anche in questa PR e ho corretto entrambi in #3587, potresti verificare lì se sono risolti?
Grazie mille!
Da chiudere, sostituita da #3587 |
Sostituisce #2258.