|
|
@@ -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')
|
|
|
)
|
|
|
}
|
|
|
|