Fix reports charts to count only PCs, exclude PCs from equipment list
charts/udcchart.asp, charts/ma3chart.asp: - Add COALESCE to handle NULL aggregate values - Add NULL checks for VBScript CInt operations - Change machinecount to only count PCs (pctypeid IS NOT NULL) - UDC/CLM/MA3 apps only exist on PCs, not equipment displaymachines.asp: - Add machinetypeid < 33 filter to exclude PC machine types - PCs with NULL pctypeid were incorrectly showing on equipment list 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1,11 +1,13 @@
|
||||
<%
|
||||
|
||||
strSQL2 = "SELECT sum(case when appid = '42' then 1 else 0 end) AS ma3count," &_
|
||||
"(SELECT COUNT(*) FROM machines WHERE machines.isactive=1 AND machines.islocationonly=0) AS machinecount "& _
|
||||
' Count only PCs (pctypeid IS NOT NULL) for MA3 stats
|
||||
strSQL2 = "SELECT COALESCE(sum(case when appid = '42' then 1 else 0 end), 0) AS ma3count," &_
|
||||
"(SELECT COUNT(*) FROM machines WHERE machines.isactive=1 AND machines.pctypeid IS NOT NULL) AS machinecount "& _
|
||||
"FROM installedapps WHERE appid=42 and installedapps.isactive=1"
|
||||
set rs2 = objconn.Execute(strSQL2)
|
||||
ma3count = rs2("ma3count")
|
||||
machinecount = rs2("machinecount")
|
||||
If IsNull(ma3count) Or ma3count = "" Then ma3count = 0
|
||||
If IsNull(machinecount) Or machinecount = "" Or CInt(machinecount) = 0 Then machinecount = 1
|
||||
ma2count = CInt(machinecount) - CInt(ma3count)
|
||||
ma3pct = FormatNumber(CInt(ma3count)/Cint(machinecount)*100,2)
|
||||
ma2pct = FormatNumber(CInt(ma2count)/Cint(machinecount)*100,2)
|
||||
|
||||
Reference in New Issue
Block a user