Commit e7949180 authored by nivetha's avatar nivetha
Browse files

status log for newly created application

Showing with 15 additions and 9 deletions
+15 -9
...@@ -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(9999l); incomingData.setFormId(9999l);
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) {
......
...@@ -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)) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment