Commit a439d712 authored by Rajendra Kishor Rahu's avatar Rajendra Kishor Rahu
Browse files

Junk name correction

Showing with 3 additions and 5 deletions
+3 -5
......@@ -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;
}
......@@ -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;
}
......@@ -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);
......
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