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
Grievance
Commits
a439d712
Commit
a439d712
authored
1 year ago
by
Rajendra Kishor Rahu
Browse files
Options
Download
Patches
Plain Diff
Junk name correction
parent
772e390a
shishir_ticket_statistics_by_user
UAT
UPHRH_7903_mobile_otp
UPHRH_quartz_scheduler
admin_config_changes
shishir_dynamic_schedular
1 merge request
!39
Uphrh 7903 mobile otp
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/main/java/org/upsmf/grievance/model/AssigneeTicketAttachment.java
+1
-1
...a/org/upsmf/grievance/model/AssigneeTicketAttachment.java
src/main/java/org/upsmf/grievance/model/RaiserTicketAttachment.java
+1
-1
...ava/org/upsmf/grievance/model/RaiserTicketAttachment.java
src/main/java/org/upsmf/grievance/service/impl/EsTicketUpdateServiceImpl.java
+1
-3
...smf/grievance/service/impl/EsTicketUpdateServiceImpl.java
with
3 additions
and
5 deletions
+3
-5
src/main/java/org/upsmf/grievance/model/AssigneeTicketAttachment.java
+
1
−
1
View file @
a439d712
...
...
@@ -23,7 +23,7 @@ public class AssigneeTicketAttachment {
@Column
(
name
=
"user_id"
,
nullable
=
false
)
private
String
userId
;
@Lob
//
@Lob
@Column
(
name
=
"attachment_url"
,
nullable
=
false
)
private
String
attachment_url
;
}
This diff is collapsed.
Click to expand it.
src/main/java/org/upsmf/grievance/model/RaiserTicketAttachment.java
+
1
−
1
View file @
a439d712
...
...
@@ -20,7 +20,7 @@ public class RaiserTicketAttachment {
@Column
(
name
=
"ticket_id"
,
nullable
=
false
)
private
Long
ticketId
;
@Lob
//
@Lob
@Column
(
name
=
"attachment_url"
,
nullable
=
false
)
private
String
attachment_url
;
}
This diff is collapsed.
Click to expand it.
src/main/java/org/upsmf/grievance/service/impl/EsTicketUpdateServiceImpl.java
+
1
−
3
View file @
a439d712
...
...
@@ -65,9 +65,7 @@ public class EsTicketUpdateServiceImpl implements EsTicketUpdateService {
if
(
esTicketList
!=
null
&&
!
esTicketList
.
isEmpty
())
{
for
(
org
.
upsmf
.
grievance
.
model
.
es
.
Ticket
ticket
:
esTicketList
)
{
String
updatedName
=
updateUserDto
.
getFirstName
()
+
" "
+
updateUserDto
.
getLastName
();
ticket
.
setJunkedBy
(
updatedName
);
ticket
.
setJunkedBy
(
updatedName
);
ticket
.
setJunkedByName
(
updatedName
);
}
esTicketRepository
.
saveAll
(
esTicketList
);
...
...
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