|
@@ -241,6 +241,8 @@ async def update_task_status(
|
|
|
task_id_to_use = get_req_param(body, 'task_id')
|
|
|
processing_status = get_req_param(body, 'processing_status')
|
|
|
feedback_content = get_req_param_optional(body, 'feedback_content')
|
|
|
+ work_station = get_req_param_optional(body, 'work_station')
|
|
|
+
|
|
|
attachList = None
|
|
|
if 'fileList'in body:
|
|
|
attachList = get_req_param(body, 'fileList')
|
|
@@ -275,7 +277,8 @@ async def update_task_status(
|
|
|
approval_content = "",
|
|
|
recorded_by=user_id,
|
|
|
longitude = longitude,
|
|
|
- latitude = latitude
|
|
|
+ latitude = latitude,
|
|
|
+ work_station = work_station
|
|
|
)
|
|
|
db.add(new_feeback)
|
|
|
db.commit()
|