Forráskód Böngészése

不列入參考範圍

manto07m 3 éve
szülő
commit
26334e4f86
1 módosított fájl, 1 hozzáadás és 1 törlés
  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])