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
40229bc8
Unverified
Commit
40229bc8
authored
2 years ago
by
sarojsingh2021
Committed by
GitHub
2 years ago
Browse files
Options
Download
Plain Diff
Merge pull request #7 from UPHRH-platform/lat-long
initial commit lat-long
parents
11defa9e
c6901d80
master
cvs_download
delete-form
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
+2
-0
.../com/tarento/formservice/controllers/FormsController.java
src/main/java/com/tarento/formservice/model/IncomingData.java
+2
-0
...main/java/com/tarento/formservice/model/IncomingData.java
with
4 additions
and
0 deletions
+4
-0
src/main/java/com/tarento/formservice/controllers/FormsController.java
+
2
−
0
View file @
40229bc8
...
...
@@ -289,6 +289,8 @@ public class FormsController {
if
(
validation
.
equals
(
Constants
.
ResponseCodes
.
SUCCESS
))
{
IncomingData
inspectionData
=
new
IncomingData
();
inspectionData
.
setInspectionCompleted
(
incomingData
.
getInspectionCompleted
());
inspectionData
.
setLatitude
(
incomingData
.
getLatitude
());
inspectionData
.
setLongitude
(
incomingData
.
getLongitude
());
inspectionData
.
setInspectorDataObject
(
incomingData
);
inspectionData
.
setApplicationId
(
incomingData
.
getApplicationId
());
inspectionData
.
setInspectorSummaryDataObject
(
incomingData
.
getInspectorSummaryDataObject
());
...
...
This diff is collapsed.
Click to expand it.
src/main/java/com/tarento/formservice/model/IncomingData.java
+
2
−
0
View file @
40229bc8
...
...
@@ -34,5 +34,7 @@ public class IncomingData {
private
String
inspectionDate
;
private
String
inspectionCompletedDate
;
private
Boolean
inspectionCompleted
=
Boolean
.
FALSE
;
private
Double
latitude
;
private
Double
longitude
;
}
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