wx_template_msg.go 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. package models
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "hongze/hongze_cygx/utils"
  5. "strings"
  6. )
  7. type SendTemplateResponse struct {
  8. Errcode int `json:"errcode"`
  9. Errmsg string `json:"errmsg"`
  10. MsgID int `json:"msgid"`
  11. }
  12. type OpenIdList struct {
  13. OpenId string
  14. UserId int
  15. Mobile string `description:"手机号"`
  16. CompanyId int `description:"手机号"`
  17. }
  18. func GetOpenIdList() (items []*OpenIdList, err error) {
  19. o := orm.NewOrmUsingDB("weekly_report")
  20. openIdstr := WxUsersGet()
  21. sql := `SELECT open_id FROM wx_user AS wu
  22. INNER JOIN company AS c ON c.company_id = wu.company_id
  23. WHERE wu.open_id IS NOT NULL AND c.type IN (1,2) `
  24. if openIdstr != "" {
  25. sql += ` AND open_id in (` + openIdstr + `) `
  26. }
  27. _, err = o.Raw(sql).QueryRows(&items)
  28. return
  29. }
  30. func GetWxOpenIdByMobileList(mobile string) (items []*OpenIdList, err error) {
  31. sliceMobile := strings.Split(mobile, ",")
  32. var mobiles []string
  33. for _, v := range sliceMobile {
  34. mobiles = append(mobiles, v)
  35. }
  36. lenarr := len(mobiles)
  37. if lenarr == 0 {
  38. return
  39. }
  40. var condition string
  41. var pars []interface{}
  42. condition = ` AND u.cygx_bind_account IN (` + utils.GetOrmInReplace(lenarr) + `)`
  43. pars = append(pars, mobiles)
  44. sql := ` SELECT
  45. union_id,open_id,
  46. cygx_user_id AS user_id
  47. FROM cygx_user_record as u WHERE 1 = 1 ` + condition
  48. _, err = orm.NewOrm().Raw(sql, pars).QueryRows(&items)
  49. return
  50. }
  51. type AdminOpenIdList struct {
  52. OpenId string `description:"OpenId"`
  53. UserId int `description:"UserId"`
  54. Mobile string `description:"手机号"`
  55. CompanyId int `description:"手机号"`
  56. }
  57. // GetAdminOpendidByCompany 通过用户公司ID获取对应销售的openid
  58. func GetAdminOpendidByCompany(condition string, pars []interface{}) (list []*AdminOpenIdList, err error) {
  59. o := orm.NewOrmUsingDB("weekly_report")
  60. sql := `SELECT
  61. a.mobile,
  62. p.company_id
  63. FROM
  64. company_product AS p
  65. INNER JOIN admin AS a ON a.admin_id = p.seller_id
  66. WHERE
  67. 1 = 1
  68. AND p.product_id = 2 ` + condition
  69. _, err = o.Raw(sql, pars).QueryRows(&list)
  70. return
  71. }
  72. //func GetWxOpenIdByMobileSliceList(mobiles []string) (items []*OpenIdList, err error) {
  73. // itemsLen := len(mobiles)
  74. // if itemsLen == 0 {
  75. // return
  76. // }
  77. // o := orm.NewOrm()
  78. // sql := `SELECT cr.*,user_id FROM user_record as c
  79. // INNER JOIN cygx_user_record AS cr ON cr.union_id = c.union_id
  80. // WHERE bind_account IN (` + utils.GetOrmInReplace(itemsLen) + `) AND create_platform = 4`
  81. // _, err = o.Raw(sql, mobiles).QueryRows(&items)
  82. // return
  83. //}
  84. // 根据手机号获取用户的openid
  85. func GetWxOpenIdByMobileSliceList(mobiles []string) (items []*OpenIdList, err error) {
  86. o := orm.NewOrm()
  87. lenarr := len(mobiles)
  88. if lenarr == 0 {
  89. return
  90. }
  91. var condition string
  92. var pars []interface{}
  93. condition = ` AND u.cygx_bind_account IN (` + utils.GetOrmInReplace(lenarr) + `)`
  94. pars = append(pars, mobiles)
  95. sql := `SELECT
  96. u.open_id,
  97. u.cygx_user_id AS user_id
  98. FROM
  99. cygx_user_record AS u
  100. WHERE
  101. 1 = 1 ` + condition
  102. _, err = o.Raw(sql, pars).QueryRows(&items)
  103. return
  104. }
  105. // 根据手机号获取用户的openid
  106. func GetMfyxWxOpenIdByMobileSliceList(mobiles []string) (items []*OpenIdList, err error) {
  107. o := orm.NewOrm()
  108. lenarr := len(mobiles)
  109. if lenarr == 0 {
  110. return
  111. }
  112. var condition string
  113. var pars []interface{}
  114. condition = ` AND u.cygx_bind_account IN (` + utils.GetOrmInReplace(lenarr) + `)`
  115. pars = append(pars, mobiles)
  116. sql := `SELECT
  117. u.open_id,
  118. u.cygx_user_id AS user_id
  119. FROM
  120. cygx_mfyx_gzh_user_record AS u
  121. WHERE
  122. 1 = 1 ` + condition
  123. _, err = o.Raw(sql, pars).QueryRows(&items)
  124. return
  125. }