- [ORDER] Actual 양 옆에 Forecast 양 표시 추가 (fixed).
This commit is contained in:
Hyojin Ahn 2026-06-18 12:29:20 -04:00
parent 2a2fc2a120
commit ff424e28ce
2 changed files with 15 additions and 3 deletions

View File

@ -306,13 +306,13 @@ table.tb-list th {
color: blue; color: blue;
font-size: 18px; font-size: 18px;
cursor: pointer; cursor: pointer;
background-color:blue; background-color::blue;
} }
.icon-note:hover{ .icon-note:hover{
color: #5E5EFF; color: #5E5EFF;
font-size: 18px; font-size: 18px;
background-color:blue; background-color::blue;
} }
/*-------------------------------------------------------------- /*--------------------------------------------------------------
# Pagination # Pagination
@ -391,6 +391,18 @@ table.tb-list th {
font-size: 18px; font-size: 18px;
} }
.txt-estimate2{
background-color: white;
color: #2A9B56;
width:190px;
padding: 10px;
border: 1px solid #2A9B56;
border-radius: 5px;
display: block;
text-align: center;
font-size: 18px;
}
.sticky-estimate { .sticky-estimate {
position: fixed; position: fixed;
right: 15px; right: 15px;

View File

@ -654,7 +654,7 @@ function printDiv(divName) {
<div class="container-inner""> <div class="container-inner"">
<p class="estimate-wrap"> <p class="estimate-wrap">
<span class="txt-estimate">FORECAST: <span id="estimatetotal"><?=number_format($d_estquantitySUM)?></span> L</span> <span class="txt-estimate2">FORECAST: <span id="estimatetotal"><?=number_format($d_estquantitySUM)?></span> L</span>
<span class="txt-estimate">ACTUAL: <span id="actualtotal"><?=number_format($d_quantitySUM)?></span> L</span> <span class="txt-estimate">ACTUAL: <span id="actualtotal"><?=number_format($d_quantitySUM)?></span> L</span>
</p> </p>
</div> </div>