FIX_THZ changes
This commit is contained in:
parent
4a3000c530
commit
1b644b5f99
@ -88,9 +88,6 @@ tbody tr {
|
|||||||
white-space: nowrap !important;
|
white-space: nowrap !important;
|
||||||
} */
|
} */
|
||||||
|
|
||||||
.app-text-black{
|
|
||||||
color: #000000 !important;
|
|
||||||
}
|
|
||||||
.text-custom-grey{
|
.text-custom-grey{
|
||||||
font-size: 0.85em;
|
font-size: 0.85em;
|
||||||
color: #6c757d !important;
|
color: #6c757d !important;
|
||||||
@ -215,7 +212,7 @@ table thead th {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<table id="scroll-horizontal-datatable" class="table w-100 nowrap app-text-black text-custom app-font-family">
|
<table id="scroll-horizontal-datatable" class="table w-100 nowrap text-custom-black text-custom app-font-family">
|
||||||
<thead class="app-table-head">
|
<thead class="app-table-head">
|
||||||
<tr>
|
<tr>
|
||||||
<th>Ticket ID</th>
|
<th>Ticket ID</th>
|
||||||
@ -257,15 +254,17 @@ table thead th {
|
|||||||
<td class="app-text-left"><?php echo $row['assignee_name'] ? $row['assignee_name'] : '-'; ?></td>
|
<td class="app-text-left"><?php echo $row['assignee_name'] ? $row['assignee_name'] : '-'; ?></td>
|
||||||
<td class="app-text-left">
|
<td class="app-text-left">
|
||||||
<?php if (!empty($row['created_at'])):
|
<?php if (!empty($row['created_at'])):
|
||||||
$cdt = new DateTime($row['created_at']);
|
$cd = date("j F Y", strtotime($row['created_at']));
|
||||||
echo $cdt->format('d/m/Y') . "<br><span class='time'> " . $cdt->format('h:i a') . "</span>";
|
$ct = date("h:i a", strtotime($row['created_at']));
|
||||||
|
echo $cd . "<br><span class='time'> " . $ct . "</span>";
|
||||||
endif;
|
endif;
|
||||||
?>
|
?>
|
||||||
</td>
|
</td>
|
||||||
<td class="app-text-left">
|
<td class="app-text-left">
|
||||||
<?php if (!empty($row['updated_at'])):
|
<?php if (!empty($row['updated_at'])):
|
||||||
$udt = new DateTime($row['updated_at']);
|
$ud = date("j F Y", strtotime($row['updated_at']));
|
||||||
echo $udt->format('d/m/Y') . "<br><span class='time'> " . $udt->format('h:i a') . "</span>";
|
$ut = date("h:i a", strtotime($row['updated_at']));
|
||||||
|
echo $ud . "<br><span class='time'> " . $ut . "</span>";
|
||||||
endif;
|
endif;
|
||||||
?>
|
?>
|
||||||
</td>
|
</td>
|
||||||
|
|||||||
@ -196,7 +196,7 @@ hr{
|
|||||||
</div>
|
</div>
|
||||||
<div class="row mb-2">
|
<div class="row mb-2">
|
||||||
<div class="col-4 app-subtitle app-text-grey app-font-family">Policy Number</div>
|
<div class="col-4 app-subtitle app-text-grey app-font-family">Policy Number</div>
|
||||||
<div class="col-8 app-text text-end app-font-family" style="font-weight: 500 !important;">
|
<div class="col-8 app-text text-end app-font-family app-text-black" style="font-weight: 500 !important;">
|
||||||
<?= (!empty($master[0]['policy_no']) && strtolower($master[0]['policy_no']) !== 'null')
|
<?= (!empty($master[0]['policy_no']) && strtolower($master[0]['policy_no']) !== 'null')
|
||||||
? '<u class="app-text-black">
|
? '<u class="app-text-black">
|
||||||
<a href="javascript:void(0);"
|
<a href="javascript:void(0);"
|
||||||
@ -272,7 +272,7 @@ hr{
|
|||||||
<!-- Conversation Card -->
|
<!-- Conversation Card -->
|
||||||
<div class="card mb-3 conversation-card">
|
<div class="card mb-3 conversation-card">
|
||||||
<div class="card-header d-flex justify-content-between align-items-center" style="background:none; border:none; padding-bottom: 0px;">
|
<div class="card-header d-flex justify-content-between align-items-center" style="background:none; border:none; padding-bottom: 0px;">
|
||||||
<p class="sub-title-text app-font-family" >Conversation</p>
|
<p class="sub-title-text app-font-family app-text-black" >Conversation</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body recard-scroll" style="padding:0 27px !important; margin:0 !important; background:#F5FFFF;">
|
<div class="card-body recard-scroll" style="padding:0 27px !important; margin:0 !important; background:#F5FFFF;">
|
||||||
<?php if(!empty($notes)): ?>
|
<?php if(!empty($notes)): ?>
|
||||||
@ -419,9 +419,11 @@ hr{
|
|||||||
<h5 class="app-font-family app-text"><?php echo '# '.$rt['thz_id']." / ".$rt['ticket_type']; ?></h5>
|
<h5 class="app-font-family app-text"><?php echo '# '.$rt['thz_id']." / ".$rt['ticket_type']; ?></h5>
|
||||||
<small classs="app-font-family" style="font-size:7px;">
|
<small classs="app-font-family" style="font-size:7px;">
|
||||||
<?php if (!empty($rt['created_at'])):
|
<?php if (!empty($rt['created_at'])):
|
||||||
$cdt = new DateTime($rt['created_at']);
|
$cd = date("j F Y", strtotime($rt['created_at']));
|
||||||
echo $cdt->format('d/m/Y') . "<span class='time'> " . $cdt->format('h:i a') . "</span>";
|
$ct = date("h:i a", strtotime($rt['created_at']));
|
||||||
endif; ?>
|
echo $cd . " " . $ct;
|
||||||
|
endif;
|
||||||
|
?>
|
||||||
</small>
|
</small>
|
||||||
</div>
|
</div>
|
||||||
<p class="mt-1 app-font-family"
|
<p class="mt-1 app-font-family"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user