123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- package main
- import (
- "math"
- "strconv"
- util "utils"
- "utils/mongodb"
- )
- func projectTask(data []byte, project, mapInfo map[string]interface{}) {
- defer util.Catch()
- q, _ := mapInfo["query"].(map[string]interface{})
- if q == nil {
- q = map[string]interface{}{
- "_id": map[string]interface{}{
- "$gt": mongodb.StringTOBsonId(mapInfo["gtid"].(string)),
- "$lte": mongodb.StringTOBsonId(mapInfo["lteid"].(string)),
- },
- }
- } else {
- if q["pici"] == nil {
- idMap, _ := q["_id"].(map[string]interface{})
- if idMap != nil {
- tmpQ := map[string]interface{}{}
- for c, id := range idMap {
- if idStr, ok := id.(string); ok && id != "" {
- tmpQ[c] = mongodb.StringTOBsonId(idStr)
- }
- }
- q["_id"] = tmpQ
- }
- }
- }
- conn := projectMgo.GetMgoConn()
- defer projectMgo.DestoryMongoConn(conn)
- c, _ := project["collect"].(string)
- count, _ := conn.DB(projectMgo.DbName).C(c).Find(&q).Count()
- util.Debug(c, "查询语句:", q, "同步总数:", count, "elastic库:", q["pici"])
- query := conn.DB(projectMgo.DbName).C(c).Find(q).Iter()
- n := 0
- for tmp := make(map[string]interface{}); query.Next(tmp); n++ {
- if n%20000 == 0 {
- util.Debug("current---------", n)
- }
- pp := map[string]map[string]interface{}{}
- if packages, ok := tmp["package"].(map[string]interface{}); ok {
- for _, pks := range packages {
- if pk, ok := pks.([]interface{}); ok {
- for _, v := range pk {
- if p, ok := v.(map[string]interface{}); ok {
- winner := util.ObjToString(p["winner"])
- bidamount := util.Float64All((p["bidamount"]))
- if len(winner) > 4 && bidamount > 0 {
- p := map[string]interface{}{
- "winner": winner,
- "bidamount": bidamount,
- }
- pp[winner] = p
- }
- }
- }
- }
- }
- } else {
- winner := util.ObjToString(tmp["winner"])
- bidamount := util.Float64All(tmp["bidamount"])
- if len(winner) > 4 && bidamount > 0 {
- p := map[string]interface{}{
- "winner": winner,
- "bidamount": bidamount,
- }
- pp[winner] = p
- }
- }
- pk1 := []map[string]interface{}{}
- for _, v := range pp {
- pk1 = append(pk1, v)
- }
- if len(pk1) > 0 {
- tmp["package1"] = pk1
- }
- budget := util.Float64All(tmp["budget"])
- bidamount := util.Float64All(tmp["bidamount"])
- if float64(budget) > 0 && float64(bidamount) > 0 {
- rate := float64(1) - float64(bidamount)/float64(budget)
- f, _ := strconv.ParseFloat(strconv.FormatFloat(rate, 'f', 4, 64), 64)
- //不在0~0.6之间,不生成费率;只生成预算,中标金额舍弃,索引增加折扣率异常标识
- if f < 0 || f > 0.6 {
- delete(tmp, "bidamount")
- tmp["prate_flag"] = 1
- } else {
- tmp["project_rate"] = f
- }
- }
- if topscopeclass, ok := tmp["topscopeclass"].([]interface{}); ok {
- tc := []string{}
- m2 := map[string]bool{}
- for _, v := range topscopeclass {
- str := util.ObjToString(v)
- str = reg_letter.ReplaceAllString(str, "") // 去除字母
- if !m2[str] {
- m2[str] = true
- tc = append(tc, str)
- }
- }
- tmp["topscopeclass"] = tc
- }
- //不生索引字段
- delete(tmp, "package")
- delete(tmp, "infofield")
- bidopentime := util.Int64All(tmp["bidopentime"]) //开标日期
- fzb_publishtime := int64(0) //记录第一个招标信息的publishtime
- bidcycle_flag := false //判断是否已计算出标书表编制周期
- list := tmp["list"].([]interface{})
- for _, m := range list {
- tmpM := m.(map[string]interface{})
- //删除purchasing,review_experts
- delete(tmpM, "purchasing")
- delete(tmpM, "review_experts")
- if bidamount, ok := tmpM["bidamount"].(string); ok && len(bidamount) > 0 { //bidamount为string类型,转成float
- tmpB := util.Float64All(tmpM["bidamount"])
- tmpM["bidamount"] = tmpB
- }
- //projectscope截断
- listProjectscopeRune := []rune(util.ObjToString(tmpM["projectscope"]))
- if len(listProjectscopeRune) > 1000 {
- tmpM["projectscope"] = string(listProjectscopeRune[:1000])
- }
- //计算bidcycle标书表编制周期字段
- if !bidcycle_flag && bidopentime > 0 { //bidopentime>0证明list中有bidopentime,无则不用计算bidcycle
- if toptype := util.ObjToString(tmpM["toptype"]); toptype == "招标" {
- zb_bidopentime := util.Int64All(tmpM["bidopentime"])
- zb_publishtime := util.Int64All(tmpM["publishtime"])
- if zb_publishtime > 0 {
- if zb_bidopentime > 0 {
- if tmpTime := zb_bidopentime - zb_publishtime; tmpTime > 0 {
- f_day := float64(tmpTime) / float64(86400)
- day := math.Ceil(f_day)
- tmp["bidcycle"] = int(day)
- bidcycle_flag = true
- }
- }
- if fzb_publishtime == 0 { //仅赋值第一个招标信息的publishtime
- fzb_publishtime = zb_publishtime
- }
- }
- }
- }
- }
- //计算bidcycle标书表编制周期字段
- //list中招标信息中未能计算出bidcycle,用第一个招标信息的fzb_publishtime和外围bidopentime计算
- if !bidcycle_flag && bidopentime > 0 && fzb_publishtime > 0 {
- if tmpTime := bidopentime - fzb_publishtime; tmpTime > 0 {
- f_day := float64(tmpTime) / float64(86400)
- day := math.Ceil(f_day)
- tmp["bidcycle"] = int(day)
- }
- }
- //projectscope截断
- projectscopeRune := []rune(util.ObjToString(tmp["projectscope"]))
- if len(projectscopeRune) > 1000 {
- tmp["projectscope"] = string(projectscopeRune[:1000])
- }
- // if s_budget := fmt.Sprint(tmp["budget"]); s_budget == "" || s_budget == "<nil>" || s_budget == "null" {
- // tmp["budget"] = nil
- // }
- // if s_bidamount := fmt.Sprint(tmp["bidamount"]); s_bidamount == "" || s_bidamount == "<nil>" || s_bidamount == "null" {
- // tmp["bidamount"] = nil
- // }
- //go IS.Add("project")
- if tmp["bidamount"] != nil && util.Float64All(tmp["bidamount"]) > 1000000000 {
- delete(tmp, "bidamount")
- }
- if tmp["budget"] != nil && util.Float64All(tmp["budget"]) > 1000000000 {
- delete(tmp, "budget")
- }
- tmp["s_projectname"] = tmp["projectname"]
- saveProjectEsPool <- tmp
- tmp = make(map[string]interface{})
- }
- util.Debug(mapInfo, "create project index...over", n)
- }
|