Bảng giá sản phẩm

function renderTable(data) { const tableBody = document.getElementById('tableBody'); tableBody.innerHTML = ''; // Xóa dữ liệu cũ nếu có data.forEach(row => { const tr = document.createElement('tr'); // Giả sử file Excel của bạn có các cột: 'TenSP', 'GiaGoc', 'Nhom' tr.innerHTML = ` ${row.TenSP || ''} ${row.GiaGoc ? row.GiaGoc.toLocaleString('vi-VN') + 'đ' : 'Liên hệ'} ${row.Nhom || ''} `; tableBody.appendChild(tr); }); }