add excel path
Showing
1 changed file
with
2 additions
and
1 deletions
... | @@ -370,4 +370,5 @@ class DocView(GenericView, DocHandler): | ... | @@ -370,4 +370,5 @@ class DocView(GenericView, DocHandler): |
370 | self.running_log.info('[mock doc upload success] [args={0}] [business_type={1}] [doc_id={2}] ' | 370 | self.running_log.info('[mock doc upload success] [args={0}] [business_type={1}] [doc_id={2}] ' |
371 | '[is_priority={3}] [enqueue_res={4}]'.format(args, prefix, doc.id, | 371 | '[is_priority={3}] [enqueue_res={4}]'.format(args, prefix, doc.id, |
372 | is_priority, enqueue_res)) | 372 | is_priority, enqueue_res)) |
373 | return response.ok() | 373 | data = {'excel_path': os.path.join(save_dir_path, '{0}.xlsx'.format(doc.id))} |
374 | return response.ok(data=data) | ... | ... |
-
Please register or sign in to post a comment