diff --git a/public_html/assets/css/table-style.css b/public_html/assets/css/table-style.css index 7f27d54..886d59e 100644 --- a/public_html/assets/css/table-style.css +++ b/public_html/assets/css/table-style.css @@ -84,7 +84,7 @@ .td-search #c_fullquantity_a, -.td-search #c_fullquantity_b]{ +.td-search #c_fullquantity_b{ border:1px solid #BCBBBB; border-radius: 3px; padding: 5px 10px; @@ -306,13 +306,13 @@ table.tb-list th { color: blue; font-size: 18px; cursor: pointer; - background-color::blue; + background-color:blue; } .icon-note:hover{ color: #5E5EFF; font-size: 18px; - background-color::blue; + background-color:blue; } /*-------------------------------------------------------------- # Pagination @@ -362,6 +362,9 @@ table.tb-list th { } .estimate-wrap{ float: right; + display: flex; + gap: 15px; /* 항목 사이 간격 */ + align-items: center; } /* .txt-estimate{ diff --git a/public_html/doc/order_driver.php b/public_html/doc/order_driver.php index 19a578e..23c2fbe 100644 --- a/public_html/doc/order_driver.php +++ b/public_html/doc/order_driver.php @@ -58,6 +58,7 @@ $total_count=$jdb->rQuery($query, "record query error"); $list_number = $total_count; +$d_estquantitySUM = 0; $d_quantitySUM = 0; $query = "SELECT * FROM tbl_daily @@ -123,6 +124,7 @@ foreach ($rows as $list) { $d_estquantitySTR = number_format(floatval($d_estquantity)); $d_quantitySTR = number_format(floatval($d_quantity)); + $d_estquantitySUM = $d_estquantitySUM + floatval($d_estquantitySTR); $d_quantitySUM = $d_quantitySUM + floatval($d_quantity); $c_uid = $d_customeruid; @@ -650,8 +652,11 @@ function printDiv(divName) { -
-

ACTUAL : L

+
+

+ FORECAST: L + ACTUAL: L +