Update footer copyright year to 2025 in multiple HTML files and adjust file retrieval logic in FileShareRepository

This commit is contained in:
2025-09-23 06:50:03 -07:00
parent b1b20e1bb0
commit 5ff031178f
15 changed files with 30 additions and 38 deletions

View File

@ -919,17 +919,18 @@ function requestHeaderDataFiles() {
var startTime = $("#StartTime").igTimePicker("value");
var endDate = $("#EndDate").igDatePicker("value");
var endTime = $("#EndTime").igTimePicker("value");
var segments = toolTypeName.split('-');
var params = {
area: null,
area: segments.length === 2 ? segments[0] : null,
'end-time': new Date(
endDate.getFullYear(), endDate.getMonth(), endDate.getDate(),
endTime.getHours(), endTime.getMinutes(), endTime.getSeconds()).toISOString(),
'equipment-id': toolTypeName,
'search-pattern': '*.wc',
'search-pattern': segments.length === 2 ? '*.pdsf' : '*.json',
'start-time': new Date(
startDate.getFullYear(), startDate.getMonth(), startDate.getDate(),
startTime.getHours(), startTime.getMinutes(), startTime.getSeconds()).toISOString(),
'wafer-size': null,
'wafer-size': segments.length === 2 ? segments[1] : null,
}
var headerURL = _apiUrl + "/v1/file-share/archive-data/?" + $.param(params);
var gridColumns = [