Explorar el Código

不列入參考範圍

manto07m hace 3 años
padre
commit
26334e4f86
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      script/php/get_monitor_chart.php

+ 1 - 1
script/php/get_monitor_chart.php

@@ -33,7 +33,7 @@ switch ($type) {
         FROM (
                     SELECT [Date], [TotalDisplacement], [Depth], [WarningValue], [ActionValue]
             FROM [BIMMonitor].[dbo].[{$type}_Data]
-            WHERE [EquipmentID] = '{$monitor}' AND [WarningValue] <> 'NULL' AND [WarningValue] <> '---'
+            WHERE [EquipmentID] = '{$monitor}' AND [WarningValue] <> 'NULL' AND [WarningValue] <> '---' AND [WarningValue] <> '不列入參考範圍'
                 ) o
                 PIVOT (
                     MAX([TotalDisplacement])