38960-vm/includes/pages/insurance.php
2026-03-15 10:24:41 +00:00

342 lines
15 KiB
PHP

<?php
$search_name = $_GET['name'] ?? '';
$search_phone = $_GET['phone'] ?? '';
$page = isset($_GET['page']) && is_numeric($_GET['page']) ? (int)$_GET['page'] : 1;
$limit = 10;
$offset = ($page - 1) * $limit;
$where = "WHERE 1=1";
$params = [];
if ($search_name) {
$where .= " AND (name_en LIKE ? OR name_ar LIKE ?)";
$params[] = "%$search_name%";
$params[] = "%$search_name%";
}
if ($search_phone) {
$where .= " AND phone LIKE ?";
$params[] = "%$search_phone%";
}
// Count Total
$countQuery = "SELECT COUNT(*) FROM insurance_companies $where";
$stmt = $db->prepare($countQuery);
$stmt->execute($params);
$totalInsurance = $stmt->fetchColumn();
$totalPages = ceil($totalInsurance / $limit);
// Fetch Data
$query = "SELECT * FROM insurance_companies $where ORDER BY id DESC LIMIT $limit OFFSET $offset";
$stmt = $db->prepare($query);
$stmt->execute($params);
$insurance_companies = $stmt->fetchAll();
// --- AJAX HANDLER ---
if (isset($_GET['ajax_search'])) {
ob_start();
if (empty($insurance_companies)):
?>
<tr>
<td colspan="6" class="text-center py-5 text-muted">
<i class="bi bi-shield-check display-4 d-block mb-3"></i>
<?php echo __('no_insurance_companies_found'); ?>
</td>
</tr>
<?php else: ?>
<?php foreach ($insurance_companies as $ic): ?>
<tr>
<td class="px-4 text-secondary">#<?php echo $ic['id']; ?></td>
<td class="fw-semibold text-dark"><?php echo htmlspecialchars($ic['name_en']); ?></td>
<td class="text-secondary"><?php echo htmlspecialchars($ic['name_ar']); ?></td>
<td class="text-secondary"><?php echo htmlspecialchars($ic['email'] ?: '-'); ?></td>
<td class="text-secondary"><?php echo htmlspecialchars($ic['phone'] ?: '-'); ?></td>
<td class="text-end px-4 text-muted"><?php echo date('Y-m-d', strtotime($ic['created_at'])); ?></td>
</tr>
<?php endforeach; ?>
<?php endif;
$table_html = ob_get_clean();
ob_start();
if ($totalPages > 1): ?>
<div class="d-flex justify-content-between align-items-center p-3 border-top">
<div class="text-muted small">
<?php echo __('showing'); ?> <?php echo $offset + 1; ?> - <?php echo min($offset + $limit, $totalInsurance); ?> <?php echo __('of'); ?> <?php echo $totalInsurance; ?>
</div>
<nav aria-label="Page navigation">
<ul class="pagination pagination-sm mb-0">
<li class="page-item <?php echo $page <= 1 ? 'disabled' : ''; ?>">
<a class="page-link" href="#" data-page="<?php echo $page - 1; ?>" aria-label="Previous">
<span aria-hidden="true">&laquo;</span>
</a>
</li>
<?php
$range = 2;
$pages_to_show = [];
$pages_to_show[] = 1;
if ($totalPages > 1) { $pages_to_show[] = $totalPages; }
for ($i = $page - $range; $i <= $page + $range; $i++) {
if ($i > 1 && $i < $totalPages) { $pages_to_show[] = $i; }
}
$pages_to_show = array_unique($pages_to_show);
sort($pages_to_show);
$prev_page = 0;
foreach ($pages_to_show as $p):
if ($prev_page > 0 && $p > $prev_page + 1): ?>
<li class="page-item disabled"><span class="page-link">...</span></li>
<?php endif; ?>
<li class="page-item <?php echo $page == $p ? 'active' : ''; ?>">
<a class="page-link" href="#" data-page="<?php echo $p; ?>">
<?php echo $p; ?>
</a>
</li>
<?php
$prev_page = $p;
endforeach;
?>
<li class="page-item <?php echo $page >= $totalPages ? 'disabled' : ''; ?>">
<a class="page-link" href="#" data-page="<?php echo $page + 1; ?>" aria-label="Next">
<span aria-hidden="true">&raquo;</span>
</a>
</li>
</ul>
</nav>
</div>
<?php endif;
$pagination_html = ob_get_clean();
header('Content-Type: application/json');
echo json_encode(['html' => $table_html, 'pagination' => $pagination_html]);
exit;
}
?>
<div class="d-flex justify-content-between align-items-center mb-4">
<h3 class="fw-bold text-secondary"><?php echo __('insurance_companies'); ?></h3>
<button class="btn btn-primary shadow-sm" data-bs-toggle="modal" data-bs-target="#addInsuranceModal">
<i class="bi bi-plus-lg me-1"></i> <?php echo __('add_insurance'); ?>
</button>
</div>
<!-- Search Bar -->
<div class="card shadow-sm border-0 mb-4">
<div class="card-body">
<form id="insuranceSearchForm" class="row g-3" onsubmit="return false;">
<div class="col-md-5">
<div class="input-group">
<span class="input-group-text bg-light border-end-0 text-muted"><i class="bi bi-search"></i></span>
<input type="text" name="name" id="insSearchName" class="form-control bg-light border-start-0" placeholder="<?php echo __('name'); ?>" value="<?php echo htmlspecialchars($search_name); ?>">
</div>
</div>
<div class="col-md-5">
<div class="input-group">
<span class="input-group-text bg-light border-end-0 text-muted"><i class="bi bi-telephone"></i></span>
<input type="text" name="phone" id="insSearchPhone" class="form-control bg-light border-start-0" placeholder="<?php echo __('phone'); ?>" value="<?php echo htmlspecialchars($search_phone); ?>">
</div>
</div>
<div class="col-md-2">
<button type="button" class="btn btn-secondary w-100" onclick="fetchInsurance(1)"><?php echo __('search'); ?></button>
</div>
</form>
</div>
</div>
<div class="card shadow-sm border-0">
<div class="card-body p-0">
<div class="table-responsive">
<table class="table table-hover align-middle mb-0">
<thead class="table-light text-secondary">
<tr>
<th class="px-4 py-3">ID</th>
<th class="py-3"><?php echo __('name_en'); ?></th>
<th class="py-3"><?php echo __('name_ar'); ?></th>
<th class="py-3"><?php echo __('email'); ?></th>
<th class="py-3"><?php echo __('phone'); ?></th>
<th class="py-3 text-end px-4"><?php echo __('date'); ?></th>
</tr>
</thead>
<tbody id="insuranceTableBody">
<?php if (empty($insurance_companies)): ?>
<tr>
<td colspan="6" class="text-center py-5 text-muted">
<i class="bi bi-shield-check display-4 d-block mb-3"></i>
<?php echo __('no_insurance_companies_found'); ?>
</td>
</tr>
<?php else: ?>
<?php foreach ($insurance_companies as $ic): ?>
<tr>
<td class="px-4 text-secondary">#<?php echo $ic['id']; ?></td>
<td class="fw-semibold text-dark"><?php echo htmlspecialchars($ic['name_en']); ?></td>
<td class="text-secondary"><?php echo htmlspecialchars($ic['name_ar']); ?></td>
<td class="text-secondary"><?php echo htmlspecialchars($ic['email'] ?: '-'); ?></td>
<td class="text-secondary"><?php echo htmlspecialchars($ic['phone'] ?: '-'); ?></td>
<td class="text-end px-4 text-muted"><?php echo date('Y-m-d', strtotime($ic['created_at'])); ?></td>
</tr>
<?php endforeach; ?>
<?php endif; ?>
</tbody>
</table>
</div>
<!-- Pagination -->
<div id="insurancePagination">
<?php if ($totalPages > 1): ?>
<div class="d-flex justify-content-between align-items-center p-3 border-top">
<div class="text-muted small">
<?php echo __('showing'); ?> <?php echo $offset + 1; ?> - <?php echo min($offset + $limit, $totalInsurance); ?> <?php echo __('of'); ?> <?php echo $totalInsurance; ?>
</div>
<nav aria-label="Page navigation">
<ul class="pagination pagination-sm mb-0">
<li class="page-item <?php echo $page <= 1 ? 'disabled' : ''; ?>">
<a class="page-link" href="#" data-page="<?php echo $page - 1; ?>" aria-label="Previous">
<span aria-hidden="true">&laquo;</span>
</a>
</li>
<?php
$range = 2;
$pages_to_show = [];
$pages_to_show[] = 1;
if ($totalPages > 1) { $pages_to_show[] = $totalPages; }
for ($i = $page - $range; $i <= $page + $range; $i++) {
if ($i > 1 && $i < $totalPages) { $pages_to_show[] = $i; }
}
$pages_to_show = array_unique($pages_to_show);
sort($pages_to_show);
$prev_page = 0;
foreach ($pages_to_show as $p):
if ($prev_page > 0 && $p > $prev_page + 1): ?>
<li class="page-item disabled"><span class="page-link">...</span></li>
<?php endif; ?>
<li class="page-item <?php echo $page == $p ? 'active' : ''; ?>">
<a class="page-link" href="#" data-page="<?php echo $p; ?>">
<?php echo $p; ?>
</a>
</li>
<?php
$prev_page = $p;
endforeach;
?>
<li class="page-item <?php echo $page >= $totalPages ? 'disabled' : ''; ?>">
<a class="page-link" href="#" data-page="<?php echo $page + 1; ?>" aria-label="Next">
<span aria-hidden="true">&raquo;</span>
</a>
</li>
</ul>
</nav>
</div>
<?php endif; ?>
</div>
</div>
</div>
<!-- Add Insurance Modal -->
<div class="modal fade" id="addInsuranceModal" tabindex="-1" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content border-0 shadow">
<div class="modal-header bg-primary text-white">
<h5 class="modal-title"><?php echo __('add_insurance'); ?></h5>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form method="POST" action="">
<input type="hidden" name="action" value="add_insurance">
<div class="modal-body p-4">
<div class="mb-3">
<label class="form-label"><?php echo __('name_en'); ?> <span class="text-danger">*</span></label>
<input type="text" class="form-control" name="name_en" required>
</div>
<div class="mb-3">
<label class="form-label"><?php echo __('name_ar'); ?> <span class="text-danger">*</span></label>
<input type="text" class="form-control" name="name_ar" required>
</div>
<div class="mb-3">
<label class="form-label"><?php echo __('email'); ?></label>
<input type="email" class="form-control" name="email">
</div>
<div class="mb-3">
<label class="form-label"><?php echo __('phone'); ?></label>
<input type="text" class="form-control" name="phone">
</div>
<div class="mb-3">
<label class="form-label"><?php echo __('discount_percentage'); ?></label>
<div class="input-group">
<input type="number" class="form-control" name="discount_percentage" step="0.01" min="0" max="100">
<span class="input-group-text">%</span>
</div>
</div>
</div>
<div class="modal-footer bg-light">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal"><?php echo __('close'); ?></button>
<button type="submit" class="btn btn-primary"><?php echo __('save'); ?></button>
</div>
</form>
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const searchName = document.getElementById('insSearchName');
const searchPhone = document.getElementById('insSearchPhone');
const paginationContainer = document.getElementById('insurancePagination');
let timeout = null;
if (searchName) {
searchName.addEventListener('input', function() {
clearTimeout(timeout);
timeout = setTimeout(() => fetchInsurance(1), 300);
});
}
if (searchPhone) {
searchPhone.addEventListener('input', function() {
clearTimeout(timeout);
timeout = setTimeout(() => fetchInsurance(1), 300);
});
}
if (paginationContainer) {
paginationContainer.addEventListener('click', function(e) {
e.preventDefault();
const link = e.target.closest('.page-link');
if (link && !link.parentElement.classList.contains('disabled')) {
const page = link.getAttribute('data-page');
if (page) fetchInsurance(page);
}
});
}
});
function fetchInsurance(page) {
const name = document.getElementById('insSearchName').value;
const phone = document.getElementById('insSearchPhone').value;
const tableBody = document.getElementById('insuranceTableBody');
const paginationContainer = document.getElementById('insurancePagination');
if (tableBody) tableBody.style.opacity = '0.5';
const params = new URLSearchParams();
if (name) params.append('name', name);
if (phone) params.append('phone', phone);
params.append('page', page);
params.append('ajax_search', '1');
fetch('insurance.php?' + params.toString())
.then(response => response.json())
.then(data => {
if (tableBody) {
tableBody.innerHTML = data.html;
tableBody.style.opacity = '1';
}
if (paginationContainer) {
paginationContainer.innerHTML = data.pagination;
}
})
.catch(error => {
console.error('Error fetching insurance:', error);
if (tableBody) tableBody.style.opacity = '1';
});
}
</script>