Remove legacy pc tables, fix ASP issues, update dashboard APIs

Database changes (run sql/migration_drop_pc_tables.sql on prod):
- Drop pc, pc_backup_phase2, pc_to_machine_id_mapping tables
- Rename pcid columns to machineid in machineoverrides, dualpathassignments, networkinterfaces
- Recreate 9 views to use machines.machineid instead of pcid
- Clean orphaned records and add FK constraints to machines table

ASP fixes:
- editprinter.asp: Fix CLng type mismatch when no printerid provided
- includes/sql.asp: Remove AutoDeactivateExpiredNotifications (endtime handles expiry)
- includes/leftsidebar.asp: Update fiscal week banner styling, remove dead Information link
- charts/warrantychart.asp: Use vw_warranty_status instead of pc table

Dashboard API renames (naming convention):
- shopfloor-dashboard: Update to use apishopfloor.asp, apibusinessunits.asp
- tv-dashboard: Rename api_slides.asp to apislides.asp

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
cproudlock
2025-12-11 09:05:06 -05:00
parent e598f72616
commit 1f1bd8ee02
10 changed files with 327 additions and 219 deletions

View File

@@ -1,185 +0,0 @@
<%@ Language=VBScript %>
<!--#include file="../includes/sql.asp"-->
<%
' ============================================================================
' API Endpoint: Get Notifications (Safe Version with Parameterized Query)
' Returns current and upcoming notifications in JSON format
' Uses shared sql.asp connection from shopdb project
' ============================================================================
Option Explicit
Response.ContentType = "application/json"
Response.Charset = "UTF-8"
Dim objCmd, objRS
Dim now, future
Dim currentEvents(), upcomingEvents()
Dim currentCount, upcomingCount
Dim jsonOutput
' Initialize
currentCount = 0
upcomingCount = 0
ReDim currentEvents(0)
ReDim upcomingEvents(0)
On Error Resume Next
' Calculate time window
now = Now()
future = DateAdd("h", 72, now)
' objConn is already created and opened by includes/sql.asp
' No need to create our own connection
' Create command with parameters
Set objCmd = Server.CreateObject("ADODB.Command")
Set objCmd.ActiveConnection = objConn
objCmd.CommandText = "SELECT n.notificationid, n.notification, n.starttime, n.endtime, " & _
"n.ticketnumber, n.link, n.isactive, n.isshopfloor, " & _
"nt.typename, nt.typecolor " & _
"FROM notifications n " & _
"LEFT JOIN notificationtypes nt ON n.notificationtypeid = nt.notificationtypeid " & _
"WHERE n.isactive = 1 AND n.isshopfloor = 1 " & _
"AND ((n.starttime <= ? AND (n.endtime IS NULL OR n.endtime >= ?)) " & _
" OR (n.starttime BETWEEN ? AND ?)) " & _
"ORDER BY n.starttime ASC"
objCmd.CommandType = 1 ' adCmdText
' Add parameters
objCmd.Parameters.Append objCmd.CreateParameter("future1", 135, 1, , future) ' adDBTimeStamp
objCmd.Parameters.Append objCmd.CreateParameter("now1", 135, 1, , now)
objCmd.Parameters.Append objCmd.CreateParameter("now2", 135, 1, , now)
objCmd.Parameters.Append objCmd.CreateParameter("future2", 135, 1, , future)
Set objRS = objCmd.Execute
If Err.Number <> 0 Then
Response.Write "{""success"":false,""error"":""Query error: " & EscapeJSON(Err.Description) & """}"
Response.End
End If
' Process records
Do While Not objRS.EOF
Dim startTime, endTime, isCurrent
startTime = objRS("starttime")
endTime = objRS("endtime")
' Check if current
isCurrent = False
If IsDate(startTime) And startTime <= now Then
If IsNull(endTime) Or endTime >= now Then
isCurrent = True
End If
End If
' Build event object
Dim eventObj
Set eventObj = BuildEventJSON(objRS)
' Add to appropriate array
If isCurrent Then
ReDim Preserve currentEvents(currentCount)
currentEvents(currentCount) = eventObj
currentCount = currentCount + 1
Else
ReDim Preserve upcomingEvents(upcomingCount)
upcomingEvents(upcomingCount) = eventObj
upcomingCount = upcomingCount + 1
End If
objRS.MoveNext
Loop
objRS.Close
' objConn is managed by sql.asp - don't close it here
' Build JSON response
jsonOutput = "{""success"":true," & _
"""timestamp"":""" & ISO8601(Now()) & """," & _
"""current"":[" & JoinArray(currentEvents, currentCount) & "]," & _
"""upcoming"":[" & JoinArray(upcomingEvents, upcomingCount) & "]}"
Response.Write jsonOutput
' ============================================================================
' Functions
' ============================================================================
Function BuildEventJSON(rs)
Dim json
json = "{" & _
"""notificationid"":" & rs("notificationid") & "," & _
"""notification"":""" & EscapeJSON(rs("notification")) & """," & _
"""starttime"":""" & ISO8601(rs("starttime")) & """," & _
"""endtime"":" & NullOrString(rs("endtime")) & "," & _
"""ticketnumber"":" & NullOrString(rs("ticketnumber")) & "," & _
"""link"":" & NullOrString(rs("link")) & "," & _
"""isactive"":" & BoolStr(rs("isactive")) & "," & _
"""isshopfloor"":" & BoolStr(rs("isshopfloor")) & "," & _
"""typename"":""" & EscapeJSON(rs("typename")) & """," & _
"""typecolor"":""" & EscapeJSON(rs("typecolor")) & """" & _
"}"
BuildEventJSON = json
End Function
Function JoinArray(arr, count)
If count = 0 Then
JoinArray = ""
Exit Function
End If
Dim i, result
result = ""
For i = 0 To count - 1
If i > 0 Then result = result & ","
result = result & arr(i)
Next
JoinArray = result
End Function
Function EscapeJSON(str)
If IsNull(str) Then
EscapeJSON = ""
Exit Function
End If
Dim result
result = CStr(str)
result = Replace(result, "\", "\\")
result = Replace(result, """", "\""")
result = Replace(result, Chr(13), "\r")
result = Replace(result, Chr(10), "\n")
result = Replace(result, Chr(9), "\t")
EscapeJSON = result
End Function
Function ISO8601(dt)
If IsNull(dt) Or Not IsDate(dt) Then
ISO8601 = ""
Exit Function
End If
ISO8601 = Year(dt) & "-" & _
Right("0" & Month(dt), 2) & "-" & _
Right("0" & Day(dt), 2) & "T" & _
Right("0" & Hour(dt), 2) & ":" & _
Right("0" & Minute(dt), 2) & ":" & _
Right("0" & Second(dt), 2)
End Function
Function NullOrString(val)
If IsNull(val) Then
NullOrString = "null"
Else
NullOrString = """" & EscapeJSON(val) & """"
End If
End Function
Function BoolStr(val)
If CBool(val) Then
BoolStr = "true"
Else
BoolStr = "false"
End If
End Function
%>

View File

@@ -1109,7 +1109,7 @@
}
try {
const response = await fetch('../api_businessunits.asp');
const response = await fetch('../apibusinessunits.asp');
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
@@ -1147,7 +1147,7 @@
// Fetch notifications from API
async function fetchNotifications() {
try {
let url = '../api_shopfloor.asp';
let url = '../apishopfloor.asp';
if (selectedBusinessUnit) {
url += '?businessunit=' + encodeURIComponent(selectedBusinessUnit);
}