CHNAGE_API_FOR_FIRST_HISTORY : RV

This commit is contained in:
VENKATESHWARAN 2025-04-03 11:14:47 +05:30
parent ad86f196cc
commit 82f131f511
3 changed files with 6 additions and 1 deletions

View File

@ -3184,6 +3184,9 @@ class EmployeeRestController extends AdminController
if ($insert_status && !empty($ticket_id)) {
//insert first history
$this->ticketController->putHistoryAfterInsert($fetchData, $ticket_id);
$messagesData = [
'ticket_id' => $ticket_id ?? null,
'sender' => 'user',

View File

@ -1533,6 +1533,8 @@ class TicketController extends BaseController
$this->myLogger->logme('error', "Put History After Insert Ticket Data is empty");
}
return true;
}
public function viewClaimFeedbackForm($md5_ticket_id)

View File

@ -20,7 +20,7 @@
<td><?php echo $row['display_name']; ?></td>
<td><?php echo $row['old_value'].' => '.$row['new_value']; ?></td>
<!-- <td><?php //echo $row['new_value']; ?></td> -->
<td><?php echo $row['modified_by']; ?></td>
<td><?php echo $row['modified_by'] ?? "Created by employee"; ?></td>
<td><?php echo $row['created_at']; ?></td>
</tr>
<?php } ?>