Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
HIMSScannerService
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
HIMSScanner
HIMSScannerService
Commits
c5e222fe
Commit
c5e222fe
authored
Sep 17, 2025
by
Krishna Reddy Tamatam
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
For Release
parent
76e0bbc7
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
6 deletions
+7
-6
FTPManagementAPIController.cs
Controllers/FTPManagementAPIController.cs
+2
-2
Program.cs
Program.cs
+2
-2
FTPDataAdapter.cs
Services/FTPDataAdapter.cs
+3
-2
No files found.
Controllers/FTPManagementAPIController.cs
View file @
c5e222fe
...
...
@@ -333,13 +333,13 @@ namespace FTP_Services.Services.Controllers
}
[
HttpGet
(
"GetPatientDocuments"
)]
public
IActionResult
GetPatientDocuments
(
int
SPatientID
,
int
SLocationID
,
int
SAppointmentID
,
int
SAdmissionID
,
int
SDocID
,
string
SDueFrom
,
string
SDueTO
)
public
IActionResult
GetPatientDocuments
(
int
SPatientID
,
int
SLocationID
,
int
SAppointmentID
,
int
SAdmissionID
,
int
SDocID
,
int
RecType
,
string
SDueFrom
,
string
SDueTO
)
{
log
.
Debug
(
"GetPatientDocuments ==> "
);
try
{
FTPDataAdapter
adapter
=
new
FTPDataAdapter
(
_appSettings
);
List
<
object
>?
RequestsList
=
adapter
.
PatientDocuments
(
SPatientID
,
SLocationID
,
SAppointmentID
,
SAdmissionID
,
SDocID
,
SDueFrom
,
SDueTO
);
List
<
object
>?
RequestsList
=
adapter
.
PatientDocuments
(
SPatientID
,
SLocationID
,
SAppointmentID
,
SAdmissionID
,
SDocID
,
RecType
,
SDueFrom
,
SDueTO
);
return
Ok
(
RequestsList
);
}
catch
(
Exception
ex
)
...
...
Program.cs
View file @
c5e222fe
...
...
@@ -138,8 +138,8 @@ if (app.Environment.IsDevelopment())
}
else
{
app
.
Run
();
//For Test Site
//
app.Run("http://*:4708"); // For Production
//
app.Run(); //For Test Site
app
.
Run
(
"http://*:4708"
);
// For Production
//app.Run("http://*:4709"); // For Admin
}
...
...
Services/FTPDataAdapter.cs
View file @
c5e222fe
...
...
@@ -594,7 +594,7 @@ namespace FTP_Services.Services
}
}
public
List
<
object
>?
PatientDocuments
(
int
SPatientID
,
int
SLocationID
,
int
SAppointmentID
,
int
SAdmissionID
,
int
SDocID
,
string
?
SDueFrom
,
string
?
SDueTO
)
public
List
<
object
>?
PatientDocuments
(
int
SPatientID
,
int
SLocationID
,
int
SAppointmentID
,
int
SAdmissionID
,
int
SDocID
,
int
RecType
,
string
?
SDueFrom
,
string
?
SDueTO
)
{
List
<
object
>?
PatientDocumentsData
=
null
;
try
...
...
@@ -611,6 +611,7 @@ namespace FTP_Services.Services
{
SAppointmentID
}
,
{
SAdmissionID
}
,
{
SDocID
}
,
{
RecType
}
,
{
dueFromSql
}
,
{
dueToSql
}
);"
;
...
...
@@ -922,7 +923,7 @@ namespace FTP_Services.Services
+
");"
;
result
=
_repository
.
Single
<
string
>(
SQLStr
);
result
=
""
;
GC
.
Collect
();
tx
.
Complete
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment