Quellcode durchsuchen

不列入參考範圍

manto07m vor 3 Jahren
Ursprung
Commit
26334e4f86
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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])