return type

This commit is contained in:
CHIEFSOFT\ameye
2025-08-13 15:09:01 -04:00
parent fe0e106d88
commit f9f9625aa8
+3 -2
View File
@@ -302,8 +302,9 @@ def common_practice():
# Call the dashboard service
data = request.get_json()
logger.info(f"Route common Practice Data ==>>>> {data}")
result = CommonDataService.available_practices(data)
return jsonify(result)
response = CommonDataService.available_practices(data)
return response
# return jsonify(result)
#===================================================
CommonDataService