forked from ScoDoc/ScoDoc
Merge pull request 'gentil message sur erreur d import esxcel' (#131) from jmplace/ScoDoc-Lille:import_excel_errmsg into master
Reviewed-on: https://scodoc.org/git/viennet/ScoDoc/pulls/131
This commit is contained in:
commit
ae51e4c17a
@ -563,12 +563,24 @@ def excel_feuille_saisie(e, titreannee, description, lines):
|
|||||||
|
|
||||||
|
|
||||||
def excel_bytes_to_list(bytes_content):
|
def excel_bytes_to_list(bytes_content):
|
||||||
|
try:
|
||||||
filelike = io.BytesIO(bytes_content)
|
filelike = io.BytesIO(bytes_content)
|
||||||
return _excel_to_list(filelike)
|
return _excel_to_list(filelike)
|
||||||
|
except:
|
||||||
|
raise ScoValueError("""
|
||||||
|
scolars_import_excel_file: un contenu xlsx semble corrompu!
|
||||||
|
peut-être avez vous fourni un fichier au mauvais format (txt, xls, ..)
|
||||||
|
""")
|
||||||
|
|
||||||
|
|
||||||
def excel_file_to_list(filename):
|
def excel_file_to_list(filename):
|
||||||
|
try:
|
||||||
return _excel_to_list(filename)
|
return _excel_to_list(filename)
|
||||||
|
except:
|
||||||
|
raise ScoValueError("""
|
||||||
|
scolars_import_excel_file: un contenu xlsx semble corrompu!
|
||||||
|
peut-être avez vous fourni un fichier au mauvais format (txt, xls, ..)
|
||||||
|
""")
|
||||||
|
|
||||||
|
|
||||||
def _excel_to_list(filelike): # we may need 'encoding' argument ?
|
def _excel_to_list(filelike): # we may need 'encoding' argument ?
|
||||||
|
Loading…
Reference in New Issue
Block a user