Actions
Activity #4068
closedFeature #63: DigiPatho Web -- Development, Validation, Certification and Deployment
Feature #1500: Development of DigiPatho.Local application
Refactor – Move PDF URL Creation to Backend Service (/getServerUploadLocation)
Start date:
08/05/2025
Due date:
% Done:
100%
Estimated time:
Planned Due Date:
Description
Refactor the existing logic of PDF URL creation from frontend to backend service.
Currently, the API /Rest/screeningExamination/getServerUploadLocation only returns the baseUrl. The full PDF path is constructed on the frontend using patient_ID, slideid, and disease_id.
- URL:- /Rest/screeningExamination/getServerUploadLocation.
- Request:-{
"patient_ID": "HS12345",
"slideid": "SC1002",
"disease_id": "CERV"
}
- Return full PDF URL as part of the response.ie:
{
"status": "success",
"pdfUrl": "http://server/path/HS12345/SC1002_CERV/SC1002_CERV.pdf"
}
Frontend Changes:
Modify the frontend to send JSON request to the API.
Use only the pdfUrl from the response for display/print.
Updated by Sneha K V about 1 year ago
- Status changed from New to Resolved
- % Done changed from 0 to 100
Actions