123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908 |
- package main
- import (
- "encoding/json"
- "fmt"
- "github.com/go-xweb/log"
- "github.com/goinggo/mapstructure"
- "go.mongodb.org/mongo-driver/bson"
- "go.mongodb.org/mongo-driver/bson/primitive"
- "math"
- mu "mfw/util"
- "mongodb"
- qu "qfw/util"
- "qfw/util/redis"
- "reflect"
- "sort"
- "strings"
- "time"
- )
- /**
- 直接修改保存项目字段信息
- */
- func (p *ProjectTask) modifyUpdate(pid string, index, position int, tmpPro, modifyProMap map[string]interface{}) {
- // 1-0 备份
- tmpPro["reason"] = "直接在原有项目上修改字段信息"
- backupPro(tmpPro)
- delete(tmpPro, "reason")
- // 1-1 修改字段信息
- updateSet := UpdateValue(tmpPro, index, position, modifyProMap)
- updateSet["list"] = tmpPro["list"]
- // 1-2 修改mgo
- bol := MongoTool.UpdateById(ProjectColl, pid, map[string]interface{}{"$set": updateSet})
- if bol {
- // 1-3 修改es
- by, _ := json.Marshal(map[string]interface{}{
- "query": map[string]interface{}{
- "_id": bson.M{
- "$gte": pid,
- "$lte": pid,
- }},
- "stype": "project",
- })
- qu.Debug(string(by))
- _ = udpclient.WriteUdp(by, mu.OP_TYPE_DATA, toaddr[1])
- }
- // 修改内存
- p.modifyMem(tmpPro)
- }
- func (p *ProjectTask) mergeAndModify(pInfoId string, index, position int, tmp map[string]interface{}, tmpPro map[string]interface{}, modifyMap map[string]interface{}) {
- proList := tmpPro["list"].([]interface{})
- info := ParseInfo(tmp)
- //项目中list大小等于1
- if len(proList) == 1 {
- log.Println("list大小等于1 合并", "------1------")
- // 2.1 重新合并
- merge := p.ReMerge(info, tmp, tmpPro)
- if merge {
- //合并到新项目中
- //删除老项目
- p.AllIdsMapLock.Lock()
- delete(p.AllIdsMap, pInfoId)
- p.AllIdsMapLock.Unlock()
- delOldPro(pInfoId)
- // 2.2 备份
- tmpPro["reason"] = "删除原有项目,修改合并到新的项目中"
- backupPro(tmpPro)
- } else {
- //没有合并到新项目中
- p.modifyUpdate(pInfoId, index, position, tmpPro, modifyMap)
- // 修改内存
- p.modifyMem(tmpPro)
- }
- } else if index == 0 {
- // 招标公告信息在原有项目中位于第1个
- merge := p.ReMerge(info, tmp, tmpPro)
- if merge {
- // 合并到新项目中
- // 该条招标公告信息重新参与合并,该项目的其它招标公告信息逐条参与合并
- tmpPro["reason"] = "修改list中第一个条招标公告信息"
- backupPro(tmpPro)
- delete(tmpPro, "reason")
- proList = deleteSlice1(proList, proList[0])
- p.AllIdsMapLock.Lock()
- Id := p.AllIdsMap[pInfoId]
- p.AllIdsMapLock.Unlock()
- proMem := Id.P
- flag := true // 标记是否需要删除原有项目信息
- for _, v := range proList {
- v1 := v.(map[string]interface{})
- temp, _ := MongoTool.FindById(ExtractColl, qu.ObjToString(v1["infoid"]), nil)
- if len(*temp) == 0 {
- temp, _ = MongoTool.FindById(ExtractColl1, qu.ObjToString(v1["infoid"]), nil)
- if len(*temp) == 0 {
- qu.Debug("extract not find id...", v1["infoid"])
- continue
- }
- }
- tempInfo := ParseInfo(*temp)
- if flag {
- merge := p.ReMerge(tempInfo, *temp, tmpPro)
- if !merge {
- flag = false
- break
- }
- }
- }
- if flag {
- delOldPro(pInfoId)
- } else {
- //合并到原有项目中, 不用继续重新合并, 原有项目内部合并即可
- p.innerMerge(proList, tmpPro)
- bol := MongoTool.UpdateById(ProjectColl, pInfoId, map[string]interface{}{"$set": tmpPro})
- if bol {
- by, _ := json.Marshal(map[string]interface{}{
- "query": map[string]interface{}{
- "_id": bson.M{
- "$gte": pInfoId,
- "$lte": pInfoId,
- }},
- "stype": "project",
- })
- qu.Debug(string(by))
- _ = udpclient.WriteUdp(by, mu.OP_TYPE_DATA, toaddr[1])
- }
- // 修改内存
- p.AllIdsMapLock.Lock()
- if v, ok := p.AllIdsMap[pInfoId]; ok {
- v.P = proMem
- }
- p.AllIdsMapLock.Unlock()
- }
- } else {
- //没有合并到新项目中,更新list字段,有条件更新项目外围字段
- p.modifyUpdate(pInfoId, index, position, tmpPro, modifyMap)
- // 修改内存
- p.modifyMem(tmpPro)
- }
- } else if index == 1 {
- // 招标公告信息在原有项目中处于中间某一条
- merge := p.ReMerge(info, tmp, tmpPro)
- if merge {
- tmpPro["reason"] = "修改list中位于中间某一条招标公告信息"
- backupPro(tmpPro)
- delete(tmpPro, "reason")
- p.innerMerge1(proList, qu.ObjToString(tmp["infoid"]), tmpPro)
- bol := MongoTool.UpdateById(ProjectColl, pInfoId, map[string]interface{}{"$set": tmpPro})
- if bol {
- by, _ := json.Marshal(map[string]interface{}{
- "query": map[string]interface{}{
- "_id": bson.M{
- "$gte": pInfoId,
- "$lte": pInfoId,
- }},
- "stype": "project",
- })
- qu.Debug(string(by))
- _ = udpclient.WriteUdp(by, mu.OP_TYPE_DATA, toaddr[1])
- }
- } else {
- // 未合并到新项目中
- p.modifyUpdate(pInfoId, index, position, tmpPro, modifyMap)
- // 修改内存
- p.modifyMem(tmpPro)
- }
- } else if index == 2 {
- // 招标公告信息在原有项目中位于最后一条
- merge := p.ReMerge(info, tmp, tmpPro)
- if merge {
- // 合并到新项目中
- tmpPro["reason"] = "修改list中最后一条招标公告信息"
- backupPro(tmpPro)
- w := len(proList) - 1
- proList = deleteSlice1(proList, proList[w])
- p.innerMerge(proList, tmpPro)
- bol := MongoTool.UpdateById(ProjectColl, pInfoId, map[string]interface{}{"$set": tmpPro})
- if bol {
- by, _ := json.Marshal(map[string]interface{}{
- "query": map[string]interface{}{
- "_id": bson.M{
- "$gte": pInfoId,
- "$lte": pInfoId,
- }},
- "stype": "project",
- })
- qu.Debug(string(by))
- _ = udpclient.WriteUdp(by, mu.OP_TYPE_DATA, toaddr[1])
- }
- } else {
- // 未合并到新项目中
- p.modifyUpdate(pInfoId, index, position, tmpPro, modifyMap)
- // 修改内存
- p.modifyMem(tmpPro)
- }
- }
- }
- // 删除
- func (p *ProjectTask) delJudge(infoid, pid string) {
- tmpPro, _ := MongoTool.FindById(ProjectColl, pid, nil)
- ids := (*tmpPro)["ids"].([]interface{})
- proList := (*tmpPro)["list"].([]interface{})
- if len(ids) == 1 {
- (*tmpPro)["reason"] = "删除项目信息"
- backupPro(*tmpPro)
- c := MongoTool.Delete(ProjectColl, map[string]interface{}{"_id": mongodb.StringTOBsonId(pid)})
- if c > 0 {
- client := Es.GetEsConn()
- defer Es.DestoryEsConn(client)
- Es.DelById(Itype, Index, pid)
- }
- return
- }
- var index = -1 //0:第一个,1:中间,2:最后一个
- for i, v := range ids {
- if qu.ObjToString(v) == infoid {
- if i == 0 {
- index = 0
- } else if i == len(ids)-1 {
- index = 2
- } else {
- index = 1
- }
- }
- }
- if index == 0 {
- (*tmpPro)["reason"] = "删除list中第一个条招标公告信息"
- backupPro(*tmpPro)
- delete(*tmpPro, "reason")
- proList = deleteSlice1(proList, proList[0])
- var pro *ProjectCache
- flag := true // 标记是否需要删除原有项目信息
- for _, v := range proList {
- v1 := v.(map[string]interface{})
- temp, _ := MongoTool.FindById(ExtractColl, qu.ObjToString(v1["infoid"]), nil)
- if len(*temp) == 0 {
- temp, _ = MongoTool.FindById(ExtractColl1, qu.ObjToString(v1["infoid"]), nil)
- if len(*temp) == 0 {
- qu.Debug("extract not find id...", v1["infoid"])
- continue
- }
- }
- tempInfo := ParseInfo(*temp)
- if flag {
- merge := p.ReMerge(tempInfo, *temp, *tmpPro)
- if !merge {
- flag = false
- break
- }
- }
- }
- if flag {
- delOldPro(pid)
- } else {
- *tmpPro, pro = p.innerMerge(proList, *tmpPro)
- bol := MongoTool.UpdateById(ProjectColl, pid, map[string]interface{}{"$set": tmpPro})
- if bol {
- by, _ := json.Marshal(map[string]interface{}{
- "query": map[string]interface{}{
- "_id": bson.M{
- "$gte": pid,
- "$lte": pid,
- }},
- "stype": "project",
- })
- qu.Debug(string(by))
- _ = udpclient.WriteUdp(by, mu.OP_TYPE_DATA, toaddr[1])
- }
- // 修改内存
- p.AllIdsMapLock.Lock()
- if v, ok := p.AllIdsMap[pid]; ok {
- v.P = pro
- }
- p.AllIdsMapLock.Unlock()
- }
- } else if index == 1 {
- (*tmpPro)["reason"] = "删除list中间某一条招标公告信息"
- backupPro(*tmpPro)
- delete(*tmpPro, "reason")
- var pro *ProjectCache
- *tmpPro, pro = p.innerMerge1(proList, infoid, *tmpPro)
- bol := MongoTool.UpdateById(ProjectColl, pid, map[string]interface{}{"$set": tmpPro})
- if bol {
- by, _ := json.Marshal(map[string]interface{}{
- "query": map[string]interface{}{
- "_id": bson.M{
- "$gte": pid,
- "$lte": pid,
- }},
- "stype": "project",
- })
- qu.Debug(string(by))
- _ = udpclient.WriteUdp(by, mu.OP_TYPE_DATA, toaddr[1])
- }
- // 内存
- p.AllIdsMapLock.Lock()
- if v, ok := p.AllIdsMap[pid]; ok {
- v.P = pro
- }
- p.AllIdsMapLock.Unlock()
- } else if index == 2 {
- (*tmpPro)["reason"] = "删除list中最后一条招标公告信息"
- backupPro(*tmpPro)
- delete(*tmpPro, "reason")
- w := len(proList) - 1
- proList = deleteSlice1(proList, proList[w])
- var pro *ProjectCache
- *tmpPro, pro = p.innerMerge(proList, *tmpPro)
- bol := MongoTool.UpdateById(ProjectColl, pid, map[string]interface{}{"$set": tmpPro})
- if bol {
- by, _ := json.Marshal(map[string]interface{}{
- "query": map[string]interface{}{
- "_id": bson.M{
- "$gte": pid,
- "$lte": pid,
- }},
- "stype": "project",
- })
- qu.Debug(string(by))
- _ = udpclient.WriteUdp(by, mu.OP_TYPE_DATA, toaddr[1])
- }
- // 内存
- p.AllIdsMapLock.Lock()
- if v, ok := p.AllIdsMap[pid]; ok {
- v.P = pro
- }
- p.AllIdsMapLock.Unlock()
- }
- }
- // 合并
- func (p *ProjectTask) ReMerge(info *Info, tmp map[string]interface{}, tmpPro map[string]interface{}) bool {
- bpn, bpc, bptc, bpb, pids, _, IDArr := p.getCompareIds(info.ProjectName, info.ProjectCode, info.PTC, info.Buyer)
- defer p.wg.Done()
- for _, m := range pids {
- defer m.Lock.Unlock()
- }
- for _, id := range IDArr {
- defer id.Lock.Unlock()
- }
- bFindProject := false
- findPid := ""
- comRes1 := []*ProjectCache{}
- comRes2 := []*ProjectCache{}
- comRes3 := []*ProjectCache{}
- for _, v := range IDArr {
- comStr := ""
- compareProject := v.P
- compareProject.score = 0
- diffTime := int64(math.Abs(float64(info.Publishtime - compareProject.LastTime)))
- if diffTime <= p.validTime {
- if CheckContain(compareProject.Agency, info.Agency) == 3 {
- continue
- }
- if ComparePlace(compareProject, info) {
- continue
- }
- info.PNBH = 0
- info.PCBH = 0
- info.PTCBH = 0
- compareStr, score := comparePNC(info, compareProject)
- resVal, pjVal := Select(compareStr, info, compareProject)
- if resVal > 0 {
- compareBuyer, compareCity, compareTime, compareAgency, compareBudget, compareBidmount, score2 := p.compareBCTABB(info, compareProject, diffTime, score)
- comStr = compareStr + compareBuyer + compareCity + compareTime + compareAgency + compareBudget + compareBidmount
- compareProject.comStr = comStr
- compareProject.pjVal = pjVal
- compareProject.resVal = resVal
- eqV := compareResult(resVal, pjVal, score2, comStr, compareBuyer, compareCity, compareTime, compareAgency, compareBudget, compareBidmount)
- if eqV == 1 {
- comRes1 = append(comRes1, compareProject)
- } else if eqV == 2 {
- comRes2 = append(comRes2, compareProject)
- } else if eqV == 3 {
- comRes3 = append(comRes3, compareProject)
- }
- }
- }
- }
- //--------------------------------对比完成-----------------------
- for kv, resN := range [][]*ProjectCache{comRes1, comRes2, comRes3} {
- if len(resN) > 0 {
- if len(resN) > 1 {
- sort.Slice(resN, func(i, j int) bool {
- return resN[i].score > resN[j].score
- })
- }
- ex := 0
- resArr := []*ProjectCache{}
- for i, res := range resN {
- choose, e := p.CompareStatus(resN[i], info)
- if !choose {
- ex = e
- resArr = append(resArr, res)
- }
- }
- if len(resArr) > 0 {
- bFindProject = true
- findPid = resArr[0].Id.Hex()
- if findPid == mongodb.BsonIdToSId(tmpPro["_id"]) {
- return false
- }
- p.updateProFiled(tmp, info, resArr[0], kv+1, resArr[0].comStr, ex)
- for k2, bv := range []int{bpn, bpc, bptc, bpb} {
- if bv > -1 {
- pids[bv].Arr = append(pids[bv].Arr, findPid)
- if k2 == 0 {
- if resArr[0].ProjectName == "" {
- resArr[0].ProjectName = info.ProjectName
- } else {
- if resArr[0].MPN == nil {
- resArr[0].MPN = []string{info.ProjectName}
- } else {
- resArr[0].MPN = append(resArr[0].MPN, info.ProjectName)
- }
- }
- } else if k2 < 3 {
- if resArr[0].ProjectCode == "" {
- resArr[0].ProjectCode = qu.If(k2 == 1, info.ProjectCode, info.PTC).(string)
- } else {
- if resArr[0].MPC == nil {
- resArr[0].MPC = []string{qu.If(k2 == 1, info.ProjectCode, info.PTC).(string)}
- } else {
- resArr[0].MPC = append(resArr[0].MPC, qu.If(k2 == 1, info.ProjectCode, info.PTC).(string))
- }
- }
- } else {
- if resArr[0].Buyer == "" {
- resArr[0].Buyer = info.Buyer
- }
- }
- }
- }
- } else {
- bFindProject = false
- findPid = ""
- }
- break
- }
- }
- if !bFindProject {
- id, p1 := p.NewProject(tmp, info)
- p.AllIdsMapLock.Lock()
- p.AllIdsMap[id] = &ID{Id: id, P: p1}
- p.AllIdsMapLock.Unlock()
- for _, m := range pids {
- m.Arr = append(m.Arr, id)
- }
- return false
- }
- return true
- }
- //内部合并
- func (p *ProjectTask) innerMerge(infoList []interface{}, tmpPro map[string]interface{}) (map[string]interface{}, *ProjectCache) {
- newP := make(map[string]interface{})
- newP["_id"] = tmpPro["_id"]
- var p1 *ProjectCache
- for k, m := range infoList {
- m1 := m.(map[string]interface{})
- temp, _ := MongoTool.FindById(ExtractColl, qu.ObjToString(m1["infoid"]), nil)
- if len(*temp) == 0 {
- temp, _ = MongoTool.FindById(ExtractColl1, qu.ObjToString(m1["infoid"]), nil)
- if len(*temp) == 0 {
- qu.Debug("extract not find id...", m1["infoid"])
- continue
- }
- }
- tempInfo := ParseInfo(*temp)
- if k == 0 {
- p1 = p.newPro(*temp, newP, tempInfo)
- } else {
- p.updateOldProField(p1, tempInfo, newP, *temp, m1)
- }
- }
- return newP, p1
- }
- func (p *ProjectTask) innerMerge1(infoList []interface{}, infoid string, tmpPro map[string]interface{}) (map[string]interface{}, *ProjectCache) {
- newP := make(map[string]interface{})
- newP["_id"] = tmpPro["_id"]
- var p1 *ProjectCache
- for k, m := range infoList {
- m1 := m.(map[string]interface{})
- if m1["infoid"] == infoid {
- continue
- }
- temp, _ := MongoTool.FindById(ExtractColl, qu.ObjToString(m1["infoid"]), nil)
- if len(*temp) == 0 {
- temp, _ = MongoTool.FindById(ExtractColl1, qu.ObjToString(m1["infoid"]), nil)
- if len(*temp) == 0 {
- qu.Debug("extract not find id...", m1["infoid"])
- continue
- }
- }
- tempInfo := ParseInfo(*temp)
- if k == 0 {
- p1 = p.newPro(*temp, newP, tempInfo)
- } else {
- p.updateOldProField(p1, tempInfo, newP, *temp, m1)
- }
- }
- return newP, p1
- }
- // 更新招标公告到新的项目中
- func (p *ProjectTask) updateProFiled(tmp map[string]interface{}, thisinfo *Info, pInfo *ProjectCache, weight int, comStr string, ex int) {
- pdata := redis.Get("project", pInfo.Id.Hex())
- projectMap := pdata.(map[string]interface{})
- bys, _ := json.Marshal(projectMap)
- var project *Project
- err := json.Unmarshal(bys, &project)
- if err != nil {
- qu.Debug("project Unmarshal err,", err)
- return
- }
- set := map[string]interface{}{}
- pInfo.Ids = append(pInfo.Ids, thisinfo.Id)
- project.Ids = append(project.Ids, thisinfo.Id)
- if len(pInfo.Ids) > 30 {
- //异常标记
- set["listtag"] = 1
- }
- if thisinfo.Publishtime > pInfo.LastTime {
- pInfo.LastTime = thisinfo.Publishtime
- project.LastTime = thisinfo.Publishtime
- set["lasttime"] = thisinfo.Publishtime
- }
- if thisinfo.TopType == "招标" {
- if thisinfo.SubType != "变更" && thisinfo.SubType != "其它" && project.Zbtime <= 0 {
- set["zbtime"] = tmp["publishtime"]
- }
- } else if thisinfo.TopType == "结果" {
- if thisinfo.SubType == "中标" || thisinfo.SubType == "成交" || thisinfo.SubType == "流标" || thisinfo.SubType == "废标" {
- if project.Jgtime > 0 {
- jg1 := int64(math.Abs(float64(project.Jgtime - thisinfo.Publishtime)))
- //公告状态和项目状态同样都是中标或者成交,
- if (thisinfo.SubType == "中标" || thisinfo.SubType == "成交") && (pInfo.Bidstatus == "中标" || pInfo.Bidstatus == "成交") {
- if jg1 > p.jgTime {
- set["jgtime"] = tmp["publishtime"]
- project.Jgtime = thisinfo.Publishtime
- }
- } else if (thisinfo.SubType == "流标" || thisinfo.SubType == "废标") && (pInfo.Bidstatus == "流标" || pInfo.Bidstatus == "废标") {
- //公告状态和项目状态同样是流标或者废标
- if jg1 > p.jgTime {
- set["jgtime"] = tmp["publishtime"]
- project.Jgtime = thisinfo.Publishtime
- }
- }
- } else {
- set["jgtime"] = tmp["publishtime"]
- project.Jgtime = thisinfo.Publishtime
- }
- }
- } else if thisinfo.SubType == "合同" {
- if pInfo.Bidstatus == "中标" || pInfo.Bidstatus == "成交" || pInfo.Bidstatus == "" {
- //中标、成交不更新jgtime
- } else {
- set["jgtime"] = tmp["publishtime"]
- project.Jgtime = thisinfo.Publishtime
- }
- }
- if thisinfo.Bidopentime > project.Bidopentime {
- project.Bidopentime = thisinfo.Bidopentime
- set["bidopentime"] = thisinfo.Bidopentime
- }
- // bidtype、bidstatus
- pInfo.Bidtype, pInfo.Bidstatus = p.GetBidTypeAndBidStatus(thisinfo)
- project.Bidtype, project.Bidstatus = p.GetBidTypeAndBidStatus(thisinfo)
- set["bidtype"] = pInfo.Bidtype
- set["bidstatus"] = pInfo.Bidstatus
- //异常标记
- if ex > 0 {
- set["exception"] = ex
- }
- //相同城市的公告才会合并到一起(全国列外)
- if thisinfo.Area != "全国" {
- pInfo.Area = thisinfo.Area
- project.Area = thisinfo.Area
- set["area"] = thisinfo.Area
- pInfo.City = thisinfo.City
- project.City = thisinfo.City
- set["city"] = thisinfo.City
- if thisinfo.District != "" {
- pInfo.District = thisinfo.District
- project.District = thisinfo.District
- set["district"] = thisinfo.District
- }
- }
- // 项目名称
- if (thisinfo.ProjectName != "" && pInfo.ProjectName == "") || (len([]rune(pInfo.ProjectName)) < 6 && thisinfo.LenPN > 6) {
- pInfo.ProjectName = thisinfo.ProjectName
- project.ProjectName = thisinfo.ProjectName
- set["projectname"] = thisinfo.ProjectName
- }
- // 项目编号
- if (pInfo.ProjectCode == "" && thisinfo.ProjectCode != "") || (len([]rune(pInfo.ProjectCode)) < 6 && len([]rune(thisinfo.ProjectCode)) > 6) {
- pInfo.ProjectCode = thisinfo.ProjectCode
- project.ProjectCode = thisinfo.ProjectCode
- set["projectcode"] = thisinfo.ProjectCode
- }
- // 采购单位
- if (pInfo.Buyer == "" && thisinfo.Buyer != "") || (len([]rune(pInfo.Buyer)) < 5 && len([]rune(thisinfo.Buyer)) > 5) {
- pInfo.Buyer = thisinfo.Buyer
- set["buyer"] = thisinfo.Buyer
- project.Buyerclass = thisinfo.Buyerclass
- set["buyerclass"] = thisinfo.Buyerclass
- }
- if pInfo.Buyer == "" {
- project.Buyerclass = ""
- set["buyerclass"] = ""
- }
- // 采购单位联系人
- if thisinfo.Buyerperson != "" {
- project.Buyerperson = thisinfo.Buyerperson
- set["buyerperson"] = thisinfo.Buyerperson
- } else {
- project.Buyerperson = ""
- set["buyerperson"] = ""
- }
- // 采购单位電話
- if thisinfo.Buyertel != "" {
- project.Buyertel = thisinfo.Buyertel
- set["buyertel"] = thisinfo.Buyertel
- } else {
- project.Buyertel = ""
- set["buyertel"] = ""
- }
- if thisinfo.ContractCode != "" {
- set["contractcode"] = project.ContractCode + "," + thisinfo.ContractCode
- }
- // 代理机构 相同的代理机构才会合并到一个项目 2020.11.9
- //if (pInfo.Agency == "" && thisinfo.Agency != "") || (len([]rune(pInfo.Agency)) < 5 && len([]rune(thisinfo.Agency)) > 5) {
- // pInfo.Agency = thisinfo.Agency
- // set["agency"] = thisinfo.Agency
- //}
- if len(thisinfo.Topscopeclass) > 0 && thisinfo.Publishtime > pInfo.LastTime {
- sort.Strings(project.Topscopeclass)
- for _, k := range thisinfo.Topscopeclass {
- if BinarySearch(project.Topscopeclass, k) == -1 {
- project.Topscopeclass = append(project.Topscopeclass, k)
- sort.Strings(project.Topscopeclass)
- }
- }
- set["topscopeclass"] = project.Topscopeclass
- }
- // 项目评审专家
- if len(thisinfo.ReviewExperts) > 0 && thisinfo.Publishtime > pInfo.LastTime {
- set["review_experts"] = thisinfo.ReviewExperts
- project.ReviewExperts = thisinfo.ReviewExperts
- }
- if thisinfo.Purchasing != "" && thisinfo.Publishtime > pInfo.LastTime {
- if project.Purchasing == "" {
- project.Purchasing = thisinfo.Purchasing
- set["purchasing"] = thisinfo.Purchasing
- } else {
- list := strings.Split(project.Purchasing, ",")
- for _, k := range list {
- if BinarySearch(strings.Split(thisinfo.Purchasing, ","), k) == -1 {
- list = append(list, k)
- sort.Strings(list)
- }
- }
- set["purchasing"] = strings.Join(list, ",")
- }
- }
- //中标候选人
- if len(thisinfo.WinnerOrder) > 0 && thisinfo.Publishtime > pInfo.LastTime {
- var list = []string{}
- for _, v := range thisinfo.WinnerOrder {
- if BinarySearch(list, qu.ObjToString(v["entname"])) == -1 {
- list = append(list, qu.ObjToString(v["entname"]))
- }
- }
- set["winnerorder"] = list
- project.Winnerorder = list
- }
- if len(thisinfo.Subscopeclass) > 0 && thisinfo.Publishtime > pInfo.LastTime {
- sort.Strings(project.Subscopeclass)
- for _, k := range thisinfo.Subscopeclass {
- if BinarySearch(project.Subscopeclass, k) == -1 {
- project.Subscopeclass = append(project.Subscopeclass, k)
- sort.Strings(project.Subscopeclass)
- }
- }
- set["subscopeclass"] = project.Subscopeclass
- set["s_subscopeclass"] = strings.Join(project.Subscopeclass, ",")
- }
- if len(thisinfo.Winners) > 0 && thisinfo.Publishtime > pInfo.LastTime {
- winners := strings.Split(project.Winners, ",")
- if len(winners) <= 0 {
- set["winner"] = qu.ObjToString(tmp["winner"])
- }
- for _, k := range thisinfo.Winners {
- if thisinfo.SubType == "流标" || thisinfo.SubType == "废标" {
- if BinarySearch(winners, k) != -1 {
- deleteSlice(winners, k, "")
- sort.Strings(winners)
- }
- } else {
- if BinarySearch(winners, k) == -1 {
- winners = append(winners, k)
- sort.Strings(winners)
- }
- }
- }
- set["s_winner"] = strings.Join(winners, ",")
- }
- if thisinfo.HasPackage { //多包处理
- set["multipackage"] = 1
- pkg := PackageFormat(thisinfo, project)
- project.Package = pkg
- set["package"] = project.Package
- }
- //处理多包后,计算预算金额、中标金额
- CountAmount(project, thisinfo, tmp)
- if project.Budget >= 0 && project.Budgettag != 1 {
- pInfo.Budget = project.Budget
- set["budget"] = pInfo.Budget
- set["budgettag"] = 0
- }
- if pInfo.Bidamount >= 0 && project.Bidamounttag != 1 {
- pInfo.Bidamount = project.Bidamount
- set["bidamount"] = pInfo.Bidamount
- set["bidamounttag"] = 0
- }
- if pInfo.Bidamount > 0 {
- set["sortprice"] = pInfo.Bidamount
- } else {
- if pInfo.Budget > 0 {
- set["sortprice"] = pInfo.Budget
- }
- }
- infofield := InfoField{
- Budget: thisinfo.Budget,
- Bidamount: thisinfo.Bidamount,
- ContractCode: thisinfo.ContractCode,
- ProjectName: thisinfo.ProjectName,
- ProjectCode: thisinfo.ProjectCode,
- Bidstatus: pInfo.Bidstatus,
- }
- copyMap := Copy(project.InfoFiled).(map[string]InfoField)
- copyMap[thisinfo.Id] = infofield
- tmpMap := make(map[string]interface{})
- for k, v := range copyMap {
- tmpMap[k] = StructToMap(v)
- }
- tmpMap[thisinfo.Id] = StructToMap(infofield)
- project.InfoFiled = copyMap
- set["infofield"] = tmpMap
- set["mpn"] = pInfo.MPN
- set["mpc"] = pInfo.MPC
- set["updatetime"] = p.pici
- redis.PutCKV("project", project.Id.Hex(), set)
- update := map[string]interface{}{}
- if len(set) > 0 {
- update["$set"] = set
- }
- push := p.PushListInfo(tmp, thisinfo.Id)
- push["s_winner"] = strings.Join(thisinfo.Winners, ",")
- push["compareStr"] = comStr
- push["resVal"] = pInfo.resVal
- push["pjVal"] = pInfo.pjVal
- update["$push"] = map[string]interface{}{
- "list": push,
- "ids": thisinfo.Id,
- }
- bol := MongoTool.UpdateById(ProjectColl, pInfo.Id.Hex(), update)
- if bol {
- by, _ := json.Marshal(map[string]interface{}{
- "query": map[string]interface{}{
- "_id": bson.M{
- "$gte": pInfo.Id.Hex(),
- "$lte": pInfo.Id.Hex(),
- }},
- "stype": "project",
- })
- qu.Debug(string(by))
- _ = udpclient.WriteUdp(by, mu.OP_TYPE_DATA, toaddr[1])
- }
- }
- // 内部合并时,原有项目id基础上新建项目
- func (p *ProjectTask) newPro(tmp, tmpPro map[string]interface{}, thisinfo *Info) *ProjectCache {
- for _, f := range FIELDS {
- if tmp[f] != nil && tmp[f] != "" {
- tmpPro[f] = tmp[f]
- }
- }
- bidopentime := qu.Int64All(tmp["bidopentime"])
- if bidopentime > 0 {
- tmpPro["bidopentime"] = bidopentime
- }
- //异常标记
- if thisinfo.TopType != "招标" && thisinfo.TopType != "拟建" && thisinfo.TopType != "预告" {
- tmpPro["exception"] = 1
- }
- //projecthref保存
- if jsonData, ok := tmp["jsondata"].(map[string]interface{}); ok {
- if jsonData != nil && qu.ObjToString(jsonData["projecthref"]) != "" {
- tmpPro["projecthref"] = jsonData["projecthref"]
- }
- }
- //合同编号
- if thisinfo.ContractCode != "" {
- tmpPro["contractcode"] = thisinfo.ContractCode
- }
- bs, bt := p.GetBidTypeAndBidStatus(thisinfo)
- tmpPro["bidtype"] = bs
- tmpPro["bidstatus"] = bt
- pkg := PackageFormat(thisinfo, nil)
- p1 := p.NewCachePinfo(tmpPro["_id"].(primitive.ObjectID), thisinfo, bs, bt)
- now := time.Now().Unix()
- tmpPro["createtime"] = now
- tmpPro["sourceinfoid"] = thisinfo.Id
- tmpPro["sourceinfourl"] = tmp["href"]
- tmpPro["firsttime"] = tmp["publishtime"]
- tmpPro["lasttime"] = tmp["publishtime"]
- tmpPro["pici"] = tmp["comeintime"]
- tmpPro["ids"] = []string{thisinfo.Id}
- if thisinfo.TopType == "招标" {
- if thisinfo.SubType != "变更" && thisinfo.SubType != "其它" {
- tmpPro["zbtime"] = tmp["publishtime"]
- }
- } else if thisinfo.TopType == "结果" || thisinfo.SubType == "合同" {
- tmpPro["jgtime"] = tmp["publishtime"]
- }
- if len(thisinfo.Subscopeclass) > 0 {
- tmpPro["s_subscopeclass"] = strings.Join(thisinfo.Subscopeclass, ",")
- }
- if len(thisinfo.Winners) > 0 {
- tmpPro["s_winner"] = strings.Join(thisinfo.Winners, ",")
- }
- if thisinfo.HasPackage {
- tmpPro["multipackage"] = 1
- tmpPro["package"] = pkg
- } else {
- tmpPro["multipackage"] = 0
- }
- //项目评审专家
- if len(thisinfo.ReviewExperts) > 0 {
- tmpPro["review_experts"] = thisinfo.ReviewExperts
- }
- //标的物
- if thisinfo.Purchasing != "" {
- tmpPro["purchasing"] = thisinfo.Purchasing
- }
- //中标候选人
- if len(thisinfo.WinnerOrder) > 0 {
- var list = []string{}
- for _, v := range thisinfo.WinnerOrder {
- if BinarySearch(list, qu.ObjToString(v["entname"])) == -1 {
- list = append(list, qu.ObjToString(v["entname"]))
- }
- }
- tmpPro["winnerorder"] = list
- }
- infofield := InfoField{
- Budget: thisinfo.Budget,
- Bidamount: thisinfo.Bidamount,
- ContractCode: thisinfo.ContractCode,
- ProjectName: thisinfo.ProjectName,
- ProjectCode: thisinfo.ProjectCode,
- Bidstatus: bs,
- }
- res := StructToMap(infofield)
- tmpPro["infofield"] = map[string]interface{}{
- thisinfo.Id: res,
- }
- if tmp["budget"] != nil && tmp["budget"] != "" {
- tmpPro["budget"] = thisinfo.Budget
- tmpPro["budgettag"] = 0
- } else {
- tmpPro["budgettag"] = 1
- }
- if tmp["bidamount"] != nil && tmp["bidamount"] != "" {
- tmpPro["bidamount"] = thisinfo.Bidamount
- tmpPro["bidamounttag"] = 0
- } else {
- tmpPro["bidamounttag"] = 1
- }
- if p1.Bidamount > 0 {
- tmpPro["sortprice"] = p1.Bidamount
- } else if p1.Budget > 0 {
- tmpPro["sortprice"] = p1.Budget
- }
- push := p.PushListInfo(tmp, thisinfo.Id)
- push["s_winner"] = strings.Join(thisinfo.Winners, ",")
- tmpPro["list"] = []map[string]interface{}{
- push,
- }
- return &p1
- }
- // 合并字段到老项目中
- func (p *ProjectTask) updateOldProField(pInfo *ProjectCache, thisinfo *Info, tmpPro, tmp, m1 map[string]interface{}) {
- pdata := redis.Get("project", pInfo.Id.Hex())
- projectMap := pdata.(map[string]interface{})
- bys, _ := json.Marshal(projectMap)
- var project *Project
- err := json.Unmarshal(bys, &project)
- if err != nil {
- qu.Debug("project Unmarshal err,", err)
- return
- }
- if len(pInfo.Ids) > 30 {
- //异常标记
- tmpPro["listtag"] = 1
- }
- if thisinfo.Publishtime > pInfo.LastTime {
- pInfo.LastTime = thisinfo.Publishtime
- project.LastTime = thisinfo.Publishtime
- tmpPro["lasttime"] = thisinfo.Publishtime
- }
- if thisinfo.TopType == "招标" {
- if thisinfo.SubType != "变更" && thisinfo.SubType != "其它" && project.Zbtime <= 0 {
- tmpPro["zbtime"] = tmp["publishtime"]
- }
- } else if thisinfo.TopType == "结果" {
- if thisinfo.SubType == "中标" || thisinfo.SubType == "成交" || thisinfo.SubType == "流标" || thisinfo.SubType == "废标" {
- if project.Jgtime > 0 {
- jg1 := int64(math.Abs(float64(project.Jgtime - thisinfo.Publishtime)))
- //公告状态和项目状态同样都是中标或者成交,
- if (thisinfo.SubType == "中标" || thisinfo.SubType == "成交") && (pInfo.Bidstatus == "中标" || pInfo.Bidstatus == "成交") {
- if jg1 > p.jgTime {
- tmpPro["jgtime"] = tmp["publishtime"]
- project.Jgtime = thisinfo.Publishtime
- }
- } else if (thisinfo.SubType == "流标" || thisinfo.SubType == "废标") && (pInfo.Bidstatus == "流标" || pInfo.Bidstatus == "废标") {
- //公告状态和项目状态同样是流标或者废标
- if jg1 > p.jgTime {
- tmpPro["jgtime"] = tmp["publishtime"]
- project.Jgtime = thisinfo.Publishtime
- }
- }
- } else {
- tmpPro["jgtime"] = tmp["publishtime"]
- project.Jgtime = thisinfo.Publishtime
- }
- }
- } else if thisinfo.SubType == "合同" {
- if pInfo.Bidstatus == "中标" || pInfo.Bidstatus == "成交" || pInfo.Bidstatus == "" {
- //中标、成交不更新jgtime
- } else {
- tmpPro["jgtime"] = tmp["publishtime"]
- project.Jgtime = thisinfo.Publishtime
- }
- }
- if thisinfo.Bidopentime > project.Bidopentime {
- project.Bidopentime = thisinfo.Bidopentime
- tmpPro["bidopentime"] = thisinfo.Bidopentime
- }
- // bidtype、bidstatus
- pInfo.Bidtype, pInfo.Bidstatus = p.GetBidTypeAndBidStatus(thisinfo)
- project.Bidtype, project.Bidstatus = p.GetBidTypeAndBidStatus(thisinfo)
- tmpPro["bidtype"] = pInfo.Bidtype
- tmpPro["bidstatus"] = pInfo.Bidstatus
- //相同城市的公告才会合并到一起(全国列外)
- if thisinfo.Area != "全国" {
- pInfo.Area = thisinfo.Area
- project.Area = thisinfo.Area
- tmpPro["area"] = thisinfo.Area
- pInfo.City = thisinfo.City
- project.City = thisinfo.City
- tmpPro["city"] = thisinfo.City
- if thisinfo.District != "" {
- pInfo.District = thisinfo.District
- project.District = thisinfo.District
- tmpPro["district"] = thisinfo.District
- }
- }
- // 项目名称
- if (thisinfo.ProjectName != "" && pInfo.ProjectName == "") || (len([]rune(pInfo.ProjectName)) < 6 && thisinfo.LenPN > 6) {
- pInfo.ProjectName = thisinfo.ProjectName
- project.ProjectName = thisinfo.ProjectName
- tmpPro["projectname"] = thisinfo.ProjectName
- }
- // 项目编号
- if (pInfo.ProjectCode == "" && thisinfo.ProjectCode != "") || (len([]rune(pInfo.ProjectCode)) < 6 && len([]rune(thisinfo.ProjectCode)) > 6) {
- pInfo.ProjectCode = thisinfo.ProjectCode
- project.ProjectCode = thisinfo.ProjectCode
- tmpPro["projectcode"] = thisinfo.ProjectCode
- }
- // 采购单位
- if (pInfo.Buyer == "" && thisinfo.Buyer != "") || (len([]rune(pInfo.Buyer)) < 5 && len([]rune(thisinfo.Buyer)) > 5) {
- pInfo.Buyer = thisinfo.Buyer
- tmpPro["buyer"] = thisinfo.Buyer
- project.Buyerclass = thisinfo.Buyerclass
- tmpPro["buyerclass"] = thisinfo.Buyerclass
- }
- if pInfo.Buyer == "" {
- project.Buyerclass = ""
- tmpPro["buyerclass"] = ""
- }
- // 采购单位联系人
- if thisinfo.Buyerperson != "" {
- project.Buyerperson = thisinfo.Buyerperson
- tmpPro["buyerperson"] = thisinfo.Buyerperson
- } else {
- project.Buyerperson = ""
- tmpPro["buyerperson"] = ""
- }
- // 采购单位電話
- if thisinfo.Buyertel != "" {
- project.Buyertel = thisinfo.Buyertel
- tmpPro["buyertel"] = thisinfo.Buyertel
- } else {
- project.Buyertel = ""
- tmpPro["buyertel"] = ""
- }
- if thisinfo.ContractCode != "" {
- tmpPro["contractcode"] = project.ContractCode + "," + thisinfo.ContractCode
- }
- // 代理机构 相同的代理机构才会合并到一个项目 2020.11.9
- //if (pInfo.Agency == "" && thisinfo.Agency != "") || (len([]rune(pInfo.Agency)) < 5 && len([]rune(thisinfo.Agency)) > 5) {
- // pInfo.Agency = thisinfo.Agency
- // set["agency"] = thisinfo.Agency
- //}
- if len(thisinfo.Topscopeclass) > 0 {
- sort.Strings(project.Topscopeclass)
- for _, k := range thisinfo.Topscopeclass {
- if BinarySearch(project.Topscopeclass, k) == -1 {
- project.Topscopeclass = append(project.Topscopeclass, k)
- sort.Strings(project.Topscopeclass)
- }
- }
- tmpPro["topscopeclass"] = project.Topscopeclass
- }
- // 项目评审专家
- if len(thisinfo.ReviewExperts) > 0 {
- tmpPro["review_experts"] = thisinfo.ReviewExperts
- project.ReviewExperts = thisinfo.ReviewExperts
- }
- if thisinfo.Purchasing != "" {
- if project.Purchasing == "" {
- project.Purchasing = thisinfo.Purchasing
- tmpPro["purchasing"] = thisinfo.Purchasing
- } else {
- list := strings.Split(project.Purchasing, ",")
- for _, k := range list {
- if BinarySearch(strings.Split(thisinfo.Purchasing, ","), k) == -1 {
- list = append(list, k)
- sort.Strings(list)
- }
- }
- tmpPro["purchasing"] = strings.Join(list, ",")
- }
- }
- //中标候选人
- if len(thisinfo.WinnerOrder) > 0 {
- var list = []string{}
- for _, v := range thisinfo.WinnerOrder {
- if BinarySearch(list, qu.ObjToString(v["entname"])) == -1 {
- list = append(list, qu.ObjToString(v["entname"]))
- }
- }
- tmpPro["winnerorder"] = list
- project.Winnerorder = list
- }
- if len(thisinfo.Subscopeclass) > 0 {
- sort.Strings(project.Subscopeclass)
- for _, k := range thisinfo.Subscopeclass {
- if BinarySearch(project.Subscopeclass, k) == -1 {
- project.Subscopeclass = append(project.Subscopeclass, k)
- sort.Strings(project.Subscopeclass)
- }
- }
- tmpPro["subscopeclass"] = project.Subscopeclass
- tmpPro["s_subscopeclass"] = strings.Join(project.Subscopeclass, ",")
- }
- if len(thisinfo.Winners) > 0 {
- if len(project.Winners) <= 0 {
- tmpPro["winner"] = qu.ObjToString(tmp["winner"])
- }
- winners := strings.Split(project.Winners, ",")
- for _, k := range thisinfo.Winners {
- if thisinfo.SubType == "流标" || thisinfo.SubType == "废标" {
- if BinarySearch(winners, k) != -1 {
- deleteSlice(winners, k, "")
- }
- } else {
- if BinarySearch(winners, k) == -1 {
- winners = append(winners, k)
- }
- }
- }
- tmpPro["s_winner"] = strings.Join(winners, ",")
- }
- if thisinfo.HasPackage { //多包处理
- tmpPro["multipackage"] = 1
- pkg := PackageFormat(thisinfo, project)
- project.Package = pkg
- tmpPro["package"] = project.Package
- }
- //处理多包后,计算预算金额、中标金额
- CountAmount(project, thisinfo, tmp)
- if project.Budget >= 0 && project.Budgettag != 1 {
- pInfo.Budget = project.Budget
- tmpPro["budget"] = pInfo.Budget
- tmpPro["budgettag"] = 0
- }
- if project.Bidamount >= 0 && project.Bidamounttag != 1 {
- pInfo.Bidamount = project.Bidamount
- tmpPro["bidamount"] = pInfo.Bidamount
- tmpPro["bidamounttag"] = 0
- }
- if pInfo.Bidamount >= pInfo.Budget {
- tmpPro["sortprice"] = pInfo.Bidamount
- } else if pInfo.Budget >= pInfo.Bidamount {
- tmpPro["sortprice"] = pInfo.Budget
- }
- infofield := InfoField{
- Budget: thisinfo.Budget,
- Bidamount: thisinfo.Bidamount,
- ContractCode: thisinfo.ContractCode,
- ProjectName: thisinfo.ProjectName,
- ProjectCode: thisinfo.ProjectCode,
- Bidstatus: pInfo.Bidstatus,
- }
- copyMap := Copy(project.InfoFiled).(map[string]InfoField)
- copyMap[thisinfo.Id] = infofield
- tmpMap := make(map[string]interface{})
- for k, v := range copyMap {
- tmpMap[k] = StructToMap(v)
- }
- tmpMap[thisinfo.Id] = StructToMap(infofield)
- project.InfoFiled = copyMap
- tmpPro["infofield"] = tmpMap
- tmpPro["mpn"] = pInfo.MPN
- tmpPro["mpc"] = pInfo.MPC
- tmpPro["updatetime"] = p.pici
- push := p.PushListInfo(tmp, thisinfo.Id)
- push["s_winner"] = strings.Join(thisinfo.Winners, ",")
- push["compareStr"] = m1["compareStr"]
- push["resVal"] = m1["resVal"]
- push["pjVal"] = m1["pjVal"]
- list := tmpPro["list"].([]map[string]interface{})
- tmpPro["list"] = append(list, push)
- tmpPro["ids"] = append(tmpPro["ids"].([]string), thisinfo.Id)
- }
- func deleteSlice1(arr []interface{}, v interface{}) []interface{} {
- for k, v1 := range arr {
- if reflect.DeepEqual(v1, v) {
- return append(arr[:k], arr[k+1:]...)
- }
- }
- return arr
- }
- // 修改字段值
- func UpdateValue(proMap map[string]interface{}, index, position int, modifyMap map[string]interface{}) map[string]interface{} {
- updataSet := make(map[string]interface{})
- infoList := proMap["list"].([]interface{})
- tempMap := infoList[position].(map[string]interface{})
- for k := range modifyMap {
- //项目中lsit大小等于1 或者 修改的招标公告处于项目的list中最后一个
- if len(infoList) == 1 || index == 2 {
- if k == "budget" || k == "bidamount" {
- if proMap["sortprice"] == proMap[k] {
- updataSet["sortprice"] = modifyMap[k]
- }
- updataSet[k] = modifyMap[k]
- proMap[k] = modifyMap[k]
- tempMap[k] = modifyMap[k]
- } else {
- updataSet[k] = modifyMap[k]
- proMap[k] = modifyMap[k]
- tempMap[k] = modifyMap[k]
- }
- } else {
- tempMap[k] = modifyMap[k]
- if k == "budget" || k == "bidamount" {
- if proMap["sortprice"] == proMap[k] {
- proMap["sortprice"] = modifyMap[k]
- }
- updataSet[k] = modifyMap[k]
- proMap[k] = modifyMap[k]
- }
- // 有条件更新项目外围字段值(非空)
- if proMap[k] == nil || qu.ObjToString(k) == "" {
- updataSet[k] = modifyMap[k]
- proMap[k] = modifyMap[k]
- }
- }
- }
- return updataSet
- }
- //备份(快照)
- func backupPro(tmp map[string]interface{}) {
- tmp1 := make(map[string]interface{})
- for k, v := range tmp {
- tmp1[k] = v
- }
- if Sysconfig["backupFlag"].(bool) {
- tmp1["sourceprojectid"] = mongodb.BsonIdToSId(tmp1["_id"])
- delete(tmp1, "_id")
- MongoTool.Save(BackupColl, tmp1)
- }
- }
- // 删除原有项目数据
- func delOldPro(pid string) {
- t := MongoTool.Delete(ProjectColl, map[string]interface{}{"_id": mongodb.StringTOBsonId(pid)})
- if t >= 0 {
- client := Es.GetEsConn()
- defer Es.DestoryEsConn(client)
- Es.DelById(Index, Itype, pid)
- }
- }
- // 修改内存中的数据
- func (p *ProjectTask) modifyMem(tmpPro map[string]interface{}) {
- pid := qu.ObjToString(tmpPro["_id"])
- var pro ProjectCache
- err := mapstructure.Decode(tmpPro, &pro)
- if err != nil {
- qu.Debug(err)
- }
- pro.Id = mongodb.StringTOBsonId(pid)
- tmpMap := make(map[string]InfoField)
- infoMap := tmpPro["infofield"].(map[string]interface{})
- for _, v := range infoMap {
- var field InfoField
- b, _ := json.Marshal(v)
- _ = json.Unmarshal(b, &field)
- tmpMap[pid] = field
- }
- p.AllIdsMapLock.Lock()
- if v, ok := p.AllIdsMap[pid]; ok {
- v.P = &pro
- }
- p.AllIdsMapLock.Unlock()
- p.printMemPro(pid)
- }
- // 打印内存中的项目信息
- func (p *ProjectTask) printMemPro(pid string) {
- p.AllIdsMapLock.Lock()
- if v, ok := p.AllIdsMap[pid]; ok {
- qu.Debug("mem pro ----------", *v.P)
- }
- p.AllIdsMapLock.Unlock()
- }
- // @Description id不变,内容变化 重新进行项目合并
- // @Author J 2022/8/10 14:51
- func (p *ProjectTask) taskinfo(id string) {
- tmpPro, _ := MongoTool.FindOneByField(ProjectColl, map[string]interface{}{"ids": id}, nil)
- if tmpPro == nil || len(*tmpPro) == 0 {
- qu.Debug(fmt.Sprintf("taskinfo bidding id=%s 未查询到项目数据", id))
- return
- }
- pid := mongodb.BsonIdToSId((*tmpPro)["_id"])
- ids := qu.ObjArrToStringArr((*tmpPro)["ids"].([]interface{}))
- list := (*tmpPro)["list"].([]interface{})
- var newP map[string]interface{}
- var p1 *ProjectCache
- for i, s := range ids {
- temp, _ := MongoTool.FindById(ExtractColl, s, nil)
- if temp == nil || len(*temp) == 0 {
- temp, _ = MongoTool.FindById(ExtractColl1, s, nil)
- if temp == nil || len(*temp) == 0 {
- qu.Debug("extract not find id...", s)
- return
- }
- }
- push := p.PushListInfo(*temp, id)
- if s == id {
- list[i] = push
- }
- info := ParseInfo(*temp)
- if i == 0 {
- newP, p1 = p.createPro(*temp, info, pid)
- } else {
- p.updatePro(newP, *temp, p1, info)
- }
- }
- newP["ids"] = ids
- newP["pici"] = p.pici
- p.AllIdsMapLock.Lock()
- _, ok := p.AllIdsMap[pid]
- if ok {
- redis.PutCKV("project", pid, newP)
- p.AllIdsMap[id] = &ID{Id: id, P: p1}
- }
- p.AllIdsMapLock.Unlock()
- newP["list"] = list
- if len(newP) > 0 {
- updateInfo := []map[string]interface{}{
- {
- "_id": mongodb.StringTOBsonId(pid),
- },
- {"$set": newP},
- }
- p.updatePool <- updateInfo
- }
- }
- // @Description 创建项目
- // @Author J 2022/8/11 09:17
- func (p *ProjectTask) createPro(tmp map[string]interface{}, thisinfo *Info, pid string) (map[string]interface{}, *ProjectCache) {
- set := map[string]interface{}{}
- set["_id"] = mongodb.StringTOBsonId(pid)
- for _, f := range FIELDS {
- if tmp[f] != nil && tmp[f] != "" {
- set[f] = tmp[f]
- }
- }
- bidopentime := qu.Int64All(tmp["bidopentime"])
- if bidopentime > 0 {
- set["bidopentime"] = bidopentime
- }
- //异常标记
- if thisinfo.TopType != "招标" && thisinfo.TopType != "拟建" && thisinfo.TopType != "预告" {
- set["exception"] = 1
- }
- //projecthref保存
- if jsonData, ok := tmp["jsondata"].(map[string]interface{}); ok {
- if jsonData != nil && qu.ObjToString(jsonData["projecthref"]) != "" {
- set["projecthref"] = jsonData["projecthref"]
- }
- }
- //合同编号
- if thisinfo.ContractCode != "" {
- set["contractcode"] = thisinfo.ContractCode
- }
- bt := qu.ObjToString(tmp["toptype"])
- bs := qu.ObjToString(tmp["subtype"])
- p.mapBidLock.Lock()
- if thisinfo.Infoformat == 2 || thisinfo.SubType == "拟建" {
- set["bidstatus"] = "拟建"
- bt = "拟建"
- } else {
- if bidtype[bs] != "" {
- set["bidtype"] = bidtype[bs]
- } else {
- set["bidtype"] = "招标"
- }
- if bt == "招标" {
- set["projectscope"] = qu.ObjToString(tmp["projectscope"])
- set["bidstatus"] = bt
- } else {
- if bidstatus[bs] != "" {
- set["bidstatus"] = thisinfo.SubType
- bt = thisinfo.SubType
- } else if bs == "" {
- set["bidstatus"] = ""
- bt = ""
- } else {
- set["bidstatus"] = "其它"
- bt = "其它"
- }
- }
- }
- p.mapBidLock.Unlock()
- pkg := PackageFormat(thisinfo, nil)
- p1 := p.NewCachePinfo(mongodb.StringTOBsonId(pid), thisinfo, bs, bt)
- now := time.Now().Unix()
- set["createtime"] = now
- set["sourceinfoid"] = thisinfo.Id
- set["sourceinfourl"] = tmp["href"]
- set["firsttime"] = tmp["publishtime"]
- set["lasttime"] = tmp["publishtime"]
- //增量用系统时间,全量(历史)入库时间
- if p.currentType == "pl" {
- set["pici"] = tmp["comeintime"]
- } else {
- set["pici"] = p.pici
- }
- set["ids"] = []string{thisinfo.Id}
- if thisinfo.TopType == "招标" {
- //if thisinfo.SubType != "变更" && thisinfo.SubType != "其它" {
- set["zbtime"] = tmp["publishtime"]
- //}
- } else if thisinfo.TopType == "结果" || thisinfo.SubType == "合同" {
- set["jgtime"] = tmp["publishtime"]
- }
- if len(thisinfo.Subscopeclass) > 0 {
- set["s_subscopeclass"] = strings.Join(thisinfo.Subscopeclass, ",")
- }
- if len(thisinfo.Winners) > 0 {
- set["s_winner"] = strings.Join(thisinfo.Winners, ",")
- }
- if thisinfo.HasPackage {
- set["multipackage"] = 1
- set["package"] = pkg
- } else {
- set["multipackage"] = 0
- }
- //项目评审专家
- if len(thisinfo.ReviewExperts) > 0 {
- set["review_experts"] = thisinfo.ReviewExperts
- }
- //标的物
- if thisinfo.Purchasing != "" {
- list := Duplicate(strings.Split(thisinfo.Purchasing, ",")) //标的物 去重 03/03
- p := strings.Join(qu.ObjArrToStringArr(list), ",")
- set["purchasing"] = p
- }
- //中标候选人
- if len(thisinfo.WinnerOrder) > 0 {
- var list = []string{}
- for _, v := range thisinfo.WinnerOrder {
- if BinarySearch(list, qu.ObjToString(v["entname"])) == -1 {
- list = append(list, qu.ObjToString(v["entname"]))
- }
- }
- set["winnerorder"] = list
- }
- //项目规模
- if len(thisinfo.ProjectScale) > 0 {
- set["project_scale"] = thisinfo.ProjectScale
- }
- //工期时长
- if thisinfo.ProjectDuration > 0 {
- set["project_duration"] = thisinfo.ProjectDuration
- }
- // 工期单位
- if thisinfo.ProjectDuration > 0 && len(thisinfo.ProjectTimeUnit) > 0 {
- set["project_timeunit"] = thisinfo.ProjectTimeUnit
- }
- //开工日期
- if thisinfo.ProjectStartDate > 0 {
- set["project_startdate"] = thisinfo.ProjectStartDate
- }
- //竣工日期
- if thisinfo.ProjectCompleteDate > 0 {
- set["project_completedate"] = thisinfo.ProjectCompleteDate
- }
- //付款方式
- if len(thisinfo.Payway) > 0 {
- set["payway"] = thisinfo.Payway
- }
- // 履约保证金
- if tmp["contract_guarantee"] != nil {
- set["contract_guarantee"] = thisinfo.ContractGuarantee
- }
- // 投标保证金
- if tmp["bid_guarantee"] != nil {
- set["bid_guarantee"] = thisinfo.BidGuarantee
- }
- // 资质条件
- if len(thisinfo.Qualifies) > 0 {
- var str []string
- for _, v := range thisinfo.Qualifies {
- if len(qu.ObjToString(v["key"])) > 0 {
- if BinarySearch(str, qu.ObjToString(v["key"])) == -1 {
- str = append(str, qu.ObjToString(v["key"]))
- }
- }
- }
- if len(str) > 0 {
- set["qualifies"] = strings.Join(str, ",")
- }
- }
- if len(thisinfo.EntIdList) > 0 {
- set["entidlist"] = thisinfo.EntIdList
- }
- // first_cooperation
- if p1.Buyer != "" && len(thisinfo.Winners) > 0 {
- FirstCooperation(set, p1.Buyer, thisinfo.Winners, thisinfo.EntIdList)
- }
- infofield := InfoField{
- Budget: thisinfo.Budget,
- Bidamount: thisinfo.Bidamount,
- ContractCode: thisinfo.ContractCode,
- ProjectName: thisinfo.ProjectName,
- ProjectCode: thisinfo.ProjectCode,
- Bidstatus: bs,
- }
- res := StructToMap(infofield)
- set["infofield"] = map[string]interface{}{
- thisinfo.Id: res,
- }
- if tmp["budget"] != nil && tmp["budget"] != "" {
- set["budget"] = thisinfo.Budget
- set["budgettag"] = 0
- } else {
- set["budgettag"] = 1
- }
- if tmp["bidamount"] != nil && tmp["bidamount"] != "" {
- set["bidamount"] = thisinfo.Bidamount
- set["bidamounttag"] = 0
- } else {
- set["bidamounttag"] = 1
- }
- if p1.Bidamount > 0 {
- set["sortprice"] = p1.Bidamount
- } else {
- if p1.Budget > 0 {
- set["sortprice"] = p1.Budget
- }
- }
- return set, &p1
- }
- // @Description id不变,内容覆盖 修改项目
- // @Author J 2022/8/10 17:00
- func (p *ProjectTask) updatePro(set, tmp map[string]interface{}, pInfo *ProjectCache, thisinfo *Info) {
- bys, _ := json.Marshal(set)
- var project *Project
- err := json.Unmarshal(bys, &project)
- if err != nil {
- qu.Debug("project Unmarshal err,", err)
- return
- }
- //zbtime、lasttime、jgtime
- pInfo.LastTime = thisinfo.Publishtime
- set["lasttime"] = thisinfo.Publishtime
- if thisinfo.TopType == "招标" {
- if project.Zbtime <= 0 {
- project.Zbtime = thisinfo.Publishtime
- set["zbtime"] = tmp["publishtime"]
- }
- if project.Jgtime > 0 {
- project.Jgtime = int64(0)
- set["jgtime"] = int64(0)
- }
- } else if thisinfo.TopType == "结果" {
- if thisinfo.SubType == "中标" || thisinfo.SubType == "成交" || thisinfo.SubType == "流标" || thisinfo.SubType == "废标" {
- if project.Jgtime > 0 {
- //jg1 := int64(math.Abs(float64(pInfo.Jgtime - thisinfo.Publishtime)))
- //公告状态和项目状态同样都是中标或者成交,
- if thisinfo.SubType == "成交" && project.Bidstatus == "中标" {
- if p.jgTime < thisinfo.Publishtime {
- project.Jgtime = thisinfo.Publishtime
- set["jgtime"] = tmp["publishtime"]
- }
- //公告状态和项目状态同样是流标或者废标
- } else if (thisinfo.SubType == "流标" || thisinfo.SubType == "废标") && (project.Bidstatus == "流标" || project.Bidstatus == "废标") {
- if p.jgTime < thisinfo.Publishtime {
- project.Jgtime = thisinfo.Publishtime
- set["jgtime"] = tmp["publishtime"]
- }
- }
- } else {
- project.Jgtime = thisinfo.Publishtime
- set["jgtime"] = tmp["publishtime"]
- }
- }
- } else if thisinfo.SubType == "合同" {
- if project.Bidstatus == "中标" || project.Bidstatus == "成交" || project.Bidstatus == "" {
- //中标、成交不更新jgtime
- } else {
- project.Jgtime = thisinfo.Publishtime
- set["jgtime"] = tmp["publishtime"]
- }
- }
- if thisinfo.Bidopentime > project.Bidopentime {
- project.Bidopentime = thisinfo.Bidopentime
- set["bidopentime"] = project.Bidopentime
- }
- bt := qu.ObjToString(tmp["toptype"])
- bs := qu.ObjToString(tmp["subtype"])
- p.mapBidLock.Lock()
- if bt == "招标" {
- //招标状态,更新projectscope
- if tmp["projectscope"] != nil {
- set["projectscope"] = qu.ObjToString(tmp["projectscope"])
- }
- set["bidstatus"] = bt
- project.Bidstatus = bt
- if bidtype[bs] != "" {
- set["bidtype"] = bidtype[bs]
- project.Bidtype = bidtype[bs]
- } else {
- set["bidtype"] = "招标"
- project.Bidtype = "招标"
- }
- } else {
- if bidstatus[bs] != "" {
- set["bidstatus"] = thisinfo.SubType
- project.Bidstatus = thisinfo.SubType
- } else if thisinfo.Infoformat == 2 {
- set["bidstatus"] = "拟建"
- project.Bidstatus = "拟建"
- } else if bs == "" && bt == "结果" {
- if project.Bidstatus == "招标" {
- set["bidstatus"] = ""
- project.Bidstatus = ""
- }
- } else {
- set["bidstatus"] = "其它"
- project.Bidstatus = "其它"
- }
- }
- p.mapBidLock.Unlock()
- //相同城市的公告才会合并到一起(全国列外)
- if thisinfo.Area != "全国" {
- pInfo.Area = thisinfo.Area
- project.Area = thisinfo.Area
- set["area"] = thisinfo.Area
- if thisinfo.City != "" {
- pInfo.City = thisinfo.City
- project.City = thisinfo.City
- set["city"] = thisinfo.City
- }
- if thisinfo.District != "" {
- pInfo.District = thisinfo.District
- project.District = thisinfo.District
- set["district"] = thisinfo.District
- }
- }
- //项目名称
- //if (thisinfo.ProjectName != "" && pInfo.ProjectName == "") || (len([]rune(pInfo.ProjectName)) < 6 && thisinfo.LenPN > 6) {
- if pInfo.ProjectName == "" && thisinfo.ProjectName != "" {
- pInfo.ProjectName = thisinfo.ProjectName
- project.ProjectName = thisinfo.ProjectName
- set["projectname"] = thisinfo.ProjectName
- }
- //7--项目编号
- //if (pInfo.ProjectCode == "" && thisinfo.ProjectCode != "") || (len([]rune(pInfo.ProjectCode)) < 6 && len([]rune(thisinfo.ProjectCode)) > 6) {
- if pInfo.ProjectCode == "" && thisinfo.ProjectCode != "" {
- pInfo.ProjectCode = thisinfo.ProjectCode
- project.ProjectCode = thisinfo.ProjectCode
- set["projectcode"] = thisinfo.ProjectCode
- }
- //7--采购单位
- if (pInfo.Buyer == "" && thisinfo.Buyer != "") || (len([]rune(pInfo.Buyer)) < 5 && len([]rune(thisinfo.Buyer)) > 5) {
- pInfo.Buyer = thisinfo.Buyer
- project.Buyer = thisinfo.Buyer
- set["buyer"] = thisinfo.Buyer
- project.Buyerclass = thisinfo.Buyerclass
- set["buyerclass"] = thisinfo.Buyerclass
- }
- if pInfo.Buyer == "" {
- project.Buyerclass = ""
- set["buyerclass"] = ""
- }
- //采购单位联系人
- if thisinfo.Buyerperson != "" {
- project.Buyerperson = thisinfo.Buyerperson
- set["buyerperson"] = thisinfo.Buyerperson
- } else {
- project.Buyerperson = ""
- set["buyerperson"] = ""
- }
- //采购单位電話
- if thisinfo.Buyertel != "" {
- project.Buyertel = thisinfo.Buyertel
- set["buyertel"] = project.Buyertel
- } else {
- project.Buyertel = ""
- set["buyertel"] = ""
- }
- if thisinfo.ContractCode != "" {
- if project.ContractCode == "" {
- set["contractcode"] = thisinfo.ContractCode
- } else {
- list := strings.Split(project.ContractCode, ",")
- if BinarySearch(list, thisinfo.ContractCode) == -1 {
- list = append(list, thisinfo.ContractCode)
- sort.Strings(list)
- }
- set["contractcode"] = strings.Join(list, ",")
- }
- }
- //8--代理机构
- if (pInfo.Agency == "" && thisinfo.Agency != "") || (len([]rune(pInfo.Agency)) < 5 && len([]rune(thisinfo.Agency)) > 5) {
- pInfo.Agency = thisinfo.Agency
- project.Agency = thisinfo.Agency
- set["agency"] = thisinfo.Agency
- }
- if len(thisinfo.Topscopeclass) > 0 {
- sort.Strings(project.Topscopeclass)
- for _, k := range thisinfo.Topscopeclass {
- if BinarySearch(project.Topscopeclass, k) == -1 {
- project.Topscopeclass = append(project.Topscopeclass, k)
- sort.Strings(project.Topscopeclass)
- }
- }
- set["topscopeclass"] = project.Topscopeclass
- }
- //项目评审专家
- if len(thisinfo.ReviewExperts) > 0 {
- set["review_experts"] = thisinfo.ReviewExperts
- project.ReviewExperts = thisinfo.ReviewExperts
- }
- if thisinfo.Purchasing != "" {
- if project.Purchasing == "" {
- list := Duplicate(strings.Split(thisinfo.Purchasing, ",")) //标的物 去重 03/03
- p := strings.Join(qu.ObjArrToStringArr(list), ",")
- project.Purchasing = p
- set["purchasing"] = p
- } else {
- list := strings.Split(project.Purchasing, ",")
- list = qu.ObjArrToStringArr(Duplicate(list))
- for _, k := range list {
- if BinarySearch(strings.Split(thisinfo.Purchasing, ","), k) == -1 {
- list = append(list, k)
- sort.Strings(list)
- }
- }
- set["purchasing"] = strings.Join(list, ",")
- }
- }
- //中标候选人
- if len(thisinfo.WinnerOrder) > 0 {
- var list = []string{}
- for _, v := range thisinfo.WinnerOrder {
- if BinarySearch(list, qu.ObjToString(v["entname"])) == -1 {
- list = append(list, qu.ObjToString(v["entname"]))
- }
- }
- set["winnerorder"] = list
- project.Winnerorder = list
- }
- if len(thisinfo.Subscopeclass) > 0 {
- sort.Strings(project.Subscopeclass)
- for _, k := range thisinfo.Subscopeclass {
- if BinarySearch(project.Subscopeclass, k) == -1 {
- project.Subscopeclass = append(project.Subscopeclass, k)
- sort.Strings(project.Subscopeclass)
- }
- }
- set["subscopeclass"] = project.Subscopeclass
- set["s_subscopeclass"] = strings.Join(project.Subscopeclass, ",")
- }
- if len(thisinfo.Winners) > 0 {
- if len(project.Winners) <= 0 {
- set["winner"] = qu.ObjToString(tmp["winner"])
- }
- winners := strings.Split(project.Winners, ",")
- for _, k := range thisinfo.Winners {
- if thisinfo.SubType == "流标" || thisinfo.SubType == "废标" {
- if BinarySearch(winners, k) != -1 {
- deleteSlice(winners, k, "")
- }
- } else {
- if BinarySearch(winners, k) == -1 {
- winners = append(winners, k)
- }
- }
- }
- set["s_winner"] = strings.Join(qu.ObjArrToStringArr(Duplicate(winners)), ",")
- }
- if len(thisinfo.EntIdList) > 0 {
- for _, v := range thisinfo.EntIdList {
- if BinarySearch(project.EntIdList, v) == -1 {
- project.EntIdList = append(project.EntIdList, v)
- }
- }
- set["entidlist"] = project.EntIdList
- }
- // first_cooperation
- if pInfo.Buyer != "" && len(strings.Split(project.Winners, ",")) > 0 {
- FirstCooperation(set, pInfo.Buyer, strings.Split(project.Winners, ","), project.EntIdList)
- }
- //项目规模
- if len(thisinfo.ProjectScale) > 0 {
- project.ProjectScale = thisinfo.ProjectScale
- set["project_scale"] = thisinfo.ProjectScale
- }
- //工期时长
- if thisinfo.ProjectDuration > 0 {
- project.ProjectDuration = thisinfo.ProjectDuration
- set["project_duration"] = thisinfo.ProjectDuration
- }
- // 工期单位
- if thisinfo.ProjectDuration > 0 && len(thisinfo.ProjectTimeUnit) > 0 {
- project.ProjectTimeunit = thisinfo.ProjectTimeUnit
- set["project_timeunit"] = thisinfo.ProjectTimeUnit
- }
- //开工日期
- if thisinfo.ProjectStartDate > 0 {
- if project.ProjectStartDate > 0 {
- if project.ProjectStartDate < thisinfo.ProjectStartDate {
- project.ProjectStartDate = thisinfo.ProjectStartDate
- set["project_startdate"] = thisinfo.ProjectStartDate
- }
- } else {
- project.ProjectStartDate = thisinfo.ProjectStartDate
- set["project_startdate"] = thisinfo.ProjectStartDate
- }
- }
- //竣工日期
- if thisinfo.ProjectCompleteDate > 0 {
- if project.ProjctCompleteDate > 0 {
- if project.ProjctCompleteDate < thisinfo.ProjectCompleteDate {
- project.ProjctCompleteDate = thisinfo.ProjectCompleteDate
- set["project_completedate"] = thisinfo.ProjectCompleteDate
- }
- } else {
- project.ProjctCompleteDate = thisinfo.ProjectCompleteDate
- set["project_completedate"] = thisinfo.ProjectCompleteDate
- }
- }
- // 付款方式
- if len(thisinfo.Payway) > 0 {
- project.Payway = thisinfo.Payway
- set["payway"] = thisinfo.Payway
- }
- // 履约保证金
- if tmp["contract_guarantee"] != nil {
- project.ContractGuarantee = thisinfo.ContractGuarantee
- set["contract_guarantee"] = thisinfo.ContractGuarantee
- }
- // 投标保证金
- if tmp["bid_guarantee"] != nil {
- project.BidGuarantee = thisinfo.BidGuarantee
- set["bid_guarantee"] = thisinfo.BidGuarantee
- }
- // 资质条件
- if len(thisinfo.Qualifies) > 0 {
- var str []string
- if len(project.Qualifies) > 0 {
- str = append(str, strings.Split(project.Qualifies, ",")...)
- }
- for _, v := range thisinfo.Qualifies {
- if len(qu.ObjToString(v["key"])) > 0 {
- if BinarySearch(str, qu.ObjToString(v["key"])) == -1 {
- str = append(str, qu.ObjToString(v["key"]))
- }
- }
- }
- if len(str) > 0 {
- project.Qualifies = strings.Join(str, ",")
- set["qualifies"] = strings.Join(str, ",")
- }
- }
- if thisinfo.HasPackage { //多包处理
- set["multipackage"] = 1
- pkg := PackageFormat(thisinfo, project)
- project.Package = pkg
- set["package"] = project.Package
- }
- //处理多包后,计算预算金额、中标金额
- CountAmount(project, thisinfo, tmp)
- if project.Budget >= 0 && project.Budgettag != 1 {
- pInfo.Budget = project.Budget
- set["budget"] = project.Budget
- set["budgettag"] = 0
- }
- if project.Bidamount >= 0 && project.Bidamounttag != 1 {
- pInfo.Bidamount = project.Bidamount
- set["bidamount"] = pInfo.Bidamount
- set["bidamounttag"] = 0
- }
- if pInfo.Bidamount > 0 {
- set["sortprice"] = pInfo.Bidamount
- } else {
- if pInfo.Budget > 0 {
- set["sortprice"] = pInfo.Budget
- }
- }
- infofield := InfoField{
- Budget: thisinfo.Budget,
- Bidamount: thisinfo.Bidamount,
- ContractCode: thisinfo.ContractCode,
- ProjectName: thisinfo.ProjectName,
- ProjectCode: thisinfo.ProjectCode,
- Bidstatus: bs,
- }
- tmpMap := set["infofield"].(map[string]interface{})
- tmpMap[thisinfo.Id] = StructToMap(infofield)
- set["infofield"] = tmpMap
- copyMap := Copy(project.InfoFiled).(map[string]InfoField)
- copyMap[thisinfo.Id] = infofield
- project.InfoFiled = copyMap
- set["mpn"] = pInfo.MPN
- set["mpc"] = pInfo.MPC
- }
|