598 lines
30 KiB
PHP
598 lines
30 KiB
PHP
<?php
|
||
// modules/holidays/views/detail.php
|
||
|
||
$id = isset($_GET['id']) ? (int)$_GET['id'] : 0;
|
||
|
||
if ($id === 0) {
|
||
echo "<div class='pf-section'><p>".tr('err_invalid_holiday_id')."</p></div>";
|
||
exit;
|
||
}
|
||
|
||
// Récupération des données du voyage
|
||
$stmt = $pdo->prepare("
|
||
SELECT h.*,
|
||
v.name as vehicle_name,
|
||
v.consumption as vehicle_consumption,
|
||
(COALESCE(h.budget_food, 0) + COALESCE(h.budget_extra, 0) + COALESCE((SELECT SUM(amount) FROM pf_holidays_items WHERE holiday_id = h.id), 0)) as total_cost,
|
||
(SELECT COALESCE(SUM(amount), 0) FROM pf_holidays_items WHERE holiday_id = h.id AND is_paid = 1) as total_paid,
|
||
(SELECT COALESCE(SUM(amount), 0) FROM pf_savings WHERE holiday_id = h.id) as total_saved,
|
||
(SELECT COALESCE(SUM(amount), 0) FROM pf_holidays_items WHERE holiday_id = h.id AND (expense_context = 'transit' OR (category = 'transport' AND (name LIKE '%Essence%' OR name LIKE '%Carburant%')))) as total_fuel,
|
||
(SELECT COALESCE(SUM(amount), 0) FROM pf_holidays_items WHERE holiday_id = h.id AND category = 'transport' AND (name LIKE '%Péage%' OR name LIKE '%Peage%')) as total_tolls
|
||
FROM pf_holidays h
|
||
LEFT JOIN pf_vehicles v ON h.vehicle_id = v.id
|
||
WHERE h.id = ?
|
||
");
|
||
|
||
$stmt->execute([$id]);
|
||
$holiday = $stmt->fetch(PDO::FETCH_ASSOC);
|
||
|
||
// Récupération des items (étapes et frais généraux)
|
||
$stmtItems = $pdo->prepare("SELECT * FROM pf_holidays_items WHERE holiday_id = ? ORDER BY sort_order ASC, id ASC");
|
||
$stmtItems->execute([$id]);
|
||
$items = $stmtItems->fetchAll(PDO::FETCH_ASSOC);
|
||
|
||
// Favoris pour le géocodage
|
||
$stmtFav = $pdo->query("SELECT content FROM pf_notes WHERE note_type = 'holiday_favorites'");
|
||
$favorites = json_decode($stmtFav->fetchColumn() ?: '[]', true);
|
||
|
||
$steps = [];
|
||
$generalItems = [];
|
||
|
||
foreach ($items as $it) {
|
||
if ($it['location_name'] !== null) {
|
||
$orderKey = $it['sort_order'];
|
||
if (!isset($steps[$orderKey])) {
|
||
$steps[$orderKey] = [
|
||
'location_name' => $it['location_name'],
|
||
'lat' => (float)$it['lat'],
|
||
'lng' => (float)$it['lng'],
|
||
'sort_order' => $it['sort_order'],
|
||
'step_start_date' => $it['step_start_date'],
|
||
'step_end_date' => $it['step_end_date'],
|
||
'step_type' => $it['step_type'] ?? 'stop',
|
||
'total_amount' => 0,
|
||
'items' => []
|
||
];
|
||
}
|
||
$steps[$orderKey]['items'][] = $it;
|
||
$steps[$orderKey]['total_amount'] += (float)$it['amount'];
|
||
} else {
|
||
$generalItems[] = $it;
|
||
}
|
||
}
|
||
ksort($steps);
|
||
$mapPoints = array_values($steps);
|
||
|
||
// Affichage de la date
|
||
$dateDisplay = htmlspecialchars($holiday['period_hint'] ?? '');
|
||
if (empty($dateDisplay) && $holiday['start_date']) {
|
||
// 💡 Format Jour/Mois uniquement
|
||
$dateDisplay = date('d/m', strtotime($holiday['start_date']));
|
||
if ($holiday['end_date']) $dateDisplay .= ' → ' . date('d/m', strtotime($holiday['end_date']));
|
||
}
|
||
|
||
$cost = (float)$holiday['total_cost'];
|
||
$paid = (float)$holiday['total_paid'];
|
||
$saved = (float)$holiday['total_saved'];
|
||
$leftToPay = max(0, $cost - $paid);
|
||
$pctPaid = $cost > 0 ? min(100, ($paid / $cost) * 100) : 0;
|
||
$pctSaved = $cost > 0 ? min(100 - $pctPaid, ($saved / $cost) * 100) : 0;
|
||
|
||
// Image de fond (API Pixabay ou fallback par défaut)
|
||
$bgImage = !empty($holiday['image_url']) ? htmlspecialchars($holiday['image_url']) : '/modules/home/assets/img/background.jpg';
|
||
?>
|
||
|
||
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
|
||
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
|
||
|
||
<div class="pf-holidays-detail">
|
||
|
||
<!-- Scripts JSON invisibles -->
|
||
<script id="holidayDataJson" type="application/json">
|
||
<?= json_encode(['main' => $holiday, 'items' => $generalItems], JSON_HEX_TAG | JSON_HEX_APOS | JSON_HEX_QUOT | JSON_HEX_AMP) ?>
|
||
</script>
|
||
|
||
<!-- 1. HERO HEADER IMMERSIF -->
|
||
<div class="hol-hero-banner">
|
||
<img src="<?= $bgImage ?>" class="hol-hero-bg-img" alt="">
|
||
<div class="hol-hero-overlay"></div>
|
||
<div class="hol-hero-content">
|
||
|
||
<div class="hol-hero-top">
|
||
<a href="?tab=list" class="hol-hero-back-link">◀ <?= tr('btn_back') ?></a>
|
||
<span class="hol-hero-status-badge"><?= tr('hdl_status_' . $holiday['status']) ?></span>
|
||
</div>
|
||
|
||
<h1 class="hol-hero-title"><?= htmlspecialchars($holiday['title']) ?></h1>
|
||
<div class="hol-hero-date-badge">
|
||
🗓️ <?= $dateDisplay ?>
|
||
</div>
|
||
|
||
<!-- LES PILLS (Indicateurs Route & Quotidien) -->
|
||
<div class="hol-hero-pills">
|
||
|
||
<!-- PILL ROUTE (Masqué par défaut, géré par OSRM) -->
|
||
<span id="block_total_distance" class="hol-pill-block hol-hidden">
|
||
<span class="hol-pill">
|
||
🛣️ <span id="global_total_distance">0</span> km (⏱️ <span id="global_total_duration">0h00</span>)
|
||
</span>
|
||
</span>
|
||
|
||
<!-- PILL PÉAGES -->
|
||
<span class="hol-pill">
|
||
💳 <?= number_format($holiday['total_tolls'], 0) ?> €
|
||
</span>
|
||
|
||
<!-- PILL ESSENCE (Avec Edit + Oeil) -->
|
||
<span class="hol-pill">
|
||
⛽ <span id="global_fuel_cost"><?= number_format($holiday['total_fuel'], 0) ?></span> €
|
||
<span onclick="updateFuelPrice()" class="hol-pill-action" title="Modifier le prix de l'essence">(<span id="display_fuel_price">1.85</span>€/L) ✏️</span>
|
||
<?php if ($holiday['total_fuel'] > 0 || $holiday['total_tolls'] > 0): ?>
|
||
<span onclick="openTransitModal()" class="hol-pill-action" title="Voir le détail des trajets">👁️</span>
|
||
<?php endif; ?>
|
||
</span>
|
||
|
||
<!-- PILL BURGER (Food) -->
|
||
<span class="hol-pill">
|
||
🍔 <?= number_format($holiday['budget_food'], 0) ?> €
|
||
</span>
|
||
|
||
<!-- PILL CADEAU (Extras) -->
|
||
<span class="hol-pill">
|
||
🎁 <?= number_format($holiday['budget_extra'], 0) ?> €
|
||
</span>
|
||
</div>
|
||
|
||
<!-- FINANCES GLOBALES -->
|
||
<div class="hol-hero-finances">
|
||
<div class="hol-finance-block">
|
||
<div class="hol-finance-label"><?= tr('hdl_total_budget') ?></div>
|
||
<div class="hol-finance-value"><?= number_format($cost, 0, ',', ' ') ?> €</div>
|
||
</div>
|
||
<div class="hol-finance-block hol-finance-right">
|
||
<div class="hol-finance-label"><?= tr('hdl_left_to_pay') ?></div>
|
||
<div class="hol-finance-value hol-finance-value-due"><?= number_format($leftToPay, 0, ',', ' ') ?> €</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Barre de progression -->
|
||
<div class="hol-progress-bar">
|
||
<div class="hol-progress-paid" style="width: <?= $pctPaid ?>%;"></div>
|
||
<div class="hol-progress-saved" style="width: <?= $pctSaved ?>%;"></div>
|
||
</div>
|
||
<div class="hol-hero-progress-labels">
|
||
<span class="hol-label-paid-text">✓ <?= tr('hdl_paid') ?> : <?= number_format($paid, 0, ',', ' ') ?> €</span>
|
||
<span class="hol-label-saved-text">💼 <?= tr('hdl_saved') ?> : <?= number_format($saved, 0, ',', ' ') ?> €</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 2. BARRE D'ACTIONS RAPIDES -->
|
||
<div class="hol-quick-actions-bar">
|
||
<button type="button" class="pf-btn btn-secondary pf-btn-small hol-quick-action-btn" onclick="toggleTripMap()">
|
||
🗺️ Carte
|
||
</button>
|
||
<button type="button" class="pf-btn btn-secondary pf-btn-small hol-quick-action-btn" onclick="openGlobalPlanningModal()">
|
||
📅 Planning
|
||
</button>
|
||
<button type="button" class="pf-btn btn-secondary pf-btn-small hol-quick-action-btn" onclick="generateTravelBook()">
|
||
📖 PDF
|
||
</button>
|
||
<button type="button" class="pf-btn btn-secondary pf-btn-small hol-quick-action-btn" onclick="editHoliday(JSON.parse(document.getElementById('holidayDataJson').textContent))">
|
||
⚙️ Modifier
|
||
</button>
|
||
</div>
|
||
|
||
<!-- 3. LA CARTE (Masquée par défaut) -->
|
||
<div id="tripMapWrapper" class="hol-map-wrapper hol-hidden">
|
||
<div class="hol-panel-header hol-map-panel-header">
|
||
<h3 class="hol-map-title">Itinéraire</h3>
|
||
<div class="hol-map-legend">
|
||
<span class="hol-legend-item"><span class="hol-legend-color aller"></span> Aller</span>
|
||
<span class="hol-legend-item"><span class="hol-legend-color retour"></span> Retour</span>
|
||
</div>
|
||
</div>
|
||
<!-- IMPORTANT : On garde l'ID tripMap pour que Leaflet (OSRM) fonctionne ! -->
|
||
<div id="tripMap" class="hol-map-canvas"></div>
|
||
</div>
|
||
|
||
<!-- 4. TIMELINE (Carnet de route Pleine Largeur) -->
|
||
<div class="hol-panel hol-panel-timeline">
|
||
<div class="hol-panel-header hol-timeline-header">
|
||
<h3><?= tr('hdl_step_details') ?></h3>
|
||
<button class="pf-btn pf-btn-small" onclick="openCheckpointModal('add')">+ <?= tr('hdl_btn_add_step') ?></button>
|
||
</div>
|
||
|
||
<div class="hol-panel-body">
|
||
<?php if (empty($steps)): ?>
|
||
<p class="hol-empty-steps-text"><?= tr('hdl_no_steps') ?></p>
|
||
<?php else: ?>
|
||
|
||
<?php foreach ($steps as $step): ?>
|
||
<div id="step-card-<?= $step['sort_order'] ?>" class="hol-checkpoint hol-checkpoint-draggable" draggable="true" data-location="<?= htmlspecialchars($step['location_name']) ?>">
|
||
<div class="hol-step-header">
|
||
|
||
<div class="hol-step-row-top">
|
||
<?php
|
||
$stepIcon = '📍';
|
||
if ($step['step_type'] === 'origin') {
|
||
$stepIcon = '🛫';
|
||
} elseif ($step['step_type'] === 'destination') {
|
||
$stepIcon = '🛬';
|
||
}
|
||
$isReturn = ($holiday['return_step_id'] !== null && $holiday['return_step_id'] == $step['sort_order']);
|
||
?>
|
||
<div class="hol-step-icon hol-step-icon-<?= htmlspecialchars($step['step_type']) ?>">
|
||
<?= $stepIcon ?>
|
||
</div>
|
||
|
||
<div class="hol-step-title" onclick="panMapTo(<?= $step['lat'] ?>, <?= $step['lng'] ?>)" title="<?= htmlspecialchars($step['location_name']) ?>">
|
||
<?= htmlspecialchars($step['location_name']) ?>
|
||
</div>
|
||
|
||
<div class="hol-step-controls">
|
||
<span class="desktop-only hol-drag-handle">⣿</span>
|
||
<div class="mobile-only hol-step-arrows">
|
||
<button type="button" onclick="moveStepMobile(this, -1)">▲</button>
|
||
<button type="button" onclick="moveStepMobile(this, 1)">▼</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="hol-step-row-bottom">
|
||
<div class="hol-step-meta">
|
||
<?php if ($isReturn): ?>
|
||
<span class="hol-tag-return">🏁 Retour</span>
|
||
<?php endif; ?>
|
||
|
||
<?php if (!empty($step['step_start_date']) && !empty($step['step_end_date'])): ?>
|
||
<span class="hol-step-date">
|
||
<?= date('d/m', strtotime($step['step_start_date'])) ?> ➔ <?= date('d/m', strtotime($step['step_end_date'])) ?>
|
||
</span>
|
||
<div class="hol-weather-info"></div>
|
||
<?php endif; ?>
|
||
</div>
|
||
|
||
<div class="hol-step-actions">
|
||
<span class="hol-step-price"><?= number_format($step['total_amount'], 2, ',', ' ') ?> €</span>
|
||
|
||
<button onclick="openGpsModal(<?= $step['lat'] ?>, <?= $step['lng'] ?>)"
|
||
class="btn-icon-small hol-btn-action-icon"
|
||
title="Y aller avec le GPS">
|
||
🧭
|
||
</button>
|
||
<button onclick="openDocsModal(<?= $step['sort_order'] ?>)" class="btn-icon-small hol-btn-action-icon" title="Documents & Billets">📎</button>
|
||
|
||
<button onclick='openCheckpointModal("edit", <?= htmlspecialchars(json_encode($step), ENT_QUOTES, "UTF-8") ?>)' class="btn-icon-small hol-btn-action-icon" title="<?= tr('btn_edit') ?>">✏️</button>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
<div class="hol-cp-body">
|
||
<?php
|
||
$visibleItemsCount = 0;
|
||
foreach ($step['items'] as $it):
|
||
if ($it['name'] === 'PF_TECHNICAL_POINT') continue;
|
||
$visibleItemsCount++;
|
||
$icon = match($it['category']) { 'transport' => '🚗', 'accommodation' => '🏨', 'activity' => '🎫', default => '🏷️' };
|
||
|
||
// On vérifie si l'activité possède ses propres coordonnées GPS
|
||
$hasCustomGps = (!empty($it['lat']) && !empty($it['lng']) && ((float)$it['lat'] !== (float)$step['lat'] || (float)$it['lng'] !== (float)$step['lng']));
|
||
?>
|
||
<div class="hol-expense-wrapper">
|
||
<div class="hol-expense-main">
|
||
<span class="hol-expense-name">
|
||
<?= $icon ?>
|
||
<?php if ($hasCustomGps): ?>
|
||
<span onclick="openGpsModal(<?= $it['lat'] ?>, <?= $it['lng'] ?>)" class="hol-custom-gps-link" title="Y aller (GPS)">
|
||
<?= htmlspecialchars($it['name']) ?>
|
||
</span>
|
||
<?php else: ?>
|
||
<?= htmlspecialchars($it['name']) ?>
|
||
<?php endif; ?>
|
||
</span>
|
||
<span>
|
||
<strong class="hol-expense-amount"><?= number_format($it['amount'], 2, ',', ' ') ?> €</strong>
|
||
<span class="<?= $it['is_paid'] ? 'status-paid' : 'status-pending' ?>" title="<?= $it['is_paid'] ? tr('hdl_paid') : tr('hdl_to_pay') ?>"><?= $it['is_paid'] ? '✓' : '⏳' ?></span>
|
||
</span>
|
||
</div>
|
||
<?php if (!empty($it['notes'])): ?>
|
||
<div class="hol-expense-note">
|
||
<?= htmlspecialchars($it['notes']) ?>
|
||
</div>
|
||
<?php endif; ?>
|
||
</div>
|
||
<?php endforeach; ?>
|
||
|
||
<?php if ($visibleItemsCount === 0): ?>
|
||
<div class="hol-empty-step">📍 <?= tr('hdl_passing_point') ?></div>
|
||
<?php endif; ?>
|
||
</div>
|
||
</div>
|
||
<?php endforeach; ?>
|
||
<?php endif; ?>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="pf-card hol-notes-card">
|
||
<h2 class="pf-card-title">📝 <?= tr('hdl_label_notes') ?></h2>
|
||
<div class="pf-card-body">
|
||
<textarea id="holidayGlobalNotes" class="pf-input hol-notes-textarea" rows="6" placeholder="<?= tr('hdl_ph_notes') ?>"><?= htmlspecialchars($holiday['notes'] ?? '') ?></textarea>
|
||
<div class="hol-notes-actions">
|
||
<button id="btnSaveHolidayNote" class="pf-btn" onclick="saveHolidayGlobalNote(<?= (int)$_GET['id'] ?>)">
|
||
💾 <?= tr('btn_save') ?>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
|
||
<div id="checkpointModal" class="pf-modal">
|
||
<div class="pf-modal-content hol-modal-cp">
|
||
|
||
<!-- HEADER MODALE -->
|
||
<div class="hol-modal-header">
|
||
<h3 id="cpModalTitle" class="hol-modal-title">📍 Ajouter une étape</h3>
|
||
<button type="button" onclick="closeCheckpointModal()" class="pf-modal-close">×</button>
|
||
</div>
|
||
|
||
<!-- SYSTÈME D'ONGLETS -->
|
||
<div class="hol-modal-tabs">
|
||
<button type="button" id="tabBtnInfo" class="hol-modal-tab-btn active" onclick="switchCpTab('info')">📍 Infos de l'étape</button>
|
||
<button type="button" id="tabBtnProg" class="hol-modal-tab-btn" onclick="switchCpTab('prog')">🎟️ Programme & Frais</button>
|
||
</div>
|
||
|
||
<!-- DÉBUT DU FORMULAIRE UNIQUE -->
|
||
<form action="/modules/holidays/includes/api/save_checkpoint.php" method="POST" id="formCheckpoint" class="hol-modal-form">
|
||
<input type="hidden" name="holiday_id" value="<?= $id ?>">
|
||
<input type="hidden" name="old_location_name" id="cp_old_name">
|
||
<input type="hidden" name="lat" id="cp_lat">
|
||
<input type="hidden" name="lng" id="cp_lng">
|
||
<input type="hidden" name="old_sort_order" id="cp_old_sort_order">
|
||
|
||
<!-- ONGLET 1 : INFOS GÉNÉRIQUES -->
|
||
<div id="cpTabInfo" class="hol-tab-content">
|
||
|
||
<div id="cpSearchBlock" class="hol-search-block">
|
||
<label class="pf-label hol-search-label">🔍 Chercher un lieu (Autocomplétion)</label>
|
||
<div class="hol-search-input-group">
|
||
<input type="text" id="searchPlaceInput" class="pf-input" placeholder="Ville, hôtel, adresse..." onkeypress="if(event.key === 'Enter') { searchPlace(); return false; }">
|
||
<button type="button" class="pf-btn btn-secondary hol-search-btn" onclick="searchPlace()">Go</button>
|
||
</div>
|
||
<div id="searchResults" class="hol-search-results"></div>
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label class="pf-label">Nom de l'étape</label>
|
||
<input type="text" name="location_name" id="cp_name" class="pf-input hol-input-highlight" required>
|
||
</div>
|
||
|
||
<!-- DATES COMPACTES AVEC FLATPICKR -->
|
||
<div class="form-group hol-date-range-block">
|
||
<label class="pf-label" id="lbl_date_range">📅 Période de l'étape (Arrivée ➔ Départ)</label>
|
||
<input type="text" id="cp_date_range" class="pf-input hol-date-picker-input" placeholder="Sélectionnez les dates..." readonly>
|
||
<!-- Les vraies valeurs envoyées au serveur -->
|
||
<input type="hidden" name="step_start_date" id="cp_start_date">
|
||
<input type="hidden" name="step_end_date" id="cp_end_date">
|
||
</div>
|
||
|
||
<div class="form-group" id="cp_insert_group">
|
||
<label class="pf-label">🔽 Où placer cette étape ?</label>
|
||
<select name="insert_after" id="cp_insert_after" class="pf-input" onchange="injectDynamicDates(this)">
|
||
<!-- Rempli dynamiquement en JS avec Noms + Dates -->
|
||
</select>
|
||
</div>
|
||
|
||
<div class="hol-form-row">
|
||
<div class="form-group hol-flex-1">
|
||
<label class="pf-label">📍 Type d'étape</label>
|
||
<select name="step_type" id="cp_step_type" class="pf-input" onchange="toggleStepDates(this.value)">
|
||
<option value="origin">DÉPART</option>
|
||
<option value="stop" selected>SÉJOUR</option>
|
||
<option value="destination">ARRIVÉE FINALE</option>
|
||
</select>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="hol-checkbox-group">
|
||
<label class="hol-checkbox-label">
|
||
<input type="checkbox" name="set_as_return" id="cp_set_as_return" value="1" class="hol-checkbox-return">
|
||
🏁 Définir comme étape de retour (Tracé Orange)
|
||
</label>
|
||
<label class="hol-checkbox-label">
|
||
<input type="checkbox" name="save_favorite" value="1" class="hol-checkbox">
|
||
⭐ Sauvegarder dans mes favoris
|
||
</label>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- ONGLET 2 : PROGRAMME ET DEPENSES -->
|
||
<div id="cpTabProg" class="hol-tab-content hol-hidden">
|
||
<div class="hol-prog-header">
|
||
<label class="pf-label">🎟️ Liste des activités & frais</label>
|
||
<button type="button" class="pf-btn btn-secondary pf-btn-small" onclick="addCpExpenseLine()">+ Ajouter</button>
|
||
</div>
|
||
|
||
<div id="cpExpensesContainer" class="hol-expenses-container"></div>
|
||
</div>
|
||
|
||
<!-- FOOTER FIXE -->
|
||
<div class="modal-footer">
|
||
<button type="button" onclick="deleteCheckpoint()" id="btnDeleteCp" class="pf-btn btn-secondary hol-btn-delete">Supprimer</button>
|
||
<button type="button" onclick="closeCheckpointModal()" class="pf-btn btn-secondary"><?= tr('btn_cancel') ?></button>
|
||
<button type="submit" class="pf-btn">💾 <?= tr('btn_save') ?></button>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
</div>
|
||
|
||
<div id="planningModal" class="pf-modal">
|
||
<div class="pf-modal-content hol-modal-planning">
|
||
<div class="hol-modal-header">
|
||
<h3 id="planningModalTitle" class="hol-modal-title">📅 Planning Global</h3>
|
||
<button type="button" onclick="closePlanningModal()" class="pf-modal-close">×</button>
|
||
</div>
|
||
|
||
<!-- Conteneur Injecté en JS -->
|
||
<div id="planningContainer" class="hol-planning-container"></div>
|
||
|
||
<div class="modal-footer">
|
||
<button type="button" onclick="closePlanningModal()" class="pf-btn btn-secondary"><?= tr('btn_close') ?></button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div id="transitModal" class="pf-modal">
|
||
<div class="pf-modal-content hol-modal-sm">
|
||
<div class="hol-modal-header">
|
||
<h3 class="hol-modal-title">🛣️ Détail des trajets</h3>
|
||
<button type="button" onclick="closeTransitModal()" class="pf-modal-close">×</button>
|
||
</div>
|
||
<div id="transitDetailsContainer" class="hol-transit-container">
|
||
<p class="hol-empty-text">Calcul en cours...</p>
|
||
</div>
|
||
<div class="modal-footer">
|
||
<button type="button" onclick="closeTransitModal()" class="pf-btn btn-secondary"><?= tr('btn_close') ?></button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div id="gpsModal" class="pf-modal">
|
||
<div class="pf-modal-content hol-modal-gps">
|
||
<div class="hol-modal-header">
|
||
<h3 class="hol-modal-title">🧭 Y aller avec...</h3>
|
||
<button type="button" onclick="closeGpsModal()" class="pf-modal-close">×</button>
|
||
</div>
|
||
|
||
<div class="hol-gps-buttons">
|
||
<button onclick="launchGpsApp('waze')" class="pf-btn btn-secondary hol-gps-btn">
|
||
<img src="https://cdn.simpleicons.org/waze/05C8F0" alt="Waze" class="hol-gps-icon">
|
||
Waze
|
||
</button>
|
||
|
||
<button onclick="launchGpsApp('gmaps')" class="pf-btn btn-secondary hol-gps-btn">
|
||
<img src="https://cdn.simpleicons.org/googlemaps" alt="Google Maps" class="hol-gps-icon">
|
||
Google Maps
|
||
</button>
|
||
|
||
<button onclick="launchGpsApp('amaps')" class="pf-btn btn-secondary hol-gps-btn">
|
||
<img src="https://cdn.simpleicons.org/apple/000000" alt="Apple Maps" class="hol-gps-icon">
|
||
Apple Maps
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div id="docsModal" class="pf-modal">
|
||
<div class="pf-modal-content hol-modal-docs">
|
||
<div class="hol-modal-header">
|
||
<h3 class="hol-modal-title">📎 Porte-documents</h3>
|
||
<button type="button" onclick="closeDocsModal()" class="pf-modal-close">×</button>
|
||
</div>
|
||
|
||
<div class="hol-docs-dropzone">
|
||
<p class="hol-docs-hint">Ajoutez vos billets, réservations ou PDFs pour cette étape.</p>
|
||
|
||
<input type="file" id="docFileInput" class="hol-hidden" accept=".pdf,.png,.jpg,.jpeg" onchange="handleFileUpload(this)">
|
||
|
||
<button type="button" class="pf-btn btn-primary hol-docs-select-btn" onclick="document.getElementById('docFileInput').click()">
|
||
+ Sélectionner un fichier
|
||
</button>
|
||
<div id="uploadStatus" class="hol-upload-status"></div>
|
||
</div>
|
||
|
||
<div id="docsListContainer" class="hol-docs-list">
|
||
<p class="hol-empty-text">Aucun document pour cette étape.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<?php include __DIR__ . '/modal.php'; ?>
|
||
|
||
<script>
|
||
// --- 1. SÉCURISATION TRADUCTIONS ET VARIABLES ---
|
||
window.MAP_POINTS = <?= json_encode($mapPoints ?? []) ?>;
|
||
window.appLang = document.documentElement.lang === "ca" ? "ca-ES" : "fr-FR";
|
||
|
||
window.I18N = {
|
||
...(window.I18N || {}),
|
||
'hdl_js_search_loading': "<?= tr('hdl_js_search_loading') ?>",
|
||
'hdl_js_no_result': "<?= tr('hdl_js_no_result') ?>",
|
||
'hdl_js_confirm_del_trip': "<?= tr('hdl_js_confirm_del_trip') ?>",
|
||
'hdl_js_confirm_del_step': "<?= tr('hdl_js_confirm_del_step') ?>",
|
||
'hdl_js_step_label': "<?= tr('hdl_js_step_label') ?>",
|
||
'hdl_js_ph_expense_name': "<?= tr('hdl_js_ph_expense_name') ?>",
|
||
'hdl_js_delete_line': "<?= tr('btn_delete') ?>",
|
||
'hdl_planning_title': "<?= tr('hdl_planning_title') ?>",
|
||
'hdl_to_place': "<?= tr('hdl_to_place') ?>",
|
||
'hdl_js_missing_dates_title': "<?= tr('hdl_js_missing_dates_title') ?>",
|
||
'hdl_js_missing_dates_msg': "<?= tr('hdl_js_missing_dates_msg') ?>",
|
||
'hdl_modal_title': "<?= tr('hdl_modal_title') ?>",
|
||
'hdl_js_edit_step': "<?= tr('hdl_js_edit_step') ?>",
|
||
'hdl_ph_notes': "<?= tr('hdl_ph_notes') ?>",
|
||
'hdl_btn_add_step': "<?= tr('hdl_btn_add_step') ?>",
|
||
'hdl_quick_edit_title': "<?= tr('hdl_quick_edit_title') ?>",
|
||
'hdl_paid': "<?= tr('hdl_paid') ?>",
|
||
|
||
// --- NOUVELLES CLÉS MÉTÉO ICI ---
|
||
'weather_sunny': "<?= tr('weather_sunny') ?>",
|
||
'weather_cloudy': "<?= tr('weather_cloudy') ?>",
|
||
'weather_rainy': "<?= tr('weather_rainy') ?>",
|
||
'weather_snowy': "<?= tr('weather_snowy') ?>",
|
||
'weather_forecast': "<?= tr('weather_forecast') ?>",
|
||
'weather_historical': "<?= tr('weather_historical') ?>"
|
||
};
|
||
|
||
// Fallback de sécurité pour s'assurer que les modales peuvent toujours se fermer
|
||
window.closeCheckpointModal = window.closeCheckpointModal || function() {
|
||
const modal = document.getElementById('checkpointModal');
|
||
if(modal) modal.style.display = 'none';
|
||
document.body.classList.remove('no-scroll');
|
||
};
|
||
|
||
window.closePlanningModal = window.closePlanningModal || function() {
|
||
const modal = document.getElementById('planningModal');
|
||
if(modal) modal.style.display = 'none';
|
||
document.body.classList.remove('no-scroll');
|
||
};
|
||
|
||
// 1. On charge le prix depuis le navigateur (ou 1.85 par défaut)
|
||
const savedFuelPrice = localStorage.getItem('holidays_fuel_price') || 1.85;
|
||
window.FUEL_PRICE = parseFloat(savedFuelPrice);
|
||
|
||
// 2. On met à jour le texte du petit bouton "✏️" en haut de la page
|
||
const displayFuelEl = document.getElementById('display_fuel_price');
|
||
if (displayFuelEl) displayFuelEl.innerText = window.FUEL_PRICE.toFixed(2);
|
||
|
||
// 3. Variables voiture et retour
|
||
window.VEHICLE_CONSUMPTION = <?= !empty($holiday['vehicle_consumption']) ? (float)$holiday['vehicle_consumption'] : 7 ?>;
|
||
window.GLOBAL_RETURN_STEP_ID = <?= $holiday['return_step_id'] !== null ? $holiday['return_step_id'] : 'null' ?>;
|
||
|
||
// --- GESTION DES ONGLETS LOGISTIQUES ---
|
||
window.switchHolTab = function(tabId, btn) {
|
||
document.querySelectorAll('.hol-tab-btn').forEach(b => b.classList.remove('active'));
|
||
document.querySelectorAll('.hol-tab-content').forEach(c => c.style.display = 'none');
|
||
btn.classList.add('active');
|
||
document.getElementById(tabId).style.display = 'block';
|
||
};
|
||
|
||
// --- BASCULE DE LA CARTE ---
|
||
window.toggleTripMap = function() {
|
||
const mapWrapper = document.getElementById('tripMapWrapper');
|
||
if (mapWrapper.classList.contains('hol-hidden')) {
|
||
mapWrapper.classList.remove('hol-hidden');
|
||
if (typeof detailMap !== 'undefined' && detailMap !== null) {
|
||
setTimeout(() => detailMap.invalidateSize(), 100);
|
||
}
|
||
} else {
|
||
mapWrapper.classList.add('hol-hidden');
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.10.1/html2pdf.bundle.min.js"></script>
|
||
|
||
<?php include __DIR__ . '/pdf_template.php'; ?>
|