mirror of
https://github.com/sartography/cr-connect-workflow.git
synced 2025-02-23 21:28:32 +00:00
Allow users to pass a doc_code
to get_zipped_files script
This commit is contained in:
parent
244fced84d
commit
f92f9d64ea
@ -48,7 +48,11 @@ class GetZippedFiles(Script):
|
|||||||
zfw.writestr(file_name, file_data.data)
|
zfw.writestr(file_name, file_data.data)
|
||||||
|
|
||||||
with open(temp_file.name, mode='rb') as handle:
|
with open(temp_file.name, mode='rb') as handle:
|
||||||
file_model = UserFileService().add_workflow_file(workflow_id, None, task.get_name(),
|
if 'doc_code' in kwargs:
|
||||||
|
doc_code = kwargs['doc_code']
|
||||||
|
else:
|
||||||
|
doc_code = None
|
||||||
|
file_model = UserFileService().add_workflow_file(workflow_id, doc_code, task.get_name(),
|
||||||
zip_filename, 'application/zip', handle.read())
|
zip_filename, 'application/zip', handle.read())
|
||||||
# return file_model
|
# return file_model
|
||||||
StudyService.get_documents_status(study_id=study_id, force=True)
|
StudyService.get_documents_status(study_id=study_id, force=True)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user