add cash cost with visibility level 5

This commit is contained in:
Paul Trowbridge 2025-10-03 16:54:21 -04:00
parent e1fa96c59d
commit b33ae7d085

View File

@ -623,6 +623,21 @@ BEGIN
'' AS note
FOR JSON PATH
) AS details
UNION ALL
-- Cash Cost
SELECT
'Cash Cost' AS label,
5 AS detailLevel,
(
SELECT
'Cash Cost' AS label,
5 AS detailLevel,
COALESCE(q.futstd,0) AS value,
'currency' AS type,
'' AS note
FOR JSON PATH
) AS details
) AS panel
FOR JSON PATH
) AS details,