[OIL HISTORY] Added Container detail and Cycle (with forced cycle) and removed Sludge from header table.
This commit is contained in:
parent
45a81cc06e
commit
bfbb33011b
|
|
@ -49,6 +49,16 @@ $c_mailingaddrSTR = str_replace("\\", "", $c_mailingaddr);
|
|||
//echo "<br><br><br><br><br>[".utf8_encode($c_phone)."]";
|
||||
$c_addressSTR = str_replace("\\", "", $c_address);
|
||||
|
||||
$c_containerSTR = str_replace("\\", "", $c_container);
|
||||
if ($c_fullcycleflag == 1) {
|
||||
$c_fullcycleSTR = $c_fullcycleforced;
|
||||
$c_fullcycleCSS = "style='color:red;'";
|
||||
}
|
||||
else {
|
||||
$c_fullcycleSTR = $c_fullcycle;
|
||||
$c_fullcycleCSS = "";
|
||||
}
|
||||
|
||||
|
||||
///////////////////
|
||||
// Get Oil History
|
||||
|
|
@ -172,10 +182,10 @@ while($list=mysqli_fetch_array($rt_oilh, MYSQLI_ASSOC)) {
|
|||
<div class="oil-history-detail-info-col oil-history-title">Mailing Address</div>
|
||||
<div class="oil-history-detail-info-col"><?=$c_mailingaddrSTR?></div>
|
||||
|
||||
<div class="oil-history-detail-info-col oil-history-title">Sludge</div>
|
||||
<div class="oil-history-detail-info-col"><?=$c_sludge?></div>
|
||||
<div class="oil-history-detail-info-col oil-history-title"></div>
|
||||
<div class="oil-history-detail-info-col"></div>
|
||||
<div class="oil-history-detail-info-col oil-history-title">Container</div>
|
||||
<div class="oil-history-detail-info-col"><?=htmlspecialchars($c_containerSTR, ENT_QUOTES)?></div>
|
||||
<div class="oil-history-detail-info-col oil-history-title">Cycle</div>
|
||||
<div class="oil-history-detail-info-col"<?=$c_fullcycleCSS?>><?=$c_fullcycleSTR?></div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue