participateBid.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. package service
  2. import (
  3. "app.yhyue.com/moapp/jybase/common"
  4. "app.yhyue.com/moapp/jybase/encrypt"
  5. elastic "app.yhyue.com/moapp/jybase/esv1"
  6. "fmt"
  7. IC "jyBXCore/rpc/init"
  8. "jyBXCore/rpc/type/bxcore"
  9. "strings"
  10. "time"
  11. )
  12. const (
  13. IndexProjectSet = "projectset" // 项目信息es index
  14. TypeProjectSet = "projectset" // 项目信息es type
  15. TableEntnicheUser = "entniche_user" // 企业用户表
  16. PositionTypeEnt = 1 // 职位类型企业
  17. PositionTypePersonal = 0 // 职位类型个人
  18. ButtonValueParticipate = 0 // 参标按钮 显示值 0-参标
  19. ButtonValueParticipated = 1 // 按钮显示值 列表页面 1-已参标
  20. RoleEntManager = 1 // 企业管理员角色
  21. RoleDepartManager = 2 // 部门管理员角色
  22. )
  23. type ParticipateBid struct {
  24. EntId int64
  25. EntUserId int64
  26. PositionType int64
  27. PositionId int64
  28. EntRoleId int64 // 角色
  29. }
  30. func NewParticipateBid(entId, entUserId, positionType, positionId int64) ParticipateBid {
  31. return ParticipateBid{
  32. EntId: entId,
  33. EntUserId: entUserId,
  34. PositionType: positionType,
  35. PositionId: positionId,
  36. }
  37. }
  38. // GetProjectByInfoId 根据查询有效的参标项目id(未到开标时间及开标时间不存在的)
  39. func (p *ParticipateBid) GetProjectByInfoId(infoIds []string) *[]map[string]interface{} {
  40. if len(infoIds) == 0 {
  41. return nil
  42. }
  43. nowTime := time.Now().Unix()
  44. query := `{"_source":["_id","list.infoid"],"query": {"bool": {"must": [{"terms": {"list.infoid": ["` + strings.Join(infoIds, "\",\"") + `"]}},
  45. {"bool": {"should": [{"range": {"bidopentime": {"gte": ` + fmt.Sprint(nowTime) + `}}},
  46. {"constant_score": {"filter": {"missing": {"field": "bidopentime"
  47. } } } }] }}]}}}`
  48. projectResult := elastic.Get(IndexProjectSet, TypeProjectSet, query)
  49. return projectResult
  50. }
  51. // GetProject 根据信息id查询项目id
  52. func (p *ParticipateBid) GetProject(infoIds []string) *[]map[string]interface{} {
  53. if len(infoIds) == 0 {
  54. return nil
  55. }
  56. query := `{"_source":["_id","list.infoid","ids","bidopentime"],"query":{"bool":{"must":[{"terms":{"list.infoid":["` + strings.Join(infoIds, "\",\"") + `"]}}]}}}`
  57. projectResult := elastic.Get(IndexProjectSet, TypeProjectSet, query)
  58. return projectResult
  59. }
  60. // PersonalExistProject 个人版要展示的参标按钮 查询出已经参标的项目信息 用于后边格式化数据
  61. func (p *ParticipateBid) PersonalExistProject(projectId []string) map[string]struct{} {
  62. // 1. 查询出已经参标的
  63. var arg []string
  64. var value []interface{}
  65. value = append(value, p.PositionId)
  66. for i := 0; i < len(projectId); i++ {
  67. arg = append(arg, "?")
  68. value = append(value, projectId[i])
  69. }
  70. argStr := strings.Join(arg, ",")
  71. query := "select project_id from participate_user where position_id = ? and project_id in (%s) and state>=0"
  72. rs := IC.BaseMysql.SelectBySql(query, fmt.Sprintf(query, argStr), value)
  73. existProjectSet := map[string]struct{}{}
  74. if rs != nil && len(*rs) > 0 { // 如果查到了 说明已经参标 这部分应该显示已参标
  75. // 处理成map
  76. for i := 0; i < len(*rs); i++ {
  77. existId := common.ObjToString((*rs)[i]["project_id"])
  78. existProjectSet[existId] = struct{}{}
  79. }
  80. }
  81. return existProjectSet
  82. }
  83. // ListPersonalFormat 列表页个人版 参标按钮 格式化数据
  84. func (p *ParticipateBid) ListPersonalFormat(existProjectSet map[string]struct{}, infoM map[string]string) []*bxcore.ShowInfo {
  85. // 处理成 要返回的返回数据
  86. var formatList []*bxcore.ShowInfo
  87. for k, v := range infoM {
  88. buttonValue := ButtonValueParticipate // 不存在应该显示参标
  89. if _, ok := existProjectSet[v]; ok { // 存在说明应该显示已参标
  90. buttonValue = ButtonValueParticipated
  91. }
  92. formatList = append(formatList, &bxcore.ShowInfo{
  93. Id: encrypt.EncodeArticleId2ByCheck(k),
  94. Value: int64(buttonValue),
  95. })
  96. }
  97. return formatList
  98. }
  99. // EntExistProject 企业版 查出来企业下已经参标的这个项目的以及参标人信息 用于后边格式化数据判断有没有自己
  100. func (p *ParticipateBid) EntExistProject(projectId []string) map[string]string {
  101. var arg []string
  102. var value []interface{}
  103. value = append(value, p.EntId)
  104. for i := 0; i < len(projectId); i++ {
  105. arg = append(arg, "?")
  106. value = append(value, p.PositionId)
  107. }
  108. argStr := strings.Join(arg, ",") // todo
  109. query := "select GROUP_CONCAT(ent_user_id) as personIds ,project_id from participate_user where ent_id=? and project_id in (%s) and state>=0 group by project_id "
  110. rs := IC.BaseMysql.SelectBySql(query, fmt.Sprintf(query, argStr), value)
  111. existProjectMap := map[string]string{}
  112. if rs != nil && len(*rs) > 0 { // 如果查到了 说明这个项目公司里面已经参标 处理一下信息用于后边判断是否是自己参标
  113. // 处理成map
  114. for i := 0; i < len(*rs); i++ {
  115. existId := common.ObjToString((*rs)[i]["project_id"])
  116. personIds := common.ObjToString((*rs)[i]["personIds"])
  117. existProjectMap[existId] = personIds
  118. }
  119. }
  120. return existProjectMap
  121. }
  122. // ListEntFormat 企业版 列表页数据格式化
  123. // 判断企业下是否有参标人
  124. // - 无参标人 展示参标按钮
  125. // - 有参标人 判断是否包含自己
  126. // 如果包含自己 显示已参标
  127. // 不包含自己 则判断企业是否允许多人参标 允许 则显示参标按钮 不允许 则不显示
  128. func (p *ParticipateBid) ListEntFormat(existProjectMap, infoM map[string]string, isAllow bool) []*bxcore.ShowInfo {
  129. // 处理成 要返回的返回数据
  130. var formatList []*bxcore.ShowInfo
  131. for k, v := range infoM {
  132. buttonValue := ButtonValueParticipate // 不存在时-显示参标
  133. if userIds, ok := existProjectMap[v]; ok { // 存在时 说明项目在企业下已经参标 需要进一步判断
  134. // 判断已经存在的参标人中是否包含自己 包含时 显示成已参标
  135. if ContainId(userIds, common.InterfaceToStr(p.EntUserId)) {
  136. buttonValue = ButtonValueParticipated
  137. } else if isAllow { // 不包含自己时需要 进一步判断公司设置是否允许多人参标
  138. // 允许时显示成 参标
  139. buttonValue = ButtonValueParticipate
  140. } else { // 不允许时 跳过该条信息
  141. continue
  142. }
  143. }
  144. formatList = append(formatList, &bxcore.ShowInfo{
  145. Id: encrypt.EncodeArticleId2ByCheck(k),
  146. Value: int64(buttonValue),
  147. })
  148. }
  149. return formatList
  150. }
  151. // DetailEntFormat 企业版 详情页数据格式化 返回数据 参标按钮 终止参标按钮 转给同事按钮 参标人姓名
  152. // 判断企业下是否有参标人
  153. // - 无参标人&&没有到期 展示参标按钮 其余按钮不显示
  154. // - 有参标人 展示参标人信息
  155. // - 未到开标时间
  156. // - 管理员 未到开标时间 展示 转给同事、终止参标
  157. // - 包含自己 展示终止参标 不包含自己如果允许多人参标 展示参标按钮
  158. //
  159. func (p *ParticipateBid) DetailEntFormat(existProjectMap map[string]string, isValid, isAllow bool) (formatData *bxcore.ParticipateDetailInfo) {
  160. // 处理成 要返回的返回数据
  161. formatData = &bxcore.ParticipateDetailInfo{}
  162. if len(existProjectMap) == 0 && isValid {
  163. // 无参标人 展示参标按钮 其余按钮不显示
  164. formatData.ShowParticipate = true
  165. return
  166. }
  167. persons := ""
  168. for _, v := range existProjectMap { // 这是为了取参标人id信息 列表页是多条数据 详情页这里 map里面只会有一条数据
  169. persons = v
  170. break
  171. }
  172. // 参标人信息 处理成姓名
  173. nameRs := GetNameByUserIds(persons)
  174. if nameRs != nil && len(*nameRs) > 0 {
  175. formatData.UserName = common.ObjToString((*nameRs)[0]["name"])
  176. }
  177. if !isValid {
  178. return
  179. }
  180. // 如果是管理员 显示 终止参标按钮 、转给同事按钮
  181. if p.EntRoleId == RoleEntManager || p.EntRoleId == RoleDepartManager {
  182. formatData.ShowStopParticipate = true
  183. formatData.ShowTransfer = true
  184. }
  185. // 如果包含自己 显示终止参标按钮
  186. if ContainId(persons, common.InterfaceToStr(p.EntUserId)) {
  187. formatData.ShowStopParticipate = true
  188. } else if isAllow { // 如果允许多人 显示参标按钮
  189. formatData.ShowParticipate = true
  190. }
  191. return
  192. }
  193. // DetailPersonalFormat 详情页个人版 按钮格式化数据
  194. func (p *ParticipateBid) DetailPersonalFormat(existProjectSet map[string]struct{}, isValid bool) (formatData *bxcore.ParticipateDetailInfo) {
  195. // 处理成 要返回的返回数据
  196. formatData = &bxcore.ParticipateDetailInfo{}
  197. if !isValid {
  198. return
  199. }
  200. // 存在在说明已经参标 显示终止参标
  201. if len(existProjectSet) > 0 {
  202. formatData.ShowStopParticipate = true
  203. } else {
  204. // 不存在则说明 未参标 参标按钮展示
  205. formatData.ShowParticipate = true
  206. }
  207. return
  208. }
  209. // HandlerProjectId 返回信息的映射集合,项目id列表
  210. func HandlerProjectId(projectInfos []map[string]interface{}, infoIds map[string]struct{}) (map[string]string, []string) {
  211. result := map[string]string{}
  212. projectIdList := []string{}
  213. // 记录infoid 和项目id 对应关系 用于最后处理返回的数据
  214. for i := 0; i < len(projectInfos); i++ {
  215. _id := common.ObjToString(projectInfos[i]["_id"])
  216. projectIdList = append(projectIdList, _id)
  217. list, b := projectInfos[i]["list"].([]interface{})
  218. if !b {
  219. continue
  220. }
  221. for j := 0; j < len(list); j++ {
  222. infoidMap := common.ObjToMap(list[j])
  223. if infoidMap == nil {
  224. continue
  225. }
  226. infoid := common.ObjToString((*infoidMap)["infoid"])
  227. if _, ok := infoIds[infoid]; ok && infoid != "" {
  228. result[infoid] = _id
  229. break
  230. }
  231. }
  232. }
  233. return result, projectIdList
  234. }
  235. // DecodeId 解密标讯id 返回一个信息id的列表 和 集合
  236. func DecodeId(ids string) (result []string, resultSet map[string]struct{}) {
  237. idList := strings.Split(ids, ",")
  238. resultSet = map[string]struct{}{}
  239. for i := 0; i < len(idList); i++ {
  240. decodeArray := encrypt.DecodeArticleId2ByCheck(idList[i])
  241. if len(decodeArray) == 1 && decodeArray[0] != "" {
  242. result = append(result, decodeArray[0])
  243. resultSet[decodeArray[0]] = struct{}{}
  244. }
  245. }
  246. return
  247. }
  248. // ContainId 用于判断给定的逗号分割的字符串中是否包含 目标的字符串
  249. func ContainId(ids string, objId string) bool {
  250. list := strings.Split(ids, ",")
  251. for i := 0; i < len(list); i++ {
  252. if list[i] == objId {
  253. return true
  254. }
  255. }
  256. return false
  257. }
  258. // GetNameByUserIds 获取用户名字符串
  259. // 参数:逗号分割的用户id "11,22,333..."
  260. // 返回: "张三,李四,王五..."
  261. func GetNameByUserIds(ids string) *[]map[string]interface{} {
  262. query := "select group_concat( name) from" + TableEntnicheUser + "where id in (" + ids + ") "
  263. rs := IC.MainMysql.SelectBySql(query)
  264. return rs
  265. }
  266. /*
  267. 投标状态更新
  268. 1. 验证参标人
  269. 2. 更新 存操作记录
  270. */