March 18 2026: Update time attendance record page multiple employees filtering

This commit is contained in:
2026-03-18 12:06:18 -04:00
parent abcbf3b97a
commit 63b40353f3
3 changed files with 581 additions and 151 deletions
+144 -32
View File
@@ -5404,6 +5404,89 @@ def save_manual_attendance():
return redirect(url_for('add_manual_attendance')) return redirect(url_for('add_manual_attendance'))
@app.route('/api/time-attendance/locations')
@login_required
def time_attendance_locations_api():
"""Return distinct location_name values from time_attendance, optionally filtered by project_id.
Used by the time attendance records page to dynamically scope the location dropdown."""
try:
project_id = request.args.get('project_id', '').strip()
if project_id:
try:
project_id_int = int(project_id)
except (ValueError, TypeError):
return jsonify({'success': False, 'error': 'Invalid project_id'}), 400
result = db.session.execute(text("""
SELECT DISTINCT location_name
FROM time_attendance
WHERE project_id = :project_id
AND location_name IS NOT NULL
ORDER BY location_name
"""), {'project_id': project_id_int})
else:
result = db.session.execute(text("""
SELECT DISTINCT location_name
FROM time_attendance
WHERE location_name IS NOT NULL
ORDER BY location_name
"""))
locations = [row[0] for row in result.fetchall()]
logger_handler.logger.info(
f"User {session.get('username', 'unknown')} fetched time attendance locations"
+ (f" for project_id={project_id}" if project_id else " (all projects)")
)
return jsonify({'success': True, 'locations': locations})
except Exception as e:
logger_handler.logger.error(f"Error in time_attendance_locations_api: {e}")
return jsonify({'success': False, 'error': str(e)}), 500
@app.route('/api/attendance/locations')
@login_required
def attendance_locations_api():
"""Return distinct location_name values from attendance_data, optionally filtered by project_id.
Used by the attendance report page to dynamically scope the location dropdown when a project is selected."""
try:
project_id = request.args.get('project_id', '').strip()
if project_id:
try:
project_id_int = int(project_id)
except (ValueError, TypeError):
return jsonify({'success': False, 'error': 'Invalid project_id'}), 400
result = db.session.execute(text("""
SELECT DISTINCT ad.location_name
FROM attendance_data ad
INNER JOIN qr_codes qc ON ad.qr_code_id = qc.id
WHERE qc.project_id = :project_id
AND ad.location_name IS NOT NULL
ORDER BY ad.location_name
"""), {'project_id': project_id_int})
else:
result = db.session.execute(text("""
SELECT DISTINCT location_name
FROM attendance_data
WHERE location_name IS NOT NULL
ORDER BY location_name
"""))
locations = [row[0] for row in result.fetchall()]
logger_handler.logger.info(
f"User {session.get('username', 'unknown')} fetched attendance locations"
+ (f" for project_id={project_id}" if project_id else " (all projects)")
)
return jsonify({'success': True, 'locations': locations})
except Exception as e:
logger_handler.logger.error(f"Error in attendance_locations_api: {e}")
return jsonify({'success': False, 'error': str(e)}), 500
@app.route('/api/search_employees') @app.route('/api/search_employees')
@login_required @login_required
def search_employees_api(): def search_employees_api():
@@ -9230,13 +9313,14 @@ def export_time_attendance():
from models.time_attendance import TimeAttendance from models.time_attendance import TimeAttendance
query = TimeAttendance.query query = TimeAttendance.query
# Apply filters # Apply filters — employee_id supports comma-separated multi-employee values
if employee_filter: if employee_filter:
# Include all SP/PW/PT work-type variants of the base employee ID so that employee_ids_export = [e.strip() for e in employee_filter.split(',') if e.strip()]
# cross-type pairing (e.g. regular IN + SP OUT) works correctly in the export.
from working_hours_calculator import parse_employee_id_for_work_type as _parse_wt from working_hours_calculator import parse_employee_id_for_work_type as _parse_wt
_base_emp_id, _ = _parse_wt(str(employee_filter)) all_variants = []
_emp_id_variants = [ for eid in employee_ids_export:
_base_emp_id, _ = _parse_wt(str(eid))
all_variants += [
_base_emp_id, _base_emp_id,
f"{_base_emp_id} SP", f"{_base_emp_id}SP", f"{_base_emp_id} SP", f"{_base_emp_id}SP",
f"SP {_base_emp_id}", f"SP{_base_emp_id}", f"SP {_base_emp_id}", f"SP{_base_emp_id}",
@@ -9245,7 +9329,7 @@ def export_time_attendance():
f"{_base_emp_id} PT", f"{_base_emp_id}PT", f"{_base_emp_id} PT", f"{_base_emp_id}PT",
f"PT {_base_emp_id}", f"PT{_base_emp_id}", f"PT {_base_emp_id}", f"PT{_base_emp_id}",
] ]
query = query.filter(TimeAttendance.employee_id.in_(_emp_id_variants)) query = query.filter(TimeAttendance.employee_id.in_(all_variants))
if location_filter: if location_filter:
query = query.filter(TimeAttendance.location_name == location_filter) query = query.filter(TimeAttendance.location_name == location_filter)
@@ -10611,12 +10695,14 @@ def export_time_attendance_by_building():
from models.time_attendance import TimeAttendance from models.time_attendance import TimeAttendance
query = TimeAttendance.query query = TimeAttendance.query
# Apply filters # Apply filters — employee_id supports comma-separated multi-employee values
if employee_filter: if employee_filter:
# Include all SP/PW/PT work-type variants of the base employee ID. employee_ids_export = [e.strip() for e in employee_filter.split(',') if e.strip()]
from working_hours_calculator import parse_employee_id_for_work_type as _parse_wt from working_hours_calculator import parse_employee_id_for_work_type as _parse_wt
_base_emp_id, _ = _parse_wt(str(employee_filter)) all_variants = []
_emp_id_variants = [ for eid in employee_ids_export:
_base_emp_id, _ = _parse_wt(str(eid))
all_variants += [
_base_emp_id, _base_emp_id,
f"{_base_emp_id} SP", f"{_base_emp_id}SP", f"{_base_emp_id} SP", f"{_base_emp_id}SP",
f"SP {_base_emp_id}", f"SP{_base_emp_id}", f"SP {_base_emp_id}", f"SP{_base_emp_id}",
@@ -10625,7 +10711,7 @@ def export_time_attendance_by_building():
f"{_base_emp_id} PT", f"{_base_emp_id}PT", f"{_base_emp_id} PT", f"{_base_emp_id}PT",
f"PT {_base_emp_id}", f"PT{_base_emp_id}", f"PT {_base_emp_id}", f"PT{_base_emp_id}",
] ]
query = query.filter(TimeAttendance.employee_id.in_(_emp_id_variants)) query = query.filter(TimeAttendance.employee_id.in_(all_variants))
if location_filter: if location_filter:
query = query.filter(TimeAttendance.location_name == location_filter) query = query.filter(TimeAttendance.location_name == location_filter)
@@ -11471,7 +11557,7 @@ def time_attendance_records():
"""Display time attendance records with filtering options""" """Display time attendance records with filtering options"""
try: try:
# Get filter parameters # Get filter parameters
employee_filter = request.args.get('employee_id') employee_filter = request.args.get('employee_id', '')
location_filter = request.args.get('location_name') location_filter = request.args.get('location_name')
start_date = request.args.get('start_date') start_date = request.args.get('start_date')
end_date = request.args.get('end_date') end_date = request.args.get('end_date')
@@ -11479,12 +11565,53 @@ def time_attendance_records():
page = request.args.get('page', 1, type=int) page = request.args.get('page', 1, type=int)
per_page = 50 # Records per page per_page = 50 # Records per page
# Build list of selected employee IDs (comma-separated multi-employee support)
employee_ids = [e.strip() for e in employee_filter.split(',') if e.strip()] if employee_filter else []
# Build display names for each selected employee
import re as _re
employee_display_names = []
for eid in employee_ids:
try:
numeric_only = _re.search(r'\d+', str(eid))
if numeric_only:
emp = Employee.query.filter_by(id=int(numeric_only.group(0))).first()
if emp:
employee_display_names.append({'id': eid, 'name': f"{emp.lastName}, {emp.firstName}"})
else:
employee_display_names.append({'id': eid, 'name': f"ID: {eid}"})
else:
employee_display_names.append({'id': eid, 'name': eid})
except (ValueError, TypeError):
employee_display_names.append({'id': eid, 'name': eid})
employee_display_name = ', '.join([e['name'] for e in employee_display_names])
# Build query # Build query
query = TimeAttendance.query query = TimeAttendance.query
# Apply filters # Apply filters
if employee_filter: if employee_ids:
query = query.filter(TimeAttendance.employee_id == employee_filter) # Expand each base ID to include all SP/PW/PT work-type variants so that
# cross-type pairs are included in results and exports.
from working_hours_calculator import parse_employee_id_for_work_type as _parse_wt
all_variants = []
for eid in employee_ids:
_base_emp_id, _ = _parse_wt(str(eid))
all_variants += [
_base_emp_id,
f"{_base_emp_id} SP", f"{_base_emp_id}SP",
f"SP {_base_emp_id}", f"SP{_base_emp_id}",
f"{_base_emp_id} PW", f"{_base_emp_id}PW",
f"PW {_base_emp_id}", f"PW{_base_emp_id}",
f"{_base_emp_id} PT", f"{_base_emp_id}PT",
f"PT {_base_emp_id}", f"PT{_base_emp_id}",
]
query = query.filter(TimeAttendance.employee_id.in_(all_variants))
logger_handler.logger.info(
f"Time attendance records filtered by employee IDs: {employee_ids} "
f"by user {session.get('username', 'unknown')}"
)
if location_filter: if location_filter:
query = query.filter(TimeAttendance.location_name == location_filter) query = query.filter(TimeAttendance.location_name == location_filter)
@@ -11563,23 +11690,6 @@ def time_attendance_records():
unique_locations = TimeAttendance.get_unique_locations() unique_locations = TimeAttendance.get_unique_locations()
projects = Project.query.filter_by(active_status=True).order_by(Project.name).all() projects = Project.query.filter_by(active_status=True).order_by(Project.name).all()
# Resolve display name for the employee filter input
employee_display_name = ''
if employee_filter:
try:
import re as _re
numeric_only = _re.search(r'\d+', str(employee_filter))
if numeric_only:
emp = Employee.query.filter_by(id=int(numeric_only.group(0))).first()
if emp:
employee_display_name = f"{emp.lastName}, {emp.firstName}"
else:
employee_display_name = f"ID: {employee_filter}"
else:
employee_display_name = f"ID: {employee_filter}"
except (ValueError, TypeError):
employee_display_name = employee_filter
return render_template( return render_template(
'time_attendance_records.html', 'time_attendance_records.html',
records=records, records=records,
@@ -11587,7 +11697,9 @@ def time_attendance_records():
unique_locations=unique_locations, unique_locations=unique_locations,
projects=projects, projects=projects,
employee_display_name=employee_display_name, employee_display_name=employee_display_name,
employee_filter=employee_filter or '' employee_display_names=employee_display_names,
employee_filter=employee_filter,
employee_ids=employee_ids
) )
except Exception as e: except Exception as e:
+79
View File
@@ -1003,4 +1003,83 @@ document.addEventListener('DOMContentLoaded', function() {
}; };
}()); }());
</script> </script>
<script>
// ─── Dynamic Location Dropdown (scoped by selected project) ───────────────
(function () {
const projectSelect = document.getElementById('project');
const locationSelect = document.getElementById('location');
if (!projectSelect || !locationSelect) return;
// Capture the full server-rendered location list on page load so we can
// restore it when the project filter is cleared.
const allLocationOptions = Array.from(locationSelect.options).map(function (opt) {
return { value: opt.value, text: opt.text };
});
// The location value that was active when the page loaded (from URL param).
const initialLocationValue = locationSelect.value;
function rebuildLocationDropdown(locations, preserveValue) {
// Remove all options except the first "All Locations" placeholder
while (locationSelect.options.length > 1) {
locationSelect.remove(1);
}
locations.forEach(function (locName) {
const opt = document.createElement('option');
opt.value = locName;
opt.textContent = locName;
if (locName === preserveValue) {
opt.selected = true;
}
locationSelect.appendChild(opt);
});
}
function loadLocationsForProject(projectId) {
const url = '/api/attendance/locations?project_id=' + encodeURIComponent(projectId);
fetch(url)
.then(function (r) { return r.json(); })
.then(function (data) {
if (data.success) {
// Only preserve current location selection if it exists in the new list
const currentLoc = locationSelect.value;
const validLoc = data.locations.includes(currentLoc) ? currentLoc : '';
rebuildLocationDropdown(data.locations, validLoc);
} else {
console.error('Failed to load locations:', data.error);
}
})
.catch(function (err) {
console.error('Error fetching locations:', err);
});
}
function restoreAllLocations() {
while (locationSelect.options.length > 1) {
locationSelect.remove(1);
}
// Re-add all server-rendered options (skip index 0, the "All Locations" option)
for (let i = 1; i < allLocationOptions.length; i++) {
const opt = document.createElement('option');
opt.value = allLocationOptions[i].value;
opt.textContent = allLocationOptions[i].text;
if (allLocationOptions[i].value === initialLocationValue) {
opt.selected = true;
}
locationSelect.appendChild(opt);
}
}
projectSelect.addEventListener('change', function () {
const projectId = this.value;
if (projectId) {
loadLocationsForProject(projectId);
} else {
restoreAllLocations();
}
});
}());
</script>
{% endblock %} {% endblock %}
+316 -77
View File
@@ -62,6 +62,90 @@
.filter-input { padding-right: 35px !important; } .filter-input { padding-right: 35px !important; }
/* ── Multi-Employee Chip Filter ── */
.employee-chips-wrapper {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 6px;
min-height: 38px;
padding: 4px 36px 4px 8px;
border: 2px solid #e2e8f0;
border-radius: 0.5rem;
background: #fff;
cursor: text;
position: relative;
box-sizing: border-box;
width: 100%;
transition: border-color 0.2s, box-shadow 0.2s;
}
.employee-chips-wrapper:focus-within {
border-color: #2563eb;
box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.employee-chip {
display: inline-flex;
align-items: center;
gap: 5px;
background: #eef2ff;
color: #4338ca;
border: 1px solid #c7d2fe;
border-radius: 4px;
padding: 2px 6px 2px 8px;
font-size: 0.8rem;
font-weight: 500;
white-space: nowrap;
max-width: 200px;
overflow: hidden;
text-overflow: ellipsis;
}
.employee-chip-remove {
background: none;
border: none;
cursor: pointer;
color: #6366f1;
padding: 0;
line-height: 1;
font-size: 0.7rem;
display: flex;
align-items: center;
border-radius: 2px;
transition: color 0.15s;
flex-shrink: 0;
}
.employee-chip-remove:hover { color: #dc2626; }
.employee-chip-input {
border: none;
outline: none;
font-size: 0.875rem;
background: transparent;
flex: 1;
min-width: 120px;
padding: 2px 0;
color: #1f2937;
}
.employee-chip-input::placeholder { color: #9ca3af; }
.employee-chips-clear-all {
position: absolute;
right: 6px;
top: 50%;
transform: translateY(-50%);
background: #dc3545;
color: white;
border: none;
border-radius: 50%;
width: 22px;
height: 22px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.2s;
padding: 0;
}
.employee-chips-clear-all:hover { background: #c82333; }
.employee-chips-clear-all i { font-size: 0.7rem; }
/* ── Mirror attendance.css filter layout on this page ── */ /* ── Mirror attendance.css filter layout on this page ── */
.filters-section { margin-bottom: 2rem; } .filters-section { margin-bottom: 2rem; }
@@ -260,31 +344,34 @@
</div> </div>
<div class="filter-group"> <div class="filter-group">
<label for="ta_employee_search"> <label for="ta_employee_chip_input">
<i class="fas fa-user-search"></i> <i class="fas fa-user-search"></i>
Employee Employee
</label> </label>
<div class="autocomplete-container-filter"> <div class="autocomplete-container-filter">
<input type="hidden" id="employee_id" name="employee_id" value="{{ employee_filter }}">
<div class="employee-chips-wrapper" id="taEmployeeChipsWrapper">
{% for emp in employee_display_names %}
<span class="employee-chip" data-id="{{ emp.id }}">
<span title="{{ emp.name }}">{{ emp.name }}</span>
<button type="button" class="employee-chip-remove" title="Remove">
<i class="fas fa-times"></i>
</button>
</span>
{% endfor %}
<input type="text" <input type="text"
id="ta_employee_search" id="ta_employee_chip_input"
class="filter-input" class="employee-chip-input"
placeholder="Search by ID or Name..." placeholder="{% if employee_display_names %}Add more...{% else %}Search by ID or Name...{% endif %}"
value="{{ employee_display_name }}"
autocomplete="off"> autocomplete="off">
<input type="hidden"
id="employee_id"
name="employee_id"
value="{{ employee_filter }}">
<div id="ta_autocomplete_results" class="autocomplete-results-filter"></div>
{% if employee_filter %} {% if employee_filter %}
<button type="button" <button type="button" class="employee-chips-clear-all" id="taClearAllEmployees" title="Clear all">
class="clear-employee-filter"
onclick="taClearEmployee()"
title="Clear employee filter">
<i class="fas fa-times"></i> <i class="fas fa-times"></i>
</button> </button>
{% endif %} {% endif %}
</div> </div>
<div id="ta_autocomplete_results" class="autocomplete-results-filter"></div>
</div>
</div> </div>
<div class="filter-actions"> <div class="filter-actions">
@@ -596,72 +683,158 @@ document.addEventListener('keydown', function(event) {
// Filters are always visible — no toggle needed // Filters are always visible — no toggle needed
// ── Employee autocomplete ────────────────────────────────────────────────── // ── Multi-Employee Chip Filter Autocomplete ───────────────────────────────
(function () { (function () {
const searchInput = document.getElementById('ta_employee_search'); const chipInput = document.getElementById('ta_employee_chip_input');
const hiddenInput = document.getElementById('employee_id'); const employeeHidden = document.getElementById('employee_id');
const dropdown = document.getElementById('ta_autocomplete_results'); const autocomplete = document.getElementById('ta_autocomplete_results');
let debounceTimer; const chipsWrapper = document.getElementById('taEmployeeChipsWrapper');
let searchTimeout;
if (!searchInput) return; // State: map of id -> displayName for currently selected employees
const selected = {};
{% for emp in employee_display_names %}
selected['{{ emp.id }}'] = '{{ emp.name | e }}';
{% endfor %}
searchInput.addEventListener('input', function () { function syncHiddenField() {
const term = this.value.trim(); employeeHidden.value = Object.keys(selected).join(',');
const hasChips = Object.keys(selected).length > 0;
// Keep hidden field in sync when typing a plain numeric ID so the user let btn = document.getElementById('taClearAllEmployees');
// can submit without selecting from the dropdown (handles IDs not in Employee table). if (hasChips && !btn) {
if (/^\d+$/.test(term)) { btn = document.createElement('button');
hiddenInput.value = term; btn.type = 'button';
} else { btn.id = 'taClearAllEmployees';
hiddenInput.value = ''; btn.className = 'employee-chips-clear-all';
btn.title = 'Clear all';
btn.innerHTML = '<i class="fas fa-times"></i>';
btn.addEventListener('click', clearAll);
chipsWrapper.appendChild(btn);
} else if (!hasChips && btn) {
btn.remove();
}
} }
if (term.length === 0) { function addChip(id, name) {
hiddenInput.value = ''; id = String(id);
dropdown.classList.remove('show'); if (selected[id]) return;
return; selected[id] = name;
const chip = document.createElement('span');
chip.className = 'employee-chip';
chip.dataset.id = id;
const nameSpan = document.createElement('span');
nameSpan.title = name;
nameSpan.textContent = name;
const removeBtn = document.createElement('button');
removeBtn.type = 'button';
removeBtn.className = 'employee-chip-remove';
removeBtn.title = 'Remove';
removeBtn.innerHTML = '<i class="fas fa-times"></i>';
removeBtn.addEventListener('click', function () {
delete selected[chip.dataset.id];
chip.remove();
syncHiddenField();
updatePlaceholder();
});
chip.appendChild(nameSpan);
chip.appendChild(removeBtn);
chipsWrapper.insertBefore(chip, chipInput);
syncHiddenField();
updatePlaceholder();
} }
if (term.length < 2) { function updatePlaceholder() {
dropdown.classList.remove('show'); chipInput.placeholder = Object.keys(selected).length > 0
return; ? 'Add more...'
: 'Search by ID or Name...';
} }
clearTimeout(debounceTimer); function clearAll() {
debounceTimer = setTimeout(function () { Object.keys(selected).forEach(function(k) { delete selected[k]; });
fetch('/api/search_employees?q=' + encodeURIComponent(term)) chipsWrapper.querySelectorAll('.employee-chip').forEach(function(c) { c.remove(); });
syncHiddenField();
updatePlaceholder();
}
// Wire remove buttons for server-rendered chips on page load
chipsWrapper.querySelectorAll('.employee-chip-remove').forEach(function (btn) {
btn.addEventListener('click', function () {
const chip = btn.closest('.employee-chip');
delete selected[chip.dataset.id];
chip.remove();
syncHiddenField();
updatePlaceholder();
});
});
const clearAllBtn = document.getElementById('taClearAllEmployees');
if (clearAllBtn) {
clearAllBtn.addEventListener('click', clearAll);
}
chipsWrapper.addEventListener('click', function (e) {
if (!e.target.closest('.employee-chip') && !e.target.closest('.employee-chips-clear-all')) {
chipInput.focus();
}
});
chipInput.addEventListener('input', function () {
const q = this.value.trim();
if (q.length === 0) { autocomplete.classList.remove('show'); return; }
if (q.length < 2) { autocomplete.classList.remove('show'); return; }
clearTimeout(searchTimeout);
searchTimeout = setTimeout(function () {
fetch('/api/search_employees?q=' + encodeURIComponent(q))
.then(function (r) { return r.json(); }) .then(function (r) { return r.json(); })
.then(function (data) { renderDropdown(data.employees || []); }) .then(function (data) { renderDropdown(data.employees || []); })
.catch(function (err) { console.error('Employee search error:', err); }); .catch(function (err) { console.error('Employee search error:', err); });
}, 300); }, 300);
}); });
document.addEventListener('click', function (e) { chipInput.addEventListener('keydown', function (e) {
if (!e.target.closest('.autocomplete-container-filter')) { if (e.key === 'Enter') {
dropdown.classList.remove('show'); e.preventDefault();
const q = chipInput.value.trim();
if (/^\d+$/.test(q) && !selected[q]) {
addChip(q, 'ID: ' + q);
chipInput.value = '';
autocomplete.classList.remove('show');
}
}
if (e.key === 'Backspace' && chipInput.value === '') {
const chips = chipsWrapper.querySelectorAll('.employee-chip');
if (chips.length > 0) {
const last = chips[chips.length - 1];
delete selected[last.dataset.id];
last.remove();
syncHiddenField();
updatePlaceholder();
}
} }
}); });
function renderDropdown(employees) { function renderDropdown(employees) {
// Use createElement + addEventListener — safe with apostrophes in names autocomplete.innerHTML = '';
dropdown.innerHTML = ''; const unselected = employees.filter(function(emp) { return !selected[String(emp.id)]; });
if (employees.length === 0) { if (unselected.length === 0) {
const noResult = document.createElement('div'); const noResult = document.createElement('div');
noResult.className = 'autocomplete-item-filter'; noResult.className = 'autocomplete-item-filter';
noResult.style.cssText = 'cursor:default;color:#999;'; noResult.style.cssText = 'cursor:default;color:#999;';
noResult.textContent = 'No employees found'; noResult.textContent = employees.length === 0 ? 'No employees found' : 'All matching employees already selected';
dropdown.appendChild(noResult); autocomplete.appendChild(noResult);
} else { } else {
employees.forEach(function (emp) { unselected.forEach(function (emp) {
const isUnregistered = (emp.lastName === '(no record)'); const isUnregistered = (emp.lastName === '(no record)');
const displayName = isUnregistered const displayName = isUnregistered ? 'ID: ' + emp.id : emp.lastName + ', ' + emp.firstName;
? 'ID: ' + emp.id
: emp.lastName + ', ' + emp.firstName;
const item = document.createElement('div'); const item = document.createElement('div');
item.className = 'autocomplete-item-filter'; item.className = 'autocomplete-item-filter';
const info = document.createElement('div'); const info = document.createElement('div');
info.className = 'employee-info-filter'; info.className = 'employee-info-filter';
@@ -685,47 +858,113 @@ document.addEventListener('keydown', function(event) {
info.appendChild(idSpan); info.appendChild(idSpan);
item.appendChild(info); item.appendChild(info);
// Closure captures values safely regardless of special characters
item.addEventListener('click', (function (id, name) { item.addEventListener('click', (function (id, name) {
return function () { taSelectEmployee(id, name); }; return function () {
addChip(id, name);
chipInput.value = '';
autocomplete.classList.remove('show');
};
}(String(emp.id), displayName))); }(String(emp.id), displayName)));
dropdown.appendChild(item); autocomplete.appendChild(item);
}); });
} }
positionDropdown(); positionDropdown();
dropdown.classList.add('show'); autocomplete.classList.add('show');
} }
function positionDropdown() { function positionDropdown() {
const rect = searchInput.getBoundingClientRect(); const wrapperRect = chipsWrapper.getBoundingClientRect();
dropdown.style.top = (rect.bottom + window.scrollY) + 'px'; autocomplete.style.top = (wrapperRect.bottom + window.scrollY) + 'px';
dropdown.style.left = rect.left + 'px'; autocomplete.style.left = wrapperRect.left + 'px';
dropdown.style.width = rect.width + 'px'; autocomplete.style.width = wrapperRect.width + 'px';
} }
window.taSelectEmployee = function (id, displayName) { document.addEventListener('click', function (e) {
hiddenInput.value = id; if (!e.target.closest('.autocomplete-container-filter')) {
searchInput.value = displayName; autocomplete.classList.remove('show');
dropdown.classList.remove('show'); }
}; });
window.taClearEmployee = function () {
searchInput.value = '';
hiddenInput.value = '';
searchInput.closest('form').submit();
};
window.taClearAllFilters = function () {
window.location.href = '{{ url_for("time_attendance_records") }}';
};
window.addEventListener('scroll', function () { window.addEventListener('scroll', function () {
if (dropdown.classList.contains('show')) positionDropdown(); if (autocomplete.classList.contains('show')) positionDropdown();
}, true); }, true);
window.addEventListener('resize', function () { window.addEventListener('resize', function () {
if (dropdown.classList.contains('show')) positionDropdown(); if (autocomplete.classList.contains('show')) positionDropdown();
});
// Legacy globals
window.taSelectEmployee = function (id, name) {
addChip(String(id), name);
chipInput.value = '';
autocomplete.classList.remove('show');
};
window.taClearEmployee = function () {
clearAll();
chipsWrapper.closest('form').submit();
};
window.taClearAllFilters = function () {
window.location.href = '{{ url_for("time_attendance_records") }}';
};
}());
// ── Dynamic Location Dropdown (scoped by selected project) ────────────────
(function () {
const projectSelect = document.getElementById('project_id');
const locationSelect = document.getElementById('location_name');
if (!projectSelect || !locationSelect) return;
// Capture full server-rendered location list on page load for restoration
const allLocationOptions = Array.from(locationSelect.options).map(function (opt) {
return { value: opt.value, text: opt.text };
});
const initialLocationValue = locationSelect.value;
function rebuildLocationDropdown(locations, preserveValue) {
while (locationSelect.options.length > 1) { locationSelect.remove(1); }
locations.forEach(function (locName) {
const opt = document.createElement('option');
opt.value = locName;
opt.textContent = locName;
if (locName === preserveValue) opt.selected = true;
locationSelect.appendChild(opt);
});
}
function loadLocationsForProject(projectId) {
fetch('/api/time-attendance/locations?project_id=' + encodeURIComponent(projectId))
.then(function (r) { return r.json(); })
.then(function (data) {
if (data.success) {
const currentLoc = locationSelect.value;
const validLoc = data.locations.includes(currentLoc) ? currentLoc : '';
rebuildLocationDropdown(data.locations, validLoc);
} else {
console.error('Failed to load locations:', data.error);
}
})
.catch(function (err) { console.error('Error fetching locations:', err); });
}
function restoreAllLocations() {
while (locationSelect.options.length > 1) { locationSelect.remove(1); }
for (let i = 1; i < allLocationOptions.length; i++) {
const opt = document.createElement('option');
opt.value = allLocationOptions[i].value;
opt.textContent = allLocationOptions[i].text;
if (allLocationOptions[i].value === initialLocationValue) opt.selected = true;
locationSelect.appendChild(opt);
}
}
projectSelect.addEventListener('change', function () {
if (this.value) {
loadLocationsForProject(this.value);
} else {
restoreAllLocations();
}
}); });
}()); }());
</script> </script>