Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
userManagement
Commits
dbacc23b
Commit
dbacc23b
authored
1 year ago
by
Mahesh Maney R
Browse files
Options
Download
Patches
Plain Diff
adding transaction deatils to return url <ManeyMR>.
parent
4c00ada5
main
UAT_quick_fix_keycloak
UPHRH_8164_ErrorHandling
dev
dev_stable
devops-patch
feature_update_fee
rahu_error_message_fix
uat
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/com/tarento/upsmf/userManagement/services/impl/PaymentServiceImpl.java
+11
-2
...psmf/userManagement/services/impl/PaymentServiceImpl.java
with
11 additions
and
2 deletions
+11
-2
src/main/java/com/tarento/upsmf/userManagement/services/impl/PaymentServiceImpl.java
+
11
−
2
View file @
dbacc23b
...
...
@@ -78,14 +78,15 @@ public class PaymentServiceImpl implements PaymentService {
strEndPoint
=
AFFILIATION_PAYMENT_GATEWAY_ENDPOINT
;
}
String
responseString
=
""
,
transaction_status
=
""
;
String
transactionDetails
=
getTransactionDetails
(
requestData
);
if
((
requestData
!=
null
)
&&
(
requestData
.
get
(
"Response Code"
)
!=
null
)
&&
requestData
.
get
(
"Response Code"
).
equals
(
"E000"
))
{
responseString
=
strEndPoint
+
"?resp=success"
;
responseString
=
strEndPoint
+
"?resp=success"
+
transactionDetails
;
transaction_status
=
"success"
;
logger
.
info
(
"Payment is successful."
);
logger
.
info
(
"Record saved to DB."
);
}
else
{
responseString
=
strEndPoint
+
"?resp=failure"
;
responseString
=
strEndPoint
+
"?resp=failure"
+
transactionDetails
;
transaction_status
=
"failed."
;
logger
.
info
(
"Payment failed."
);
}
...
...
@@ -99,6 +100,14 @@ public class PaymentServiceImpl implements PaymentService {
return
new
ResponseEntity
<
String
>(
null
,
httpHeaders
,
HttpStatus
.
NOT_FOUND
);
}
private
String
getTransactionDetails
(
Map
<
String
,
String
>
requestData
)
{
String
transactionAmount
=
requestData
.
get
(
"Transaction Amount"
)
!=
null
?
requestData
.
get
(
"Transaction Amount"
)
:
""
;
String
uniqueRefNumber
=
requestData
.
get
(
"Unique Ref Number"
)
!=
null
?
requestData
.
get
(
"Unique Ref Number"
)
:
""
;
String
response
=
"&transaction_amount="
+
transactionAmount
+
"&transaction_id="
+
uniqueRefNumber
;
logger
.
info
(
"transaction details {}"
,
response
);
return
response
;
}
private
Transaction
getTransaction
(
final
Map
<
String
,
String
>
requestData
,
final
String
strEndPoint
,
final
String
transaction_status
)
{
Long
id
=
Long
.
valueOf
(
requestData
.
get
(
"ID"
));
Double
transactionAmount
=
Double
.
valueOf
(
requestData
.
get
(
"Transaction Amount"
));
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets