|
@@ -231,7 +231,10 @@ async def update_task_status(
|
|
task_id_to_use = get_req_param(body, 'task_id')
|
|
task_id_to_use = get_req_param(body, 'task_id')
|
|
processing_status = get_req_param(body, 'processing_status')
|
|
processing_status = get_req_param(body, 'processing_status')
|
|
feedback_content = get_req_param(body, 'feedback_content')
|
|
feedback_content = get_req_param(body, 'feedback_content')
|
|
- attachList = get_req_param(body, 'fileList')
|
|
|
|
|
|
+ attachList = None
|
|
|
|
+ if 'fileList'in body:
|
|
|
|
+ attachList = get_req_param(body, 'fileList')
|
|
|
|
+
|
|
|
|
|
|
longitude = latitude = None
|
|
longitude = latitude = None
|
|
if 'lnglat' in body:
|
|
if 'lnglat' in body:
|