company_product.go 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. package company_product
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "time"
  5. )
  6. type CompanyProduct struct {
  7. CompanyProductId int `orm:"column(company_product_id);pk" description:"客户产品id"`
  8. CompanyId int `description:"客户id"`
  9. ProductId int `description:"产品id"`
  10. ProductName string `description:"产品名称"`
  11. CompanyName string `description:"客户名称"`
  12. Source string `description:"来源"`
  13. Reasons string `description:"新增理由"`
  14. Status string `description:"客户状态"`
  15. InitStatus string `description:"客户初始化状态(目前用来处理权益的永续客户使用)"`
  16. IndustryId int `description:"行业id"`
  17. IndustryName string `description:"行业名称"`
  18. SellerId int `description:"销售id"`
  19. SellerName string `description:"销售名称"`
  20. GroupId int `description:"销售分组id"`
  21. DepartmentId int `description:"销售部门id"`
  22. IsSuspend int `description:"1:暂停,0:启用"`
  23. SuspendTime time.Time `description:"暂停启用时间"`
  24. ApproveStatus string `description:"审批状态:'审批中','通过','驳回'"`
  25. FreezeTime time.Time `description:"冻结时间"`
  26. Remark string `description:"备注信息"`
  27. CreateTime time.Time `description:"创建时间"`
  28. ModifyTime time.Time `description:"修改时间"`
  29. StartDate string `description:"开始日期"`
  30. EndDate string `description:"结束日期"`
  31. ContractEndDate time.Time `description:"合同结束日期"`
  32. LoseReason string `description:"流失原因"`
  33. LossTime time.Time `description:"流失时间"`
  34. CompanyType string `description:"客户类型"`
  35. PackageType int `description:"套餐类型,0:无,1:大套餐,2:小套餐"`
  36. IsFormal int `description:"是否已经转正式,0是没有转正式,1是已经转过正式"`
  37. ShareSeller string `description:"共享销售员"`
  38. ShareSellerId int `description:"共享销售员id"`
  39. }
  40. func GetCompanyProductByCompanyIdAndProductId(companyId, productId int) (item *CompanyProduct, err error) {
  41. o := orm.NewOrm()
  42. sql := `SELECT b.* FROM company AS a
  43. INNER JOIN company_product AS b ON a.company_id=b.company_id
  44. WHERE a.company_id=? AND b.product_id=? LIMIT 1 `
  45. err = o.Raw(sql, companyId, productId).QueryRow(&item)
  46. return
  47. }
  48. // 更新客户产品信息
  49. func (companyProduct *CompanyProduct) Update(cols []string) (err error) {
  50. o := orm.NewOrm()
  51. _, err = o.Update(companyProduct, cols...)
  52. return
  53. }
  54. // CompanyProductItem
  55. // @Description: 客户品种
  56. type CompanyProductItem struct {
  57. CompanyProductId int `orm:"column(company_product_id);pk" description:"客户产品id"`
  58. CompanyId int `description:"客户id"`
  59. ProductId int `description:"产品id"`
  60. ProductName string `description:"产品名称"`
  61. CompanyName string `description:"客户名称"`
  62. Source string `description:"来源"`
  63. Reasons string `description:"新增理由"`
  64. Status string `description:"客户状态"`
  65. IndustryId int `description:"行业id"`
  66. IndustryName string `description:"行业名称"`
  67. SellerId int `description:"销售id"`
  68. SellerName string `description:"销售名称"`
  69. GroupId int `description:"销售分组id"`
  70. DepartmentId int `description:"销售部门id"`
  71. IsSuspend int `description:"1:暂停,0:启用"`
  72. SuspendTime time.Time `description:"暂停启用时间"`
  73. ApproveStatus string `description:"审批状态:'审批中','通过','驳回'"`
  74. FreezeTime time.Time `description:"冻结时间"`
  75. Remark string `description:"备注信息"`
  76. CreateTime time.Time `description:"创建时间"`
  77. ModifyTime time.Time `description:"修改时间"`
  78. StartDate string `description:"开始日期"`
  79. EndDate string `description:"结束日期"`
  80. ContractEndDate string `description:"合同结束日期"`
  81. LoseReason string `description:"流失原因"`
  82. LossTime time.Time `description:"流失时间"`
  83. CompanyType string `description:"客户类型"`
  84. OpenCode string `description:"开放给第三方的编码,不让第三方定位我们的客户信息"`
  85. Scale string `description:"管理规模,空不填,1::50亿以下,2:50~100亿,3:100亿以上。"`
  86. ViewTotal int `description:"总阅读次数"`
  87. RoadShowTotal int `description:"累计路演次数"`
  88. LastViewTime time.Time `description:"最后一次阅读时间"`
  89. PackageType int `description:"套餐类型,0:无,1:大套餐,2:小套餐"`
  90. IsFormal int `description:"是否已经转正式,0是没有转正式,1是已经转过正式"`
  91. TodoStatus string `description:"任务处理状态;枚举值:'无任务','未完成','已完成'"`
  92. TodoCreateTime time.Time `description:"任务创建时间"`
  93. TodoApproveTime time.Time `description:"任务审批时间"`
  94. TryStage int `description:"试用客户子标签:1未分类、2 推进、3 跟踪、4 预备"`
  95. IsShare int `description:"0:非共享用户,1:共享客户"`
  96. ShareSeller string `description:"共享销售员"`
  97. ShareSellerId int `description:"共享销售员id"`
  98. }
  99. // GetCompanyProductItemByCompanyId
  100. // @Description: 根据客户ID获取客户产品列表
  101. // @author: Roc
  102. // @datetime 2023-12-07 11:06:58
  103. // @param companyIdList []int
  104. // @param productId int
  105. // @return items []*CompanyProductItem
  106. // @return err error
  107. func GetCompanyProductItemByCompanyId(companyId int, productId int) (items *CompanyProductItem, err error) {
  108. o := orm.NewOrm()
  109. sql := `SELECT a.* FROM company_product as a
  110. WHERE a.company_id = ? AND a.product_id = ? `
  111. _, err = o.Raw(sql, companyId, productId).QueryRows(&items)
  112. return
  113. }
  114. // 获取权益用户客户数量
  115. func GetCompanyProductRaiForeverCount(companyId int) (count int, err error) {
  116. sqlCount := ` SELECT COUNT(1) AS count FROM company_product WHERE 1= 1 AND product_id = 2 AND status = '永续' AND company_id = ? `
  117. o := orm.NewOrm()
  118. err = o.Raw(sqlCount, companyId).QueryRow(&count)
  119. return
  120. }
  121. // 获取列表
  122. func GetCompanyProductList(condition string, pars []interface{}) (items []*CompanyProduct, err error) {
  123. o := orm.NewOrm()
  124. sql := `SELECT * FROM company_product WHERE 1= 1 `
  125. if condition != "" {
  126. sql += condition
  127. }
  128. _, err = o.Raw(sql, pars).QueryRows(&items)
  129. return
  130. }
  131. // 合同未到期更新对应销售的信息
  132. func UpdateCompanyProductSellerUnexpired(sellerId, shareSellerInit int, sellerName, shareSeller string, companyId int) (err error) {
  133. o := orm.NewOrm()
  134. sql := `UPDATE company_product SET
  135. seller_id_last = ? ,
  136. seller_name_last = ? ,
  137. share_seller_id_last = ? ,
  138. share_seller_last = ? WHERE company_id = ? AND product_id= 2 `
  139. _, err = o.Raw(sql, sellerId, sellerName, shareSellerInit, shareSeller, companyId).Exec()
  140. return
  141. }