소스 검색

bug 生产运营周会设备利用率计算不了

Zimo 1 주 전
부모
커밋
07e192e0bb
1개의 변경된 파일6개의 추가작업 그리고 9개의 파일을 삭제
  1. 6 9
      src/views/pms/operation-meeting/components/meeting-detail-drawer.vue

+ 6 - 9
src/views/pms/operation-meeting/components/meeting-detail-drawer.vue

@@ -260,10 +260,9 @@ const isConstructionEquipmentCountExtProperty = (item: ExtPropertyItem) => {
   const text = getExtPropertySearchText(item)
 
   return (
-    text.includes('施工设备数量') ||
-    text.includes('施工设备数') ||
-    text.includes('constructionequipmentcount') ||
-    text.includes('constructiondevicecount')
+    text.includes('施工设备(台*天)') ||
+    text.includes('施工设备') ||
+    text.includes('constructionDeviceNum')
   )
 }
 
@@ -271,11 +270,9 @@ const isOperatingEquipmentCountExtProperty = (item: ExtPropertyItem) => {
   const text = getExtPropertySearchText(item)
 
   return (
-    text.includes('投运设备数量') ||
-    text.includes('投运设备数') ||
-    text.includes('operatingequipmentcount') ||
-    text.includes('operationequipmentcount') ||
-    text.includes('runningequipmentcount')
+    text.includes('投运设备(台*天)') ||
+    text.includes('投运设备') ||
+    text.includes('inServiceDeviceNum')
   )
 }