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
uphrh-smf-form
Commits
e7949180
Commit
e7949180
authored
2 years ago
by
nivetha
Browse files
Options
Download
Patches
Plain Diff
status log for newly created application
parent
c9fe67a5
master
bulk-download
cvs_download
delete-form
emailContentUpdate
inspection-flow-changes
institute-district
lat-long
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/com/tarento/formservice/controllers/FormsController.java
+10
-7
.../com/tarento/formservice/controllers/FormsController.java
src/main/java/com/tarento/formservice/service/impl/FormsServiceImpl.java
+5
-2
...om/tarento/formservice/service/impl/FormsServiceImpl.java
with
15 additions
and
9 deletions
+15
-9
src/main/java/com/tarento/formservice/controllers/FormsController.java
+
10
−
7
View file @
e7949180
...
@@ -123,7 +123,9 @@ public class FormsController {
...
@@ -123,7 +123,9 @@ public class FormsController {
incomingData
.
setUpdatedBy
(
userInfo
.
getEmailId
());
incomingData
.
setUpdatedBy
(
userInfo
.
getEmailId
());
}
}
}
}
if
(
formsService
.
saveFormSubmitv1
(
incomingData
,
userInfo
,
null
))
{
if
(
formsService
.
saveFormSubmitv1
(
incomingData
,
userInfo
,
StringUtils
.
isBlank
(
incomingData
.
getApplicationId
())
?
Status
.
NEW
.
name
()
:
Status
.
REVIEW
.
name
()))
{
return
ResponseGenerator
.
successResponse
(
Boolean
.
TRUE
);
return
ResponseGenerator
.
successResponse
(
Boolean
.
TRUE
);
}
}
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
...
@@ -440,24 +442,24 @@ public class FormsController {
...
@@ -440,24 +442,24 @@ public class FormsController {
}
}
return
ResponseGenerator
.
failureResponse
();
return
ResponseGenerator
.
failureResponse
();
}
}
@PostMapping
(
value
=
PathRoutes
.
FormServiceApi
.
SAVE_PLAIN_FORM
)
@PostMapping
(
value
=
PathRoutes
.
FormServiceApi
.
SAVE_PLAIN_FORM
)
public
String
savePlainForm
(
@RequestBody
IncomingData
incomingData
)
throws
IOException
{
public
String
savePlainForm
(
@RequestBody
IncomingData
incomingData
)
throws
IOException
{
try
{
try
{
if
(
incomingData
!=
null
)
{
if
(
incomingData
!=
null
)
{
incomingData
.
setFormId
(
9999
l
);
incomingData
.
setFormId
(
9999
l
);
if
(
formsService
.
savePlainForm
(
incomingData
))
{
if
(
formsService
.
savePlainForm
(
incomingData
))
{
return
ResponseGenerator
.
successResponse
(
Boolean
.
TRUE
);
return
ResponseGenerator
.
successResponse
(
Boolean
.
TRUE
);
}
}
}
}
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
logger
.
error
(
String
.
format
(
Constants
.
EXCEPTION
,
"savePlainForm"
,
e
.
getMessage
()));
logger
.
error
(
String
.
format
(
Constants
.
EXCEPTION
,
"savePlainForm"
,
e
.
getMessage
()));
return
ResponseGenerator
.
failureResponse
(
Constants
.
ResponseMessages
.
CHECK_REQUEST_PARAMS
);
return
ResponseGenerator
.
failureResponse
(
Constants
.
ResponseMessages
.
CHECK_REQUEST_PARAMS
);
}
}
return
ResponseGenerator
.
failureResponse
();
return
ResponseGenerator
.
failureResponse
();
}
}
@GetMapping
(
value
=
PathRoutes
.
FormServiceApi
.
GET_ALL_PLAIN_FORMS
,
produces
=
MediaType
.
APPLICATION_JSON_VALUE
)
@GetMapping
(
value
=
PathRoutes
.
FormServiceApi
.
GET_ALL_PLAIN_FORMS
,
produces
=
MediaType
.
APPLICATION_JSON_VALUE
)
public
String
getAllPlainForms
()
throws
JsonProcessingException
{
public
String
getAllPlainForms
()
throws
JsonProcessingException
{
List
<
Map
<
String
,
Object
>>
responseData
=
new
ArrayList
<>();
List
<
Map
<
String
,
Object
>>
responseData
=
new
ArrayList
<>();
...
@@ -467,9 +469,10 @@ public class FormsController {
...
@@ -467,9 +469,10 @@ public class FormsController {
}
}
return
ResponseGenerator
.
failureResponse
(
Constants
.
ResponseMessages
.
ERROR_MESSAGE
);
return
ResponseGenerator
.
failureResponse
(
Constants
.
ResponseMessages
.
ERROR_MESSAGE
);
}
}
@GetMapping
(
value
=
PathRoutes
.
FormServiceApi
.
GET_PLAIN_FORM_BY_ID
,
produces
=
MediaType
.
APPLICATION_JSON_VALUE
)
@GetMapping
(
value
=
PathRoutes
.
FormServiceApi
.
GET_PLAIN_FORM_BY_ID
,
produces
=
MediaType
.
APPLICATION_JSON_VALUE
)
public
String
getPlainFormById
(
@RequestParam
(
value
=
Constants
.
APPLICATION_ID
,
required
=
true
)
String
applicationId
)
public
String
getPlainFormById
(
@RequestParam
(
value
=
Constants
.
APPLICATION_ID
,
required
=
true
)
String
applicationId
)
throws
JsonProcessingException
{
throws
JsonProcessingException
{
List
<
Map
<
String
,
Object
>>
responseData
=
formsService
.
getPlainFormsById
(
applicationId
);
List
<
Map
<
String
,
Object
>>
responseData
=
formsService
.
getPlainFormsById
(
applicationId
);
if
(
responseData
!=
null
)
{
if
(
responseData
!=
null
)
{
...
...
This diff is collapsed.
Click to expand it.
src/main/java/com/tarento/formservice/service/impl/FormsServiceImpl.java
+
5
−
2
View file @
e7949180
...
@@ -185,7 +185,6 @@ public class FormsServiceImpl implements FormsService {
...
@@ -185,7 +185,6 @@ public class FormsServiceImpl implements FormsService {
form
=
gson
.
fromJson
(
eachInnerHit
.
findValue
(
"sourceAsMap"
).
toString
(),
Form
.
class
);
form
=
gson
.
fromJson
(
eachInnerHit
.
findValue
(
"sourceAsMap"
).
toString
(),
Form
.
class
);
}
}
form
.
setNumberOfRecords
((
long
)
randInt
(
1
,
1000
));
form
.
setNumberOfRecords
((
long
)
randInt
(
1
,
1000
));
LOGGER
.
info
(
"Each Form : {}"
,
gson
.
toJson
(
form
));
formList
.
add
(
form
);
formList
.
add
(
form
);
}
}
}
}
...
@@ -943,7 +942,11 @@ public class FormsServiceImpl implements FormsService {
...
@@ -943,7 +942,11 @@ public class FormsServiceImpl implements FormsService {
IncomingData
updatedAppData
=
objectMapper
.
convertValue
(
updatedAppMap
,
IncomingData
.
class
);
IncomingData
updatedAppData
=
objectMapper
.
convertValue
(
updatedAppMap
,
IncomingData
.
class
);
// update activity logs
// update activity logs
activityService
.
applicationActivity
(
applicationData
,
updatedAppData
,
userInfo
);
if
(
action
.
equalsIgnoreCase
(
Status
.
NEW
.
name
()))
{
activityService
.
applicationActivity
(
null
,
updatedAppData
,
userInfo
);
}
else
{
activityService
.
applicationActivity
(
applicationData
,
updatedAppData
,
userInfo
);
}
// send notification
// send notification
if
(
action
.
equals
(
Constants
.
WorkflowActions
.
ASSIGN_INSPECTOR
))
{
if
(
action
.
equals
(
Constants
.
WorkflowActions
.
ASSIGN_INSPECTOR
))
{
...
...
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