123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711 |
- package company
- import (
- "github.com/beego/beego/v2/client/orm"
- "hongze/hz_crm_api/utils"
- "time"
- )
- type CompanyProduct struct {
- CompanyProductId int `orm:"column(company_product_id);pk" description:"客户产品id"`
- CompanyId int `description:"客户id"`
- ProductId int `description:"产品id"`
- ProductName string `description:"产品名称"`
- CompanyName string `description:"客户名称"`
- Source string `description:"来源"`
- Reasons string `description:"新增理由"`
- Status string `description:"客户状态"`
- InitStatus string `description:"客户初始化状态(目前用来处理权益的永续客户使用)"`
- IndustryId int `description:"行业id"`
- IndustryName string `description:"行业名称"`
- SellerId int `description:"销售id"`
- SellerName string `description:"销售名称"`
- GroupId int `description:"销售分组id"`
- DepartmentId int `description:"销售部门id"`
- IsSuspend int `description:"1:暂停,0:启用"`
- SuspendTime time.Time `description:"暂停启用时间"`
- TryOutTime time.Time `description:"正式转试用时间"`
- RenewalReason string `description:"正式转试用后的续约情况说明"`
- RenewalTodo string `description:"未续约说明中的待办事项说明"`
- LastDescriptionTime time.Time `description:"上次添加说明时间"`
- RenewalIntention int `description:"是否勾选无续约意向,1:确认,0:未确认"`
- ApproveStatus string `description:"审批状态:'审批中','通过','驳回'"`
- FreezeTime time.Time `description:"冻结时间"`
- FreezeReason time.Time `description:"冻结理由"`
- Remark string `description:"备注信息"`
- CreateTime time.Time `description:"创建时间"`
- ModifyTime time.Time `description:"修改时间"`
- StartDate string `description:"开始日期"`
- EndDate string `description:"结束日期"`
- ContractEndDate time.Time `description:"合同结束日期"`
- LoseReason string `description:"流失原因"`
- LossTime time.Time `description:"流失时间"`
- CompanyType string `description:"客户类型"`
- OpenCode string `description:"开放给第三方的编码,不让第三方定位我们的客户信息"`
- Scale string `description:"管理规模,空不填,1::50亿以下,2:50~100亿,3:100亿以上。"`
- ViewTotal int `description:"总阅读次数"`
- RoadShowTotal int `description:"累计路演次数"`
- LastViewTime time.Time `description:"最后一次阅读时间"`
- PackageType int `description:"套餐类型"`
- IsFormal int `description:"是否已经转正式,0是没有转正式,1是已经转过正式"`
- TodoStatus string `description:"任务处理状态;枚举值:'无任务','未完成','已完成'"`
- TodoCreateTime time.Time `description:"任务创建时间"`
- TodoApproveTime time.Time `description:"任务审批时间"`
- TryStage int `description:"试用客户子标签:1未分类、2 推进、3 跟踪、4 预备"`
- TryOutDayTotal int `description:"客户总试用天数"`
- CloseReason string `description:"关闭原因"`
- CloseTime time.Time `description:"关闭时间"`
- OverseasLabel int `description:"海外客户试用子标签:1未分类、2 推进、3 跟踪、4 预备、"`
- IsOverseas int `description:"是否显示在海外客户0:显示,1:不显示"`
- IsShare int `description:"0:非共享用户,1:共享客户"`
- ShareSeller string `description:"共享销售员"`
- ShareSellerId int `description:"共享销售员id"`
- ShareGroupId int `description:"共享销售员所属分组ID"`
- IsUserMaker int `description:"近四周之内是否包含决策人互动过 ,0否,1是"`
- }
- // 新增客户产品
- func AddCompanyProduct(item *CompanyProduct) (newId int64, err error) {
- o := orm.NewOrm()
- newId, err = o.Insert(item)
- return
- }
- type CompanyProductDetail struct {
- CompanyProductId int `orm:"column(company_product_id);pk" description:"客户产品id"`
- CompanyId int `description:"客户id"`
- ProductId int `description:"产品id"`
- ProductName string `description:"产品名称"`
- CompanyName string `description:"客户名称"`
- Source string `description:"来源"`
- Reasons string `description:"新增理由"`
- Status string `description:"客户状态"`
- IndustryId int `description:"行业id"`
- IndustryName string `description:"行业名称"`
- SellerId int `description:"销售id"`
- SellerName string `description:"销售名称"`
- GroupId int `description:"销售分组id"`
- DepartmentId int `description:"销售部门id"`
- IsSuspend int `description:"1:暂停,0:启用"`
- SuspendTime time.Time `description:"暂停启用时间"`
- ApproveStatus string `description:"审批状态:'审批中','通过','驳回'"`
- FreezeTime time.Time `description:"冻结时间"`
- Remark string `description:"备注信息"`
- CreateTime time.Time `description:"创建时间"`
- ModifyTime time.Time `description:"修改时间"`
- StartDate string `description:"开始日期"`
- EndDate string `description:"结束日期"`
- LoseReason string `description:"流失原因"`
- LossTime time.Time `description:"流失时间"`
- OpenCode string `description:"开放给第三方的编码,不让第三方定位我们的客户信息"`
- Scale string `description:"管理规模,空不填,1::50亿以下,2:50~100亿,3:100亿以上。"`
- SpecialSurplus string `description:"专项调研剩余次数"`
- Points string `description:"公司研选服务剩余点数"`
- IsShare int `description:"0:非共享用户,1:共享客户"`
- ShareSeller string `description:"共享销售员"`
- ShareSellerId int `description:"共享销售员id"`
- PermissionList []*PermissionLookList
- ViewTotal int `description:"总阅读次数"`
- }
- func GetCompanyProductsByCompanyId(companyId int) (items []*CompanyProductDetail, err error) {
- sql := `SELECT * FROM company_product WHERE company_id=? ORDER BY create_time ASC `
- o := orm.NewOrm()
- _, err = o.Raw(sql, companyId).QueryRows(&items)
- return
- }
- func GetCompanyProductById(companyProductId int) (item *CompanyProduct, err error) {
- o := orm.NewOrm()
- sql := `SELECT * FROM company_product WHERE company_product_id=? `
- err = o.Raw(sql, companyProductId).QueryRow(&item)
- return
- }
- func GetCompanyProductByCompanyIdAndProductId(companyId, productId int) (item *CompanyProduct, err error) {
- o := orm.NewOrm()
- sql := `SELECT b.* FROM company AS a
- INNER JOIN company_product AS b ON a.company_id=b.company_id
- WHERE a.company_id=? AND b.product_id=? LIMIT 1 `
- err = o.Raw(sql, companyId, productId).QueryRow(&item)
- return
- }
- // 修改客户产品
- func ModifyCompanyProduct(item *CompanyProduct) (err error) {
- o := orm.NewOrm()
- sql := `UPDATE company_product
- SET
- company_name = ?,
- source = ?,
- reasons = ?,
- status = ?,
- industry_id = ?,
- industry_name = ?,
- seller_id = ?,
- seller_name = ?,
- group_id = ?,
- department_id = ?,
- start_date = ?,
- end_date = ?,
- scale = ?,
- modify_time = NOW()
- WHERE company_product_id = ? `
- _, err = o.Raw(sql, item.CompanyName, item.Source, item.Reasons, item.Status, item.IndustryId, item.IndustryName, item.SellerId,
- item.SellerName, item.GroupId, item.DepartmentId, item.StartDate, item.EndDate, item.Scale, item.CompanyProductId).Exec()
- return
- }
- // 更新客户产品信息
- func (companyProduct *CompanyProduct) Update(cols []string) (err error) {
- o := orm.NewOrm()
- _, err = o.Update(companyProduct, cols...)
- return
- }
- func DeleteCompanyProductById(companyId, productId, companyProductId int) (companyProductList []*CompanyProduct, companyReportPermissionList []*CompanyReportPermission, err error) {
- o := orm.NewOrm()
- to, err := o.Begin()
- if err != nil {
- return
- }
- defer func() {
- if err != nil {
- _ = to.Rollback()
- } else {
- _ = to.Commit()
- }
- }()
- searchSql := `select * FROM company_product WHERE company_product_id=? `
- _, err = to.Raw(searchSql, companyProductId).QueryRows(&companyProductList)
- sql := `DELETE FROM company_product WHERE company_product_id=? `
- _, err = to.Raw(sql, companyProductId).Exec()
- if err != nil {
- return
- }
- searchSql = `select * FROM company_report_permission WHERE company_id=? AND product_id=? `
- _, err = to.Raw(searchSql, companyId, productId).QueryRows(&companyReportPermissionList)
- sql = `DELETE FROM company_report_permission WHERE company_id=? AND product_id=? `
- _, err = to.Raw(sql, companyId, productId).Exec()
- return
- }
- func SuspendCompanyProductById(companyId, productId, suspend int) (err error) {
- o := orm.NewOrm()
- sql := `UPDATE company_product SET is_suspend=?,suspend_time=NOW(),modify_time=NOW() WHERE company_id=? AND product_id=? `
- _, err = o.Raw(sql, suspend, companyId, productId).Exec()
- return
- }
- func GetAllCompanyProducts() (items []*CompanyProductDetail, err error) {
- sql := `SELECT * FROM company_product `
- o := orm.NewOrm()
- _, err = o.Raw(sql).QueryRows(&items)
- return
- }
- type CompanyProductTotalSlice struct {
- Total int `description:"总产品数"`
- CompanyId int `description:"用户id"`
- }
- // 根据用户id字符串获取企业用户的产品数
- func GetCountProductByCompanyIds(companyIds string) (items []*CompanyProductTotalSlice, err error) {
- //如果companyIds是空串,那么直接返回
- if companyIds == "" {
- return
- }
- o := orm.NewOrm()
- sql := `SELECT count(1) total,company_id FROM company_product WHERE company_id in (` + companyIds + `) group by company_id`
- _, err = o.Raw(sql).QueryRows(&items)
- return
- //return items2,err
- }
- // TryOutCompanyList 正式转试用的客户
- type TryOutCompanyList struct {
- CompanyProductId int `orm:"column(company_product_id);pk" description:"客户产品id"`
- CompanyId int `description:"客户id"`
- ProductId int `description:"产品id"`
- ProductName string `description:"产品名称"`
- CompanyName string `description:"客户名称"`
- CreditCode string `description:"社会统一信用码"`
- Status string `description:"客户状态"`
- TryOutTime time.Time `description:"正式转试用时间"`
- RenewalReason string `description:"正式转试用后的续约情况说明"`
- RenewalTodo string `description:"未续约说明中的待办事项说明"`
- LastDescriptionTime string `description:"上次添加说明时间"`
- RenewalIntention int `description:"是否勾选无续约意向,1:确认,0:未确认"`
- CreateTime time.Time `description:"创建时间"`
- ModifyTime time.Time `description:"修改时间"`
- StartDate string `description:"开始日期"`
- EndDate string `description:"结束日期"`
- ExpireDays int `description:"到期日期"`
- }
- // GetTryOutCompanyCount
- // 获取今日待办消息数量
- func GetTryOutCompanyCount(condition string, pars []interface{}) (total int, err error) {
- o := orm.NewOrm()
- sql := ` select count(*) count from company_product a
- join company b on a.company_id=b.company_id where 1=1 and a.status="试用" `
- sql += condition
- err = o.Raw(sql, pars).QueryRow(&total)
- return
- }
- // GetTryOutCompanyList
- // 获取今日待办消息
- func GetTryOutCompanyList(condition string, pars []interface{}, startSize, pageSize int) (items []*TryOutCompanyList, err error) {
- o := orm.NewOrm()
- sql := ` select a.company_product_id,a.company_id,a.product_id,a.product_name,a.status,b.credit_code,b.company_name,a.try_out_time,a.renewal_reason,a.renewal_todo,a.last_description_time,a.create_time,a.modify_time,a.start_date,a.end_date from company_product a
- join company b on a.company_id=b.company_id where 1=1 and a.status="试用" `
- sql += condition
- sql += ` LIMIT ?,? `
- _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
- return
- }
- // EditTryOutCompanyReason 编辑续约情况说明
- func EditTryOutCompanyReason(companyProduct *CompanyProduct, reason string, renewalTodo string) (err error) {
- o := orm.NewOrm()
- updateCols := make([]string, 0)
- companyProduct.RenewalReason = reason
- companyProduct.RenewalTodo = renewalTodo
- companyProduct.ModifyTime = time.Now()
- companyProduct.LastDescriptionTime = time.Now()
- updateCols = append(updateCols, "RenewalReason", "RenewalTodo", "ModifyTime", "LastDescriptionTime", "RenewalIntention")
- _, err = o.Update(companyProduct, updateCols...)
- return
- }
- // CompanyRenewalReason 未续约说明
- type CompanyRenewalReason struct {
- CompanyRenewalReasonId int `orm:"column(company_renewal_reason_id);pk" description:"未续约说明id"`
- CompanyId int `description:"客户id"`
- ProductId int `description:"产品id"`
- ProductName string `description:"产品名称"`
- CompanyName string `description:"客户名称"`
- TryOutTime time.Time `description:"正式转试用时间"`
- RenewalReason string `description:"正式转试用后的续约情况说明"`
- RenewalTodo string `description:"未续约说明中的待办事项说明"`
- LastDescriptionTime time.Time `description:"上次添加说明时间"`
- EndDays time.Time `description:"到期时间"`
- ExpirationTimeExceeded int `description:"超出到期时间"`
- RenewalIntention int `description:"是否勾选无续约意向,1:确认,0:未确认"`
- CreateTime time.Time `description:"创建时间"`
- }
- // AddRenewalReason 新增续约情况说明
- func AddRenewalReason(renewalReason *CompanyRenewalReason) (newId int64, err error) {
- o := orm.NewOrm()
- newId, err = o.Insert(renewalReason)
- return
- }
- // GetLastDescriptionTime 查询上次添加未续约说明时间
- func GetLastDescriptionTime() (items []*TryOutCompanyList, err error) {
- o := orm.NewOrm()
- sql := "SELECT * FROM company_product ORDER BY last_description_time desc limit 1"
- err = o.Raw(sql).QueryRow(&items)
- return
- }
- // UpdateLastDescriptionTime 更新最后一次修改未续约说明时间
- func UpdateLastDescriptionTime(companyProduct *CompanyProduct) (err error) {
- o := orm.NewOrm()
- updateCols := make([]string, 0)
- companyProduct.LastDescriptionTime = time.Now()
- updateCols = append(updateCols, "LastDescriptionTime")
- _, err = o.Update(companyProduct, updateCols...)
- return
- }
- // GetTryOutTimeFromOperationRecord 查询转试用时间
- func GetTryOutTimeFromOperationRecord(companyId int) (item *string, err error) {
- o := orm.NewOrm()
- sql := "SELECT create_time FROM company_operation_record WHERE company_id=? AND operation='try_out' ORDER BY create_time DESC "
- err = o.Raw(sql, companyId).QueryRow(&item)
- return
- }
- // GetCompanyProductsByCompanyIds 根据客户id集合字符串获取所有客户产品列表
- func GetCompanyProductsByCompanyIds(companyIds, condition string, pars []interface{}) (items []*CompanyProduct, err error) {
- if companyIds == `` {
- return
- }
- sql := `SELECT * FROM company_product WHERE company_id in (` + companyIds + `) `
- sql += condition
- sql += ` ORDER BY create_time ASC `
- o := orm.NewOrm()
- _, err = o.Raw(sql, pars).QueryRows(&items)
- return
- }
- // 更新最后一次编辑时间
- func UpdateCompanyProductModifyTime(companyId, productId int) (err error) {
- o := orm.NewOrm()
- sql := `UPDATE company_product SET modify_time=NOW() WHERE company_id=? AND product_id=? `
- _, err = o.Raw(sql, companyId, productId).Exec()
- return
- }
- // CompanyProductRemark 备注
- type CompanyProductRemark struct {
- CompanyProductRemarkId int `orm:"column(company_product_remark_id);pk" description:"备注id"`
- CompanyId int `description:"客户id"`
- ProductId int `description:"产品id"`
- ProductName string `description:"产品名称"`
- Remark string `description:"备注"`
- CreateTime time.Time `description:"创建时间"`
- SysUserId int `description:"创建人ID"`
- SysRealName string `description:"创建人姓名"`
- }
- func AddCompanyRemark(remark *CompanyProductRemark) (newId int64, err error) {
- o := orm.NewOrm()
- newId, err = o.Insert(remark)
- return
- }
- // GetRemarkList 获取备注列表
- func GetRemarkList(CompanyId, ProductId string) (items []*CompanyProductRemark, err error) {
- o := orm.NewOrm()
- sql := "SELECT * FROM company_product_remark WHERE company_id=? AND product_id=? ORDER BY create_time DESC"
- _, err = o.Raw(sql, CompanyId, ProductId).QueryRows(&items)
- return
- }
- // GetRemarkList 获取备注列表15.9.1job
- func GetRemarkListInit() (items []*CompanyProductRemark, err error) {
- o := orm.NewOrm()
- sql := "SELECT * FROM company_product_remark WHERE product_id=2 ORDER BY create_time DESC"
- _, err = o.Raw(sql).QueryRows(&items)
- return
- }
- // GetRemarkList 获取备注列表
- func GetRemarkListByCompanyId(CompanyId string) (items []*CompanyProductRemark, err error) {
- o := orm.NewOrm()
- sql := "SELECT * FROM company_product_remark WHERE company_id=? ORDER BY create_time DESC"
- _, err = o.Raw(sql, CompanyId).QueryRows(&items)
- return
- }
- // 冻结客户
- //func FreezeCompany(productId, companyId, adminId int, remark, realName string) (msg, errMsg string){
- // time.Sleep(time.Second)
- // productName := ""
- // if productId == 1 {
- // productName = "ficc"
- // } else if productId == 2 {
- // productName = "权益"
- // } else {
- // productName = "佣金客户"
- // }
- //
- // cp, err := GetCompanyProductByCompanyIdAndProductId(companyId, productId)
- // if err != nil {
- // msg = "查询该客户产品异常!"
- // errMsg = "查询该客户产品异常,err:" + err.Error()
- // return
- // }
- // if cp.Status != utils.COMPANY_STATUS_TRY_OUT {
- // msg = "客户状态为:" + cp.Status + ";不可冻结"
- // errMsg = "客户状态为:" + cp.Status + ";不可冻结"
- // return
- // }
- // //查询客户的产品权限
- // companyReportPermissionList, err := GetCompanyReportPermission(companyId, productId)
- // if err != nil {
- // msg = "查询客户的产品权限异常"
- // errMsg = "查询客户的产品权限异常:" + err.Error()
- // return
- // }
- // err = CompanyFreeze(companyId, productId, remark)
- // if err != nil {
- // msg = "冻结失败!"
- // errMsg = "冻结失败,Err:" + err.Error()
- // return
- // }
- // //新增操作记录
- // {
- // approveContent := remark
- // remark := "冻结客户"
- // operation := "freeze"
- // services.AddCompanyOperationRecord(companyId, cp.SellerId, adminId, productId, adminId, cp.CompanyName,
- // productName, "超级管理员", remark, operation, approveContent, realName, "", "冻结")
- //
- // //新增产品权限冻结操作日志
- // for _, companyReportPermission := range companyReportPermissionList {
- // record := company_report_permission_log.CompanyReportPermissionLog{
- // CompanyReportPermissionId: companyReportPermission.CompanyReportPermissionId,
- // CompanyId: companyReportPermission.CompanyId,
- // ProductId: productId,
- // ProductName: companyReportPermission.ProductName,
- // SysUserId: adminId,
- // SysUserName: "超级管理员",
- // Remark: "冻结客户",
- // Operation: "freeze",
- // Status: companyReportPermission.Status,
- // CreateTime: time.Now(),
- // }
- // _, err = company_report_permission_log.AddCompanyReportPermissionLog(&record)
- // }
- // }
- // if err != nil {
- // msg = "编辑失败"
- // errMsg = "编辑失败,Err:" + err.Error()
- // }
- // return
- //}
- // SellerTryCompanyProductIds 销售对应的客户ID
- type SellerTryCompanyProductIds struct {
- CompanyIds string `description:"客户ids"`
- SellerId int `description:"销售ID"`
- }
- // GetTryCompanyIdsBySellerIds 获取销售对应的试用客户ID
- func GetTryCompanyIdsBySellerIds(productId int, sellerIds string) (list []*SellerTryCompanyProductIds, err error) {
- o := orm.NewOrm()
- sql := ` SELECT seller_id, GROUP_CONCAT(DISTINCT company_id SEPARATOR ',') AS company_ids
- FROM company_product
- WHERE product_id=? and status = "试用" and seller_id in ` + sellerIds + ` GROUP BY seller_id
- `
- _, err = o.Raw(sql, productId).QueryRows(&list)
- return
- }
- // GetCompanyProductsByCompanyIdsAndProductId 根据客户id集合字符串以及品种id获取所有客户产品列表
- func GetCompanyProductsByCompanyIdsAndProductId(companyIds []int, productId int) (items []*CompanyProduct, err error) {
- lenCompanyId := len(companyIds)
- if lenCompanyId == 0 {
- return
- }
- sql := `SELECT b.* FROM company a left join company_product b on a.company_id=b.company_id WHERE a.company_id in (` + utils.GetOrmInReplace(lenCompanyId) + `) AND b.product_id = ? `
- o := orm.NewOrm()
- _, err = o.Raw(sql, companyIds, productId).QueryRows(&items)
- return
- }
- // GetCompanyProductByCompanyIdAndSellerId 根据客户id和所属销售id获取客户产品信息
- func GetCompanyProductByCompanyIdAndSellerId(companyId, sellerId int) (item *CompanyProduct, err error) {
- o := orm.NewOrm()
- sql := `SELECT b.* FROM company AS a
- INNER JOIN company_product AS b ON a.company_id=b.company_id
- WHERE a.company_id=? AND b.seller_id=? LIMIT 1 `
- err = o.Raw(sql, companyId, sellerId).QueryRow(&item)
- return
- }
- // GetCompanyProductsByCompanyIds 根据客户id集合字符串获取所有客户产品列表
- func GetCompanyProductsBySellerId(sellerId string) (items []*CompanyProduct, err error) {
- sql := `SELECT * FROM company_product WHERE (seller_id in (` + sellerId + `) OR share_seller_id IN (` + sellerId + `) )`
- o := orm.NewOrm()
- _, err = o.Raw(sql).QueryRows(&items)
- return
- }
- // GetCompanyProductsByCondition 获取客户产品列表
- func GetCompanyProductsByCondition(condition string, pars []interface{}) (list []*CompanyProduct, err error) {
- sql := `SELECT
- b.*
- FROM
- company AS a
- JOIN company_product AS b ON a.company_id = b.company_id
- WHERE
- 1 = 1 `
- if condition != `` {
- sql += condition
- }
- _, err = orm.NewOrm().Raw(sql, pars).QueryRows(&list)
- return
- }
- // AddCompanyProductTryOutDayTotal 将客户产品的试用天数+1
- func AddCompanyProductTryOutDayTotal(companyId, productId int) (err error) {
- o := orm.NewOrm()
- sql := `UPDATE company_product
- SET
- try_out_day_total = try_out_day_total+1
- WHERE company_id = ? AND product_id = ?`
- _, err = o.Raw(sql, companyId, productId).Exec()
- return
- }
- // 获取详情
- func GetCompanyProductDetail(companyId, productId int) (item *CompanyProductDetail, err error) {
- sql := ` SELECT * FROM company_product WHERE company_id = ? AND product_id = ?; `
- o := orm.NewOrm()
- err = o.Raw(sql, companyId, productId).QueryRow(&item)
- return
- }
- // 根据状态获取客户列表
- func GetCompanyProductListByStatus(status string, productId int) (items []*CompanyProduct, err error) {
- sql := ` SELECT * FROM company_product WHERE status = ? AND product_id = ?; `
- o := orm.NewOrm()
- _, err = o.Raw(sql, status, productId).QueryRows(&items)
- return
- }
- // 根据规模取客户列表
- func GetCompanyProductListByScale(status string, productId int) (items []*CompanyProduct, err error) {
- sql := ` SELECT * FROM company_product WHERE scale IN (?) AND product_id = ?; `
- o := orm.NewOrm()
- _, err = o.Raw(sql, status, productId).QueryRows(&items)
- return
- }
- // GetCompanyRemarkById 获取客户备注
- func GetCompanyRemarkById(remarkId int) (item *CompanyProductRemark, err error) {
- o := orm.NewOrm()
- sql := `SELECT * FROM company_product_remark WHERE company_product_remark_id = ? LIMIT 1`
- err = o.Raw(sql, remarkId).QueryRow(&item)
- return
- }
- // DelCompanyRemark 删除客户备注
- func DelCompanyRemark(remarkId int) (err error) {
- o := orm.NewOrm()
- sql := `DELETE FROM company_product_remark WHERE company_product_remark_id = ? LIMIT 1`
- _, err = o.Raw(sql, remarkId).Exec()
- return
- }
- // 获取列表
- func GetCompanyProductList(condition string, pars []interface{}) (items []*CompanyProduct, err error) {
- o := orm.NewOrm()
- sql := `SELECT * FROM company_product WHERE 1= 1 `
- if condition != "" {
- sql += condition
- }
- _, err = o.Raw(sql, pars).QueryRows(&items)
- return
- }
- // 获取列表
- func GetCompanyProductListBycondition(condition string, pars []interface{}) (items []*CompanyProduct, err error) {
- o := orm.NewOrm()
- sql := ` SELECT a.company_id FROM company AS a INNER JOIN company_product AS b ON a.company_id=b.company_id WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
- _, err = o.Raw(sql, pars).QueryRows(&items)
- return
- }
- // 更新用户是否签约过
- func UpdateCompanyProductIsSigningById(companyId, productId int) (err error) {
- o := orm.NewOrm()
- sql := `UPDATE company_product SET is_signing=1 WHERE company_id=? AND product_id=? `
- _, err = o.Raw(sql, companyId, productId).Exec()
- return
- }
- // CompanyProductItem
- // @Description: 客户品种
- type CompanyProductItem struct {
- CompanyProductId int `orm:"column(company_product_id);pk" description:"客户产品id"`
- CompanyId int `description:"客户id"`
- ProductId int `description:"产品id"`
- ProductName string `description:"产品名称"`
- CompanyName string `description:"客户名称"`
- Source string `description:"来源"`
- Reasons string `description:"新增理由"`
- Status string `description:"客户状态"`
- IndustryId int `description:"行业id"`
- IndustryName string `description:"行业名称"`
- SellerId int `description:"销售id"`
- SellerName string `description:"销售名称"`
- GroupId int `description:"销售分组id"`
- DepartmentId int `description:"销售部门id"`
- IsSuspend int `description:"1:暂停,0:启用"`
- SuspendTime time.Time `description:"暂停启用时间"`
- ApproveStatus string `description:"审批状态:'审批中','通过','驳回'"`
- FreezeTime time.Time `description:"冻结时间"`
- Remark string `description:"备注信息"`
- CreateTime time.Time `description:"创建时间"`
- ModifyTime time.Time `description:"修改时间"`
- StartDate string `description:"开始日期"`
- EndDate string `description:"结束日期"`
- ContractEndDate string `description:"合同结束日期"`
- LoseReason string `description:"流失原因"`
- LossTime time.Time `description:"流失时间"`
- CompanyType string `description:"客户类型"`
- OpenCode string `description:"开放给第三方的编码,不让第三方定位我们的客户信息"`
- Scale string `description:"管理规模,空不填,1::50亿以下,2:50~100亿,3:100亿以上。"`
- ViewTotal int `description:"总阅读次数"`
- RoadShowTotal int `description:"累计路演次数"`
- LastViewTime time.Time `description:"最后一次阅读时间"`
- PackageType int `description:"套餐类型,0:无,1:大套餐,2:小套餐"`
- IsFormal int `description:"是否已经转正式,0是没有转正式,1是已经转过正式"`
- TodoStatus string `description:"任务处理状态;枚举值:'无任务','未完成','已完成'"`
- TodoCreateTime time.Time `description:"任务创建时间"`
- TodoApproveTime time.Time `description:"任务审批时间"`
- TryStage int `description:"试用客户子标签:1未分类、2 推进、3 跟踪、4 预备"`
- IsShare int `description:"0:非共享用户,1:共享客户"`
- ShareSeller string `description:"共享销售员"`
- ShareSellerId int `description:"共享销售员id"`
- }
- // GetCompanyProductItemByCompanyId
- // @Description: 根据客户ID获取客户产品列表
- // @author: Roc
- // @datetime 2023-12-07 11:06:58
- // @param companyIdList []int
- // @param productId int
- // @return items []*CompanyProductItem
- // @return err error
- func GetCompanyProductItemByCompanyId(companyId int, productId int) (item *CompanyProductItem, err error) {
- o := orm.NewOrm()
- sql := `SELECT a.*,b.is_share,b.share_seller,b.share_seller_id FROM company_product as a
- JOIN company b on a.company_id=b.company_id
- WHERE a.company_id = ? AND a.product_id = ? `
- err = o.Raw(sql, companyId, productId).QueryRow(&item)
- return
- }
- // GetCompanyProductListByCompanyIds 根据客户id集合以及类型获取所有客户产品列表
- func GetCompanyProductListByCompanyIds(companyIds []int, productId int) (items []*CompanyProduct, err error) {
- lenArr := len(companyIds)
- if lenArr == 0 {
- return
- }
- sql := `SELECT * FROM company_product WHERE 1= 1 AND company_id IN (` + utils.GetOrmInReplace(lenArr) + `)` + ` AND product_id = ?`
- o := orm.NewOrm()
- _, err = o.Raw(sql, companyIds, productId).QueryRows(&items)
- return
- }
- // 获取权益用户客户数量
- func GetCompanyProductRaiForeverCount(companyId int) (count int, err error) {
- sqlCount := ` SELECT COUNT(1) AS count FROM company_product WHERE 1= 1 AND product_id = 2 AND status = '永续' AND company_id = ? `
- o := orm.NewOrm()
- err = o.Raw(sqlCount, companyId).QueryRow(&count)
- return
- }
- // 根据共享销售id查被共享的公司销售id
- func GetCompanyProductSellerIdByShareSellerId(shareSellerId int) (sellerIds string, err error) {
- sqlCount := ` SELECT GROUP_CONCAT( DISTINCT seller_id SEPARATOR ',' ) AS seller_ids FROM company_product WHERE share_seller_id = ? AND product_id = 2 `
- o := orm.NewOrm()
- err = o.Raw(sqlCount, shareSellerId).QueryRow(&sellerIds)
- return
- }
- // 更新被分享销售的所属组ID
- func UpdateSharGroupid(sharGroupid, shareSellerId int) (err error) {
- o := orm.NewOrm()
- sql := `UPDATE company_product SET share_group_id = ? WHERE share_seller_id = ?`
- _, err = o.Raw(sql, sharGroupid, shareSellerId).Exec()
- return
- }
|