Commit eed93a88 by mushishixian

暂时过滤温漂系数

parent 4575eb39
Showing with 4 additions and 0 deletions
......@@ -121,6 +121,10 @@ func getTermQuery(bomItem model.BomItem, sort int, flag bool) (query *es.BoolQue
if !strings.Contains(attr, "€") {
continue
}
//先简单过滤下温漂系数,因为目前数据那边还有问题要确定,确定是否有写入温漂系数
if strings.Contains(attr, "WPXS") {
continue
}
//需要注意的点 : 因为0.158Ω可以对应 电阻 或者 直流电阻 ,所以当识别出来是电阻 或者 直流电阻 的时候,就不能用must,要用should
if strings.Contains(attr, "ZLNZ€") || strings.Contains(attr, "OM€") {
query.Should(es.NewTermQuery("attr_bom", attr))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment