contract_allocation.go 38 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244
  1. package cygx
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "github.com/rdlucklib/rdluck_tools/paging"
  6. "github.com/tealeg/xlsx"
  7. "hongze/hz_crm_api/controllers"
  8. "hongze/hz_crm_api/models"
  9. "hongze/hz_crm_api/models/company"
  10. "hongze/hz_crm_api/models/contract"
  11. "hongze/hz_crm_api/models/cygx"
  12. "hongze/hz_crm_api/models/system"
  13. cygxService "hongze/hz_crm_api/services/cygx"
  14. "hongze/hz_crm_api/utils"
  15. "os"
  16. "path/filepath"
  17. "strconv"
  18. "strings"
  19. "time"
  20. )
  21. // ContractAllocationController 权益合同派单
  22. type ContractAllocationController struct {
  23. controllers.BaseAuthController
  24. }
  25. // getQueryParams 获取基础查询信息
  26. func getQueryParams(condition string, pars []interface{}, sysUser *system.Admin, tableAlias string) (newCondition string, newPars []interface{}) {
  27. if sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_FICC_ADMIN {
  28. condition += " AND " + tableAlias + "product_id=?"
  29. pars = append(pars, 1)
  30. } else if sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_RAI_ADMIN {
  31. condition += " AND " + tableAlias + "product_id=?"
  32. pars = append(pars, 2)
  33. } else if sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_ADMIN || sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_FINANCE {
  34. //超级管理员账户,不做条件限制
  35. } else {
  36. //如果不是研究员,那么去找对应的 部门、小组、销售
  37. if sysUser.Authority == 0 {
  38. //普通用户
  39. condition += " AND " + tableAlias + "seller_id=?"
  40. pars = append(pars, sysUser.AdminId)
  41. } else if sysUser.Authority == 1 {
  42. //部门主管
  43. condition += " AND " + tableAlias + "department_id=?"
  44. pars = append(pars, sysUser.DepartmentId)
  45. } else if sysUser.Authority == 2 && sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_RAI_GROUP {
  46. //权益小组负责人
  47. condition += " AND " + tableAlias + "group_id=?"
  48. pars = append(pars, sysUser.GroupId)
  49. } else if sysUser.Authority == 2 && sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_FICC_GROUP {
  50. //ficc销售主管
  51. pid, err := company.GetParentIdFromGroup(sysUser.GroupId)
  52. if err != nil {
  53. fmt.Println(err.Error())
  54. return
  55. }
  56. var ids []*string
  57. if pid != nil && *pid != 0 {
  58. ids, err = company.GetGroupIdsByParentId(*pid)
  59. if err != nil {
  60. fmt.Println(err.Error())
  61. }
  62. } else {
  63. ids, err = company.GetGroupIdsByParentId(sysUser.GroupId)
  64. if err != nil {
  65. fmt.Println(err.Error())
  66. }
  67. }
  68. var idSlice []string
  69. var sid string
  70. for _, id := range ids {
  71. idSlice = append(idSlice, *id)
  72. }
  73. //加入父级groupId
  74. if *pid > 0 {
  75. idSlice = append(idSlice, strconv.Itoa(*pid))
  76. } else {
  77. idSlice = append(idSlice, strconv.Itoa(sysUser.GroupId))
  78. }
  79. sid = strings.Join(idSlice, ",")
  80. condition += " AND " + tableAlias + `group_id IN (` + sid + `) `
  81. fmt.Println("condition:", condition)
  82. //pars = append(pars, sysUser.GroupId)
  83. } else if sysUser.Authority == 4 {
  84. //ficc小组负责人
  85. condition += " AND " + tableAlias + "group_id=?"
  86. pars = append(pars, sysUser.GroupId)
  87. } else {
  88. //不知道什么类型的用户(后面新增的位置类型客户)
  89. condition += " AND " + tableAlias + "seller_id=?"
  90. pars = append(pars, sysUser.AdminId)
  91. }
  92. }
  93. newCondition = condition
  94. newPars = pars
  95. return
  96. }
  97. // @Title 合同列表
  98. // @Description 合同列表接口
  99. // @Param PageSize query int true "每页数据条数"
  100. // @Param CurrentIndex query int true "当前页页码,从1开始"
  101. // @Param Keyword query string true "客户名称"
  102. // @Param AdminId query string true "销售id,多个用英文逗号隔开,空字符串为全部"
  103. // @Param StartDate query string false "开始日期"
  104. // @Param EndDate query string false "结束日期"
  105. // @Param ContractType query string false "合同类型,枚举值:“,`新签合同`,`续约合同`,`补充协议`"
  106. // @Param FormalType query string false "转正类型,枚举值:“,`标准`,`非标`"
  107. // @Param IsExport query bool false "是否导出excel,默认是false"
  108. // @Param ResearcherRealName query string false "研究员姓名"
  109. // @Param IsAllocation query int false "派点状态: -1-默认全部; 0-未派点; 1-已派点"
  110. // @Success 200 {object} cygx.CompanyContractListResp
  111. // @router /allocation/company_contract_list [get]
  112. func (this *ContractAllocationController) CompanyContractList() {
  113. br := new(models.BaseResponse).Init()
  114. defer func() {
  115. this.Data["json"] = br
  116. this.ServeJSON()
  117. }()
  118. sysUser := this.SysUser
  119. if sysUser == nil {
  120. br.Msg = "请登录"
  121. br.ErrMsg = "请登录,SysUser Is Empty"
  122. br.Ret = 408
  123. return
  124. }
  125. pageSize, _ := this.GetInt("PageSize")
  126. currentIndex, _ := this.GetInt("CurrentIndex")
  127. adminId := this.GetString("AdminId")
  128. formalType := this.GetString("FormalType")
  129. contractType := this.GetString("ContractType")
  130. keyword := this.GetString("Keyword")
  131. startDate := this.GetString("StartDate")
  132. endDate := this.GetString("EndDate")
  133. researcherRealName := this.GetString("ResearcherRealName")
  134. isAllocation, _ := this.GetInt("IsAllocation", -1) // CRM 13.9
  135. if startDate == "" {
  136. startDate = "2015-01-01"
  137. }
  138. var startSize int
  139. if pageSize <= 0 {
  140. pageSize = utils.PageSize20
  141. }
  142. if currentIndex <= 0 {
  143. currentIndex = 1
  144. }
  145. startSize = utils.StartIndex(currentIndex, pageSize)
  146. //是否导出报表
  147. isExport, _ := this.GetBool("IsExport")
  148. if isExport {
  149. pageSize = 10000
  150. currentIndex = 1
  151. }
  152. var condition string
  153. var pars []interface{}
  154. if endDate != "" {
  155. condition += ` AND a.start_date >= ? AND a.start_date <= ? `
  156. pars = append(pars, startDate+" 00:00:01", endDate+" 23:59:59")
  157. }
  158. //条件
  159. if adminId != "" {
  160. condition += ` AND c.seller_id in (` + adminId + `) `
  161. //pars = append(pars, adminId)
  162. }
  163. //权益申请销售只能看到自己名下的客户的申请
  164. companyIds, err := cygxService.GetAdminLookUserCompanyIdsBySelf(sysUser)
  165. if err != nil {
  166. br.Msg = "获取失败"
  167. br.ErrMsg = "获取失败,GetAdminLookUserCompanyIds Err:" + err.Error()
  168. return
  169. }
  170. lencompanyIds := len(companyIds)
  171. if lencompanyIds > 0 {
  172. condition += ` AND c.company_id IN (` + utils.GetOrmInReplace(lencompanyIds) + `)`
  173. pars = append(pars, companyIds)
  174. }
  175. //关键字搜索
  176. if keyword != "" {
  177. condition += ` and b.company_name like "%` + keyword + `%" `
  178. }
  179. //是否派点
  180. if isAllocation != -1 {
  181. condition += ` AND a.is_allocation = ? `
  182. pars = append(pars, isAllocation)
  183. }
  184. // 标准非标查询
  185. switch formalType {
  186. case "标准":
  187. condition += ` AND a.source = ? `
  188. pars = append(pars, "系统合同")
  189. case "非标":
  190. condition += ` AND a.source = ? `
  191. pars = append(pars, "上传附件")
  192. }
  193. if contractType != "" {
  194. condition += ` AND a.contract_type = ? `
  195. pars = append(pars, contractType)
  196. }
  197. //默认只查询权益 2023-06-01 之后的合同
  198. condition += ` AND c.product_id = ? AND a.start_date > ? `
  199. pars = append(pars, 2, "2023-05-31")
  200. mapMoneyPoint := make(map[int]float64)
  201. //研究员姓名查询
  202. if researcherRealName != "" {
  203. var conditionAllocation string
  204. var parsAllocation []interface{}
  205. conditionAllocation = " AND real_name = ? AND money != 0 "
  206. parsAllocation = append(parsAllocation, researcherRealName)
  207. allocationCompanyContractList, err := cygx.GetCygxAllocationCompanyContractList(conditionAllocation, parsAllocation)
  208. if err != nil {
  209. br.Msg = "获取失败"
  210. br.ErrMsg = "获取失败,GetCygxAllocationCompanyContractListErr:" + err.Error()
  211. return
  212. }
  213. var companyContractIds []int
  214. for _, v := range allocationCompanyContractList {
  215. companyContractIds = append(companyContractIds, v.CompanyContractId)
  216. mapMoneyPoint[v.CompanyContractId] = v.Money
  217. }
  218. lenCon := len(companyContractIds)
  219. if lenCon == 0 {
  220. condition += ` AND a.company_contract_id = 0 `
  221. } else {
  222. condition += ` AND a.company_contract_id IN (` + utils.GetOrmInReplace(lenCon) + `)`
  223. pars = append(pars, companyContractIds)
  224. }
  225. }
  226. var list []*cygx.CompanyContractResp
  227. total, err := cygx.GetCompanyContractCountJoinCompany(condition, pars)
  228. if err != nil && err.Error() != utils.ErrNoRow() {
  229. br.Msg = "获取失败"
  230. br.ErrMsg = "获取失败,Err:" + err.Error()
  231. return
  232. }
  233. //列表页数据
  234. list, err = cygx.GetCompanyContractListJoinCompany(condition, pars, startSize, pageSize)
  235. if err != nil {
  236. br.Msg = "获取失败"
  237. br.ErrMsg = "获取失败,Err:" + err.Error()
  238. return
  239. }
  240. //mapCompamy := make(map[int]string)
  241. listLen := len(list)
  242. if listLen == 0 {
  243. list = make([]*cygx.CompanyContractResp, 0)
  244. } else {
  245. var contractCodes []string
  246. var companyContractIds []int
  247. for _, v := range list {
  248. switch v.Source {
  249. case "系统合同":
  250. v.FormalType = "标准"
  251. case "上传附件":
  252. v.FormalType = "非标"
  253. }
  254. contractCodes = append(contractCodes, v.ContractCode)
  255. companyContractIds = append(companyContractIds, v.CompanyContractId)
  256. //mapCompamy[v.CompanyId] = strconv.Itoa(v.CompanyContractId)
  257. }
  258. lencontractCodes := len(contractCodes)
  259. if lencontractCodes > 0 {
  260. //获取标准合同的ID,这里上面的查询已经关联了三张表,拆分吧。。。
  261. condition = ""
  262. joinStr := ""
  263. pars = make([]interface{}, 0)
  264. condition = " AND a.contract_code IN (" + utils.GetOrmInReplace(lencontractCodes) + ") "
  265. pars = append(pars, contractCodes)
  266. listContract, err := contract.GetContractList(condition, joinStr, pars, 0, lencontractCodes)
  267. if err != nil {
  268. br.Msg = "获取合同列表失败!"
  269. br.ErrMsg = "获取合同列表失败,Err:" + err.Error()
  270. return
  271. }
  272. mapContractCode := make(map[string]int)
  273. for _, v := range listContract {
  274. mapContractCode[v.ContractCode] = v.ContractId
  275. }
  276. mapIsGray, err := cygxService.GetMapIsGrayByCompanyContractIds(companyContractIds)
  277. if err != nil {
  278. br.Msg = "获取合同列表失败!"
  279. br.ErrMsg = "获取合同列表失败,GetMapIsGrayByCompanyContractIds Err:" + err.Error()
  280. return
  281. }
  282. //合并合同所对应的权限
  283. mappermissionName, err := cygxService.GetCompanyContractPermissionNameMapById(companyContractIds)
  284. if err != nil {
  285. br.Msg = "获取失败"
  286. br.ErrMsg = "获取失败,Err:" + err.Error()
  287. return
  288. }
  289. for _, v := range list {
  290. v.ContractId = mapContractCode[v.ContractCode]
  291. v.MoneyPoint = mapMoneyPoint[v.CompanyContractId]
  292. v.PermissionName = mappermissionName[v.CompanyContractId]
  293. v.IsGray = mapIsGray[v.CompanyContractId]
  294. }
  295. }
  296. }
  297. page := paging.GetPaging(currentIndex, pageSize, total)
  298. resp := cygx.CompanyContractListResp{
  299. Paging: page,
  300. List: list,
  301. }
  302. //导出excel
  303. if isExport {
  304. CompanyContractListExport(this, resp, br)
  305. return
  306. }
  307. br.Ret = 200
  308. br.Success = true
  309. br.Msg = "获取成功"
  310. br.Data = resp
  311. }
  312. // CompanyContractListExport 导出Excel
  313. func CompanyContractListExport(this *ContractAllocationController, resp cygx.CompanyContractListResp, br *models.BaseResponse) {
  314. dir, err := os.Executable()
  315. exPath := filepath.Dir(dir)
  316. downLoadnFilePath := exPath + "/" + time.Now().Format(utils.FormatDateTimeUnSpace) + ".xlsx"
  317. xlsxFile := xlsx.NewFile()
  318. if err != nil {
  319. br.Msg = "生成文件失败"
  320. br.ErrMsg = "生成文件失败"
  321. return
  322. }
  323. style := xlsx.NewStyle()
  324. alignment := xlsx.Alignment{
  325. Horizontal: "center",
  326. Vertical: "center",
  327. WrapText: true,
  328. }
  329. style.Alignment = alignment
  330. style.ApplyAlignment = true
  331. sheel, err := xlsxFile.AddSheet("派点导出数据")
  332. if err != nil {
  333. br.Msg = "新增Sheet失败"
  334. br.ErrMsg = "新增Sheet失败,Err:" + err.Error()
  335. return
  336. }
  337. sheel.SetColWidth(0, 0, 30)
  338. sheel.SetColWidth(1, 1, 15)
  339. sheel.SetColWidth(2, 2, 15)
  340. sheel.SetColWidth(3, 3, 18)
  341. titleRow := sheel.AddRow()
  342. cellA := titleRow.AddCell()
  343. cellA.SetStyle(style)
  344. cellA.SetValue("合同编号")
  345. cellB := titleRow.AddCell()
  346. cellB.SetStyle(style)
  347. cellB.SetValue("转正类型")
  348. cellC := titleRow.AddCell()
  349. cellC.SetStyle(style)
  350. cellC.SetValue("合同类型")
  351. cellD := titleRow.AddCell()
  352. cellD.SetStyle(style)
  353. cellD.SetValue("公司名称")
  354. cellE := titleRow.AddCell()
  355. cellE.SetStyle(style)
  356. cellE.SetValue("所属销售")
  357. cellF := titleRow.AddCell()
  358. cellF.SetStyle(style)
  359. cellF.SetValue("合同金额")
  360. cellG := titleRow.AddCell()
  361. cellG.SetStyle(style)
  362. cellG.SetValue("合同期限")
  363. cellH := titleRow.AddCell()
  364. cellH.SetStyle(style)
  365. cellH.SetValue("签约套餐")
  366. cellI := titleRow.AddCell()
  367. cellI.SetStyle(style)
  368. cellI.SetValue("状态")
  369. for _, v := range resp.List {
  370. dataRow := sheel.AddRow()
  371. dataRow.SetHeight(20)
  372. cellA := dataRow.AddCell()
  373. cellA.SetStyle(style)
  374. cellA.SetValue(v.ContractCode)
  375. cellB := dataRow.AddCell()
  376. cellB.SetStyle(style)
  377. cellB.SetValue(v.FormalType)
  378. cellC := dataRow.AddCell()
  379. cellC.SetStyle(style)
  380. cellC.SetValue(v.ContractType)
  381. cellD := dataRow.AddCell()
  382. cellD.SetStyle(style)
  383. cellD.SetValue(v.CompanyName)
  384. cellE := dataRow.AddCell()
  385. cellE.SetStyle(style)
  386. cellE.SetValue(v.SellerName)
  387. cellF := dataRow.AddCell()
  388. cellF.SetStyle(style)
  389. cellF.SetValue(v.Money)
  390. cellG := dataRow.AddCell()
  391. cellG.SetStyle(style)
  392. cellG.SetValue(fmt.Sprint(v.StartDate, " ~ ", v.EndDate))
  393. cellH := dataRow.AddCell()
  394. cellH.SetStyle(style)
  395. cellH.SetValue(v.PermissionName)
  396. cellI := dataRow.AddCell()
  397. cellI.SetStyle(style)
  398. if v.IsAllocation == 1 {
  399. cellI.SetValue("已派点")
  400. } else {
  401. cellI.SetValue("未派点")
  402. }
  403. }
  404. err = xlsxFile.Save(downLoadnFilePath)
  405. if err != nil {
  406. br.Msg = "保存文件失败"
  407. br.ErrMsg = "保存文件失败"
  408. return
  409. }
  410. randStr := time.Now().Format(utils.FormatDateTimeUnSpace)
  411. downloadFileName := "派点导出数据_" + randStr + ".xlsx"
  412. this.Ctx.Output.Download(downLoadnFilePath, downloadFileName)
  413. defer func() {
  414. os.Remove(downLoadnFilePath)
  415. }()
  416. br.Ret = 200
  417. br.Success = true
  418. br.Msg = "导出成功"
  419. }
  420. // @Title 详情
  421. // @Description 获取详情接口
  422. // @Param CompanyContractId query int true "ID"
  423. // @Param ShowDetail query bool false "是否是派点详情展示"
  424. // @Success Ret=200 {object} cygx.CygxAllocationCompanyContractDetailResp
  425. // @router /allocation/detail [get]
  426. func (this *ContractAllocationController) CompanyContracDetail() {
  427. br := new(models.BaseResponse).Init()
  428. defer func() {
  429. this.Data["json"] = br
  430. this.ServeJSON()
  431. }()
  432. AdminUser := this.SysUser
  433. if AdminUser == nil {
  434. br.Msg = "请登录"
  435. br.ErrMsg = "请登录,用户信息为空"
  436. br.Ret = 408
  437. return
  438. }
  439. resp := new(cygx.CygxAllocationCompanyContractDetailResp)
  440. companyContractId, _ := this.GetInt("CompanyContractId")
  441. if companyContractId < 1 {
  442. br.Msg = "请输入详情ID"
  443. return
  444. }
  445. showDetail, _ := this.GetBool("ShowDetail", false)
  446. contractItem, err := company.GetCompanyContractById(companyContractId)
  447. if err != nil {
  448. br.Msg = "获取信息失败"
  449. br.ErrMsg = "获取合同信息失败,Err:" + err.Error()
  450. return
  451. }
  452. total, err := cygx.GetCygxAllocationCompanyContractCountByCompanyContractId(companyContractId)
  453. if err != nil {
  454. br.Msg = "获取信息失败"
  455. br.ErrMsg = "获取合同信息失败,GetCygxAllocationCompanyContractCountByCompanyContractId Err:" + err.Error()
  456. return
  457. }
  458. //var contractPermissionList []*company.ContractPermissionList
  459. //expMap := map[int]string{0: "(3w)", 1: "(5w)", 2: "(10w)"} // 买方研选价格
  460. hasPermissions, e := company.GetCompanyContractPermissionByCompanyContractId(companyContractId)
  461. if e != nil {
  462. br.Msg = "获取失败"
  463. br.ErrMsg = "获取合同权限信息失败,Err:" + e.Error()
  464. return
  465. }
  466. hasMap := make(map[int]*company.CompanyContractPermission)
  467. var pointMoney float64
  468. for _, p := range hasPermissions {
  469. hasMap[p.ChartPermissionId] = p
  470. if p.ChartPermissionId == utils.YAN_XUAN_KOU_DIAN_BAO_ID {
  471. pointMoney = 0.2 * p.Points
  472. }
  473. }
  474. raiPermissions, e := company.GetPermissionLookItemsExt("2", utils.COMPANY_PRODUCT_RAI_NAME)
  475. if e != nil {
  476. br.Msg = "获取失败"
  477. br.ErrMsg = "获取权益权限列表失败, Err: " + e.Error()
  478. return
  479. }
  480. mapPermissionNameHave := make(map[string]bool) // 判断合同是否存在某一行业权限种类
  481. var expensiveYx int
  482. for _, n := range raiPermissions {
  483. match := hasMap[n.ChartPermissionId]
  484. if match == nil {
  485. continue
  486. }
  487. mapPermissionNameHave[n.PermissionName] = true
  488. // 买方研选(3w/5w/10w)
  489. if n.PermissionName == utils.CHART_PERMISSION_NAME_MF_YANXUAN {
  490. expensiveYx = match.ExpensiveYx
  491. //n.PermissionName += expMap[match.ExpensiveYx]
  492. continue
  493. }
  494. }
  495. resp.Money = contractItem.Money / 10000
  496. //有研选时,对研选套餐类型做文案处理
  497. respItemYx := new(cygx.AllocationPermissionListResp) // 研选订阅
  498. respItemYxKouDian := new(cygx.AllocationPermissionListResp) // 研选扣点
  499. if mapPermissionNameHave[utils.CHART_PERMISSION_NAME_MF_YANXUAN] || mapPermissionNameHave[utils.YAN_XUAN_KOU_DIAN_BAO_NAME] {
  500. var moneyYx float64
  501. if mapPermissionNameHave[utils.CHART_PERMISSION_NAME_MF_YANXUAN] {
  502. if expensiveYx == 0 {
  503. moneyYx = 3
  504. } else if expensiveYx == 1 {
  505. moneyYx = 5
  506. } else if expensiveYx == 2 {
  507. moneyYx = 10
  508. }
  509. respItemYx.Proportion = 0
  510. respItemYx.Money = moneyYx
  511. respItemYx.ChartPermissionName = utils.CHART_PERMISSION_NAME_MF_YANXUAN
  512. respItemYx.ChartPermissionId = utils.CHART_PERMISSION_ID_YANXUAN
  513. respItemYx.List = append(respItemYx.List, &cygx.AllocationRealNameListResp{utils.CHART_PERMISSION_NAME_MF_YANXUAN, 0, moneyYx})
  514. }
  515. if mapPermissionNameHave[utils.YAN_XUAN_KOU_DIAN_BAO_NAME] {
  516. respItemYxKouDian.Proportion = 0
  517. respItemYxKouDian.Money = pointMoney
  518. respItemYxKouDian.ChartPermissionName = utils.YAN_XUAN_KOU_DIAN_BAO_NAME
  519. respItemYxKouDian.ChartPermissionId = utils.YAN_XUAN_KOU_DIAN_BAO_ID
  520. respItemYxKouDian.List = append(respItemYxKouDian.List, &cygx.AllocationRealNameListResp{utils.YAN_XUAN_KOU_DIAN_BAO_NAME, 0, pointMoney})
  521. }
  522. resp.TotalPointsContent = fmt.Sprint(resp.Money, "W,", "其中", moneyYx+pointMoney, "w默认归属买方研选,请对剩余", resp.Money-moneyYx-pointMoney, "w按照100%进行比值分配")
  523. if showDetail {
  524. resp.TotalPointsContent = fmt.Sprint(resp.Money, "W")
  525. }
  526. resp.Money = resp.Money - moneyYx
  527. } else {
  528. resp.TotalPointsContent = fmt.Sprint(resp.Money, "W")
  529. }
  530. sysUserList, err := cygx.GetAskEmailList()
  531. if err != nil {
  532. br.Msg = "获取失败"
  533. br.ErrMsg = "获取失败,GetAskEmailList Err: " + err.Error()
  534. return
  535. }
  536. mapPermissionUser := make(map[string][]*cygx.AllocationRealNameListResp)
  537. listPermission, err := cygx.GetChartPermissionAll()
  538. if err != nil {
  539. br.Msg = "获取信息失败"
  540. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  541. return
  542. }
  543. mapPermissionId := make(map[string]int)
  544. for _, v := range listPermission {
  545. mapPermissionId[v.PermissionName] = v.ChartPermissionId
  546. }
  547. var respList []*cygx.AllocationPermissionListResp
  548. if total == 0 {
  549. for _, v := range sysUserList {
  550. if !mapPermissionNameHave[v.ChartPermissionName] {
  551. continue
  552. }
  553. item := new(cygx.AllocationRealNameListResp)
  554. item.RealName = v.Name
  555. mapPermissionUser[v.ChartPermissionName] = append(mapPermissionUser[v.ChartPermissionName], item)
  556. }
  557. for k, v := range mapPermissionUser {
  558. respItem := new(cygx.AllocationPermissionListResp)
  559. respItem.ChartPermissionName = k
  560. respItem.ChartPermissionId = mapPermissionId[k]
  561. respItem.List = v
  562. respList = append(respList, respItem)
  563. }
  564. //研选订阅
  565. if respItemYx.ChartPermissionName != "" {
  566. respList = append(respList, respItemYx)
  567. }
  568. //研选扣点
  569. if respItemYxKouDian.ChartPermissionName != "" {
  570. respList = append(respList, respItemYxKouDian)
  571. }
  572. } else {
  573. listUser, err := cygx.GetCygxAllocationCompanyContractListById(companyContractId)
  574. if err != nil {
  575. br.Msg = "获取失败"
  576. br.ErrMsg = "获取失败,GetCygxAllocationCompanyContractListById Err: " + err.Error()
  577. return
  578. }
  579. for _, v := range listUser {
  580. if showDetail && v.Money == 0 {
  581. continue
  582. }
  583. item := new(cygx.AllocationRealNameListResp)
  584. item.RealName = v.RealName
  585. item.Money = v.Money
  586. item.Proportion = v.Proportion
  587. mapPermissionUser[v.ChartPermissionName] = append(mapPermissionUser[v.ChartPermissionName], item)
  588. }
  589. listPermission, err := cygx.GetCygxAllocationCompanyContractPermissionListById(companyContractId)
  590. if err != nil {
  591. br.Msg = "获取失败"
  592. br.ErrMsg = "获取失败,GetCygxAllocationCompanyContractPermissionListById Err: " + err.Error()
  593. return
  594. }
  595. for _, v := range listPermission {
  596. if showDetail && v.Money == 0 {
  597. continue
  598. }
  599. respItem := new(cygx.AllocationPermissionListResp)
  600. respItem.ChartPermissionName = v.ChartPermissionName
  601. respItem.ChartPermissionId = mapPermissionId[v.ChartPermissionName]
  602. respItem.Money = v.Money
  603. respItem.Proportion = v.Proportion
  604. respItem.List = mapPermissionUser[v.ChartPermissionName]
  605. respList = append(respList, respItem)
  606. }
  607. }
  608. //处理是否置灰
  609. mapIsGray, err := cygxService.GetMapIsGrayByCompanyContractIds([]int{companyContractId})
  610. if err != nil {
  611. br.Msg = "获取合同列表失败!"
  612. br.ErrMsg = "获取合同列表失败,GetMapIsGrayByCompanyContractIds Err:" + err.Error()
  613. return
  614. }
  615. permissionNameArr := []string{"医药", "消费", "科技", "智造", "策略", utils.CHART_PERMISSION_NAME_MF_YANXUAN, utils.YAN_XUAN_KOU_DIAN_BAO_NAME}
  616. for _, v := range permissionNameArr {
  617. for _, v2 := range respList {
  618. if v2.ChartPermissionName == v {
  619. resp.List = append(resp.List, v2)
  620. }
  621. }
  622. }
  623. resp.IsGray = mapIsGray[companyContractId]
  624. //resp.List = respList
  625. resp.CompanyContractId = companyContractId
  626. br.Ret = 200
  627. br.Success = true
  628. br.Msg = "获取成功"
  629. br.Data = resp
  630. }
  631. // @Title 更新派点
  632. // @Description 更新派点接口
  633. // @Param request body cygx.AddProductInteriorReq true "type json string"
  634. // @Success 200 {object} "保存成功"
  635. // @router /allocation/update [post]
  636. func (this *ContractAllocationController) CompanyContracUpdate() {
  637. br := new(models.BaseResponse).Init()
  638. defer func() {
  639. this.Data["json"] = br
  640. this.ServeJSON()
  641. }()
  642. sysUser := this.SysUser
  643. if sysUser == nil {
  644. br.Msg = "请登录"
  645. br.ErrMsg = "请登录,SysUser Is Empty"
  646. br.Ret = 408
  647. return
  648. }
  649. var req cygx.UpdateAllocationCompanyContractReq
  650. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  651. if err != nil {
  652. br.Msg = "参数解析异常!"
  653. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  654. return
  655. }
  656. companyContractId := req.CompanyContractId
  657. if companyContractId == 0 {
  658. br.Msg = "参数错误"
  659. br.ErrMsg = "参数错误,id不可为空"
  660. return
  661. }
  662. mapIsGray, err := cygxService.GetMapIsGrayByCompanyContractIds([]int{companyContractId})
  663. if err != nil {
  664. br.Msg = "获取合同列表失败!"
  665. br.ErrMsg = "获取合同列表失败,GetMapIsGrayByCompanyContractIds Err:" + err.Error()
  666. return
  667. }
  668. if mapIsGray[companyContractId] {
  669. br.Msg = "超过180天,无法修改!"
  670. br.ErrMsg = "超过180天,无法修改,companyContractId :" + strconv.Itoa(companyContractId)
  671. return
  672. }
  673. contractItem, err := company.GetCompanyContractById(companyContractId)
  674. if err != nil {
  675. br.Msg = "获取信息失败"
  676. br.ErrMsg = "获取合同信息失败,Err:" + err.Error()
  677. return
  678. }
  679. money := contractItem.Money / 10000 // 合同金额,万为单位
  680. var moneyAvg float64 // 行业所占合同的平均金额
  681. hasPermissions, e := company.GetCompanyContractPermissionByCompanyContractId(companyContractId)
  682. if e != nil {
  683. br.Msg = "获取失败"
  684. br.ErrMsg = "获取合同权限信息失败,Err:" + e.Error()
  685. return
  686. }
  687. hasMap := make(map[int]*company.CompanyContractPermission)
  688. for _, p := range hasPermissions {
  689. hasMap[p.ChartPermissionId] = p
  690. }
  691. raiPermissions, e := company.GetPermissionLookItemsExt("2", utils.COMPANY_PRODUCT_RAI_NAME)
  692. if e != nil {
  693. br.Msg = "获取失败"
  694. br.ErrMsg = "获取权益权限列表失败, Err: " + e.Error()
  695. return
  696. }
  697. mapPermissionNameHave := make(map[string]bool) // 判断合同是否存在某一行业权限种类
  698. for _, n := range raiPermissions {
  699. //只计算,医药、消费、科技、智造、策略、买方研选的
  700. if n.PermissionName != utils.YI_YAO_NAME && n.PermissionName != utils.XIAO_FEI_NAME && n.PermissionName != utils.KE_JI_NAME && n.PermissionName != utils.ZHI_ZAO_NAME && n.PermissionName != utils.CE_LUE_NAME && n.PermissionName != utils.CHART_PERMISSION_NAME_MF_YANXUAN {
  701. continue
  702. }
  703. match := hasMap[n.ChartPermissionId]
  704. if match == nil {
  705. continue
  706. }
  707. // 买方研选(3w/5w/10W)
  708. if n.PermissionName == utils.CHART_PERMISSION_NAME_MF_YANXUAN {
  709. if match.ExpensiveYx == 1 {
  710. money = money - 5
  711. } else if match.ExpensiveYx == 2 {
  712. money = money - 10
  713. } else {
  714. money = money - 3
  715. }
  716. } else {
  717. mapPermissionNameHave[n.PermissionName] = true
  718. }
  719. }
  720. if len(mapPermissionNameHave) > 0 {
  721. moneyAvg = money / float64(len(mapPermissionNameHave))
  722. }
  723. list := req.List
  724. var items []*cygx.CygxAllocationCompanyContract
  725. var itemsPermission []*cygx.CygxAllocationCompanyContractPermission
  726. var proportionSum float64 // 校验前端传过来的占比使用
  727. for _, v := range list {
  728. itemPermission := new(cygx.CygxAllocationCompanyContractPermission)
  729. itemPermission.CompanyContractId = companyContractId
  730. itemPermission.AdminId = sysUser.AdminId
  731. itemPermission.AdminName = sysUser.RealName
  732. itemPermission.Proportion = v.Proportion
  733. itemPermission.Money = v.Money
  734. if v.ChartPermissionName != utils.CHART_PERMISSION_NAME_MF_YANXUAN {
  735. itemPermission.MoneyAvg = moneyAvg
  736. if v.Money < moneyAvg/2 {
  737. br.Msg = "单行业占比值不得低于平均值的一半"
  738. br.ErrMsg = "单行业占比值不得低于平均值的一半,Err:" + fmt.Sprint(proportionSum)
  739. return
  740. }
  741. }
  742. itemPermission.ChartPermissionName = v.ChartPermissionName
  743. itemPermission.CreateTime = time.Now()
  744. itemPermission.ModifyTime = time.Now()
  745. itemsPermission = append(itemsPermission, itemPermission)
  746. var userProportionSum float64 // 校验前端传过来的占比使用
  747. for _, v2 := range v.List {
  748. if v2.Proportion < -20 {
  749. br.Msg = "研究员占比值不得小于总额的-20%"
  750. br.ErrMsg = "研究员占比值不得小于总额的20%,Err:" + fmt.Sprint(proportionSum)
  751. return
  752. }
  753. item := new(cygx.CygxAllocationCompanyContract)
  754. item.CompanyContractId = companyContractId
  755. item.AdminId = sysUser.AdminId
  756. item.AdminName = sysUser.RealName
  757. item.Proportion = v2.Proportion
  758. item.Money = v2.Money
  759. item.RealName = v2.RealName
  760. item.ChartPermissionName = v.ChartPermissionName
  761. item.CreateTime = time.Now()
  762. item.ModifyTime = time.Now()
  763. items = append(items, item)
  764. proportionSum += v2.Proportion
  765. userProportionSum += v2.Proportion
  766. }
  767. //先添加0.2%的精度校验
  768. if userProportionSum > (v.Proportion+0.2) || userProportionSum < (v.Proportion-0.2) {
  769. br.Msg = "单行业下的研究员比值之和不等于行业占比值"
  770. br.ErrMsg = "单行业下的研究员比值之和不等于行业占比值"
  771. return
  772. }
  773. }
  774. //先添加0.5%的精度校验
  775. if proportionSum > 100.5 || proportionSum < 99.5 {
  776. br.Msg = "行业总比值相加不等于100%"
  777. br.ErrMsg = "行业总比值相加不等于100%,Err:"
  778. return
  779. }
  780. err = cygx.AddAndUpdateCygxAllocationCompanyContract(items, itemsPermission, companyContractId)
  781. if err != nil {
  782. br.Msg = "操作失败"
  783. br.ErrMsg = "操作失败,AddAndUpdateCygxAllocationCompanyContract Err:" + err.Error()
  784. return
  785. }
  786. br.Ret = 200
  787. br.Success = true
  788. br.IsAddLog = true
  789. br.Msg = "操作成功"
  790. }
  791. // @Title 研究员派点统计
  792. // @Description 研究员派点统计接口
  793. // @Param PageSize query int true "每页数据条数"
  794. // @Param CurrentIndex query int true "当前页页码,从1开始"
  795. // @Param Keyword query string true "客户名称"
  796. // @Param StartDate query string false "开始日期"
  797. // @Param EndDate query string false "结束日期"
  798. // @Param IsExport query bool false "是否导出excel,默认是false"
  799. // @Success 200 {object} cygx.CompanyContractListResp
  800. // @router /allocation/statistics [get]
  801. func (this *ContractAllocationController) CompanyContractStatistics() {
  802. br := new(models.BaseResponse).Init()
  803. defer func() {
  804. this.Data["json"] = br
  805. this.ServeJSON()
  806. }()
  807. sysUser := this.SysUser
  808. if sysUser == nil {
  809. br.Msg = "请登录"
  810. br.ErrMsg = "请登录,SysUser Is Empty"
  811. br.Ret = 408
  812. return
  813. }
  814. keyword := this.GetString("Keyword")
  815. startDate := this.GetString("StartDate")
  816. endDate := this.GetString("EndDate")
  817. if startDate == "" {
  818. startDate = "2015-01-01"
  819. }
  820. //是否导出报表
  821. isExport, _ := this.GetBool("IsExport")
  822. var condition string
  823. var pars []interface{}
  824. if endDate != "" {
  825. condition += ` AND a.start_date >= ? AND a.start_date <= ? `
  826. pars = append(pars, startDate+" 00:00:01", endDate+" 23:59:59")
  827. }
  828. //根据当前角色来获取查询条件
  829. //condition, pars = getQueryParams(condition, pars, sysUser, "c.")
  830. companyIds, err := cygxService.GetAdminLookUserCompanyIdsBySelf(sysUser)
  831. if err != nil {
  832. br.Msg = "获取失败"
  833. br.ErrMsg = "获取失败,GetAdminLookUserCompanyIds Err:" + err.Error()
  834. return
  835. }
  836. lencompanyIds := len(companyIds)
  837. if lencompanyIds > 0 {
  838. condition += ` AND c.company_id IN (` + utils.GetOrmInReplace(lencompanyIds) + `)`
  839. pars = append(pars, companyIds)
  840. }
  841. //关键字搜索
  842. if keyword != "" {
  843. condition += ` and b.company_name like "%` + keyword + `%" `
  844. }
  845. //默认只查询权益 2023-06-01 之后的合同
  846. condition += ` AND c.product_id = ? AND a.start_date > ? `
  847. pars = append(pars, 2, "2023-05-31")
  848. //列表页数据
  849. listContract, err := cygx.GetCompanyContractListJoinCompany(condition, pars, 0, 1000)
  850. if err != nil {
  851. br.Msg = "获取失败"
  852. br.ErrMsg = "获取失败,Err:" + err.Error()
  853. return
  854. }
  855. //return
  856. var companyContractIds []int
  857. companyContractIdBool := make(map[int]bool)
  858. for _, v := range listContract {
  859. companyContractIds = append(companyContractIds, v.CompanyContractId)
  860. }
  861. lenArr := len(companyContractIds)
  862. mapUserAllocation := make(map[string]float64) // 关联合同
  863. mapUserMoney := make(map[string]float64) // 派点金额
  864. mapPermissionAllocation := make(map[string]float64)
  865. mapPermissionMoney := make(map[string]float64)
  866. mapPermissionMoneyAvg := make(map[string]float64)
  867. mapPermissionContract := make(map[string]float64) // 行业关联的合同数量
  868. mapPermissionContractKey := make(map[string]bool) // 行业关联的合同数量键值对
  869. //totalContract := lenArr //所有的关联合同
  870. var totalMoney float64 //所有的关联合同的金额 单位万
  871. if lenArr > 0 {
  872. var conditionAllocation string
  873. var parsAllocation []interface{}
  874. conditionAllocation = ` AND company_contract_id IN(` + utils.GetOrmInReplace(lenArr) + ` ) `
  875. parsAllocation = append(parsAllocation, companyContractIds)
  876. allocationCompanyContractList, err := cygx.GetCygxAllocationCompanyContractList(conditionAllocation, parsAllocation)
  877. if err != nil {
  878. br.Msg = "获取失败"
  879. br.ErrMsg = "获取失败,Err:" + err.Error()
  880. return
  881. }
  882. allocationCompanyContractPermissionList, err := cygx.GetCygxAllocationCompanyContractPermissionList(conditionAllocation, parsAllocation)
  883. if err != nil {
  884. br.Msg = "获取失败"
  885. br.ErrMsg = "获取失败,Err:" + err.Error()
  886. return
  887. }
  888. for _, v := range allocationCompanyContractList {
  889. if v.Proportion != 0 && v.ChartPermissionName != utils.CHART_PERMISSION_NAME_MF_YANXUAN {
  890. mapUserAllocation[v.RealName] += 1
  891. mapUserMoney[v.RealName] += v.Money
  892. mapPermissionAllocation[v.ChartPermissionName] += 1
  893. mapPermissionMoney[v.ChartPermissionName] += v.Money
  894. totalMoney += v.Money
  895. companyContractIdBool[v.CompanyContractId] = true
  896. //统计单个行业所关的合同数量
  897. if !mapPermissionContractKey[fmt.Sprint("ChartPermissionName_", v.ChartPermissionName, "CompanyContractId_", v.CompanyContractId)] {
  898. mapPermissionContract[v.ChartPermissionName] += 1
  899. mapPermissionContractKey[fmt.Sprint("ChartPermissionName_", v.ChartPermissionName, "CompanyContractId_", v.CompanyContractId)] = true
  900. }
  901. }
  902. }
  903. for _, v := range allocationCompanyContractPermissionList {
  904. mapPermissionMoneyAvg[v.ChartPermissionName] += v.MoneyAvg
  905. }
  906. }
  907. sysUserList, err := cygx.GetAskEmailList()
  908. if err != nil {
  909. br.Msg = "获取失败"
  910. br.ErrMsg = "获取失败,GetAskEmailList Err: " + err.Error()
  911. return
  912. }
  913. mapPermissionUser := make(map[string][]*cygx.AllocationRealNameStatisticsListResp) //行业分组 map
  914. for _, v := range sysUserList {
  915. item := new(cygx.AllocationRealNameStatisticsListResp)
  916. item.RealName = v.Name
  917. item.TotalRelatedContract = mapUserAllocation[v.Name]
  918. item.TotalDispatchPoint = utils.SubFloatToString(mapUserMoney[v.Name], 2)
  919. if item.TotalDispatchPoint == "" {
  920. item.TotalDispatchPoint = "0"
  921. }
  922. //组内占比
  923. if mapUserMoney[v.Name] == 0 {
  924. item.GroupProportion = ""
  925. } else {
  926. item.GroupProportion = utils.SubFloatToString(mapUserMoney[v.Name]/mapPermissionMoney[v.ChartPermissionName]*100, 2)
  927. }
  928. if item.GroupProportion == "" {
  929. item.GroupProportion = "0"
  930. }
  931. item.GroupProportion += "%"
  932. //部门占比
  933. if totalMoney == 0 {
  934. item.DepartmentProportion = ""
  935. } else {
  936. item.DepartmentProportion = utils.SubFloatToString(mapUserMoney[v.Name]/totalMoney*100, 2)
  937. }
  938. if item.DepartmentProportion == "" {
  939. item.DepartmentProportion = "0"
  940. }
  941. item.DepartmentProportion += "%"
  942. mapPermissionUser[v.ChartPermissionName] = append(mapPermissionUser[v.ChartPermissionName], item)
  943. }
  944. for k, v := range mapPermissionUser {
  945. lenUser := len(v)
  946. item := new(cygx.AllocationRealNameStatisticsListResp)
  947. item.RealName = "合计"
  948. item.TotalRelatedContract = mapPermissionContract[k]
  949. item.TotalDispatchPoint = fmt.Sprint(utils.SubFloatToString(mapPermissionMoney[k], 2), "/", utils.SubFloatToString(mapPermissionMoneyAvg[k], 2))
  950. item.GroupProportion = "100%"
  951. //部门占比
  952. if totalMoney == 0 {
  953. item.DepartmentProportion = ""
  954. } else {
  955. item.DepartmentProportion = utils.SubFloatToString(mapPermissionMoney[k]/totalMoney*100, 2)
  956. }
  957. if item.DepartmentProportion == "" {
  958. item.DepartmentProportion = "0"
  959. }
  960. item.DepartmentProportion += "%"
  961. mapPermissionUser[k] = append(mapPermissionUser[k], item)
  962. item = new(cygx.AllocationRealNameStatisticsListResp)
  963. item.RealName = "平均"
  964. item.TotalRelatedContract = utils.SubFloatToFloat(mapPermissionAllocation[k]/float64(lenUser), 2)
  965. item.TotalDispatchPoint = utils.SubFloatToString(mapPermissionMoney[k]/float64(lenUser), 2)
  966. //组内占比
  967. if mapPermissionMoney[k] == 0 {
  968. item.GroupProportion = ""
  969. } else {
  970. item.GroupProportion = utils.SubFloatToString(1/(float64(len(mapPermissionUser[k])-1))*100, 2)
  971. }
  972. if item.GroupProportion == "" {
  973. item.GroupProportion = "0"
  974. }
  975. item.GroupProportion += "%"
  976. // 部门占比
  977. if totalMoney == 0 {
  978. item.DepartmentProportion = ""
  979. } else {
  980. item.DepartmentProportion = utils.SubFloatToString(mapPermissionMoney[k]/totalMoney*100/float64(len(mapPermissionUser[k])-1), 2)
  981. }
  982. if item.DepartmentProportion == "" {
  983. item.DepartmentProportion = "0"
  984. }
  985. item.DepartmentProportion += "%"
  986. mapPermissionUser[k] = append(mapPermissionUser[k], item)
  987. }
  988. var list []*cygx.AllocationPermissionStatisticsListResp
  989. permissionNameArr := []string{"医药", "消费", "科技", "智造", "策略"}
  990. for _, v := range permissionNameArr {
  991. item := new(cygx.AllocationPermissionStatisticsListResp)
  992. item.ChartPermissionName = v
  993. item.List = mapPermissionUser[v]
  994. list = append(list, item)
  995. }
  996. resp := cygx.CygxAllocationCompanyContractDetailStatisticsResp{
  997. List: list,
  998. }
  999. resp.TotalContract = len(companyContractIdBool)
  1000. resp.TotalMoney = utils.SubFloatToFloat(totalMoney, 2)
  1001. //导出excel
  1002. if isExport {
  1003. CompanyContractStatisticsExport(this, resp, br)
  1004. return
  1005. }
  1006. br.Ret = 200
  1007. br.Success = true
  1008. br.Msg = "获取成功"
  1009. br.Data = resp
  1010. }
  1011. // CompanyContractStatisticsExport 导出Excel
  1012. func CompanyContractStatisticsExport(this *ContractAllocationController, resp cygx.CygxAllocationCompanyContractDetailStatisticsResp, br *models.BaseResponse) {
  1013. dir, err := os.Executable()
  1014. exPath := filepath.Dir(dir)
  1015. downLoadnFilePath := exPath + "/" + time.Now().Format(utils.FormatDateTimeUnSpace) + ".xlsx"
  1016. xlsxFile := xlsx.NewFile()
  1017. if err != nil {
  1018. br.Msg = "生成文件失败"
  1019. br.ErrMsg = "生成文件失败"
  1020. return
  1021. }
  1022. style := xlsx.NewStyle()
  1023. alignment := xlsx.Alignment{
  1024. Horizontal: "center",
  1025. Vertical: "center",
  1026. WrapText: true,
  1027. }
  1028. style.Alignment = alignment
  1029. style.ApplyAlignment = true
  1030. sheel, err := xlsxFile.AddSheet("研究员派点统计")
  1031. if err != nil {
  1032. br.Msg = "新增Sheet失败"
  1033. br.ErrMsg = "新增Sheet失败,Err:" + err.Error()
  1034. return
  1035. }
  1036. sheel.SetColWidth(0, 0, 30)
  1037. sheel.SetColWidth(1, 1, 15)
  1038. sheel.SetColWidth(2, 2, 15)
  1039. sheel.SetColWidth(3, 3, 18)
  1040. titleRow := sheel.AddRow()
  1041. cellA := titleRow.AddCell()
  1042. cellA.SetStyle(style)
  1043. cellA.SetValue("组别")
  1044. cellB := titleRow.AddCell()
  1045. cellB.SetStyle(style)
  1046. cellB.SetValue("研究员")
  1047. cellC := titleRow.AddCell()
  1048. cellC.SetStyle(style)
  1049. cellC.SetValue("关联合同")
  1050. cellD := titleRow.AddCell()
  1051. cellD.SetStyle(style)
  1052. cellD.SetValue("总派点")
  1053. cellE := titleRow.AddCell()
  1054. cellE.SetStyle(style)
  1055. cellE.SetValue("组内占比")
  1056. cellF := titleRow.AddCell()
  1057. cellF.SetStyle(style)
  1058. cellF.SetValue("部门占比")
  1059. for _, v := range resp.List {
  1060. for k2, v2 := range v.List {
  1061. dataRow := sheel.AddRow()
  1062. dataRow.SetHeight(20)
  1063. cellA := dataRow.AddCell()
  1064. cellA.SetStyle(style)
  1065. cellA.SetValue(v.ChartPermissionName)
  1066. if k2 < len(v.List)-1 {
  1067. cellA.VMerge = 1
  1068. }
  1069. cellB := dataRow.AddCell()
  1070. cellB.SetStyle(style)
  1071. cellB.SetValue(v2.RealName)
  1072. cellC := dataRow.AddCell()
  1073. cellC.SetStyle(style)
  1074. cellC.SetValue(v2.TotalRelatedContract)
  1075. cellD := dataRow.AddCell()
  1076. cellD.SetStyle(style)
  1077. cellD.SetValue(v2.TotalDispatchPoint)
  1078. cellE := dataRow.AddCell()
  1079. cellE.SetStyle(style)
  1080. cellE.SetValue(v2.GroupProportion)
  1081. cellF := dataRow.AddCell()
  1082. cellF.SetStyle(style)
  1083. cellF.SetValue(v2.DepartmentProportion)
  1084. }
  1085. }
  1086. titleRow = sheel.AddRow()
  1087. cellA = titleRow.AddCell()
  1088. cellA.HMerge = 1
  1089. cellA.SetStyle(style)
  1090. cellA.SetValue("部门合计")
  1091. cellB = titleRow.AddCell()
  1092. cellB.SetStyle(style)
  1093. cellB.SetValue("")
  1094. cellC = titleRow.AddCell()
  1095. cellC.SetStyle(style)
  1096. cellC.SetValue(resp.TotalContract)
  1097. cellD = titleRow.AddCell()
  1098. cellD.SetStyle(style)
  1099. cellD.SetValue(resp.TotalMoney)
  1100. cellE = titleRow.AddCell()
  1101. cellE.SetStyle(style)
  1102. cellE.SetValue("-")
  1103. cellF = titleRow.AddCell()
  1104. cellF.SetStyle(style)
  1105. cellF.SetValue("100%")
  1106. err = xlsxFile.Save(downLoadnFilePath)
  1107. if err != nil {
  1108. br.Msg = "保存文件失败"
  1109. br.ErrMsg = "保存文件失败"
  1110. return
  1111. }
  1112. randStr := time.Now().Format(utils.FormatDateTimeUnSpace)
  1113. downloadFileName := "研究员派点统计_" + randStr + ".xlsx"
  1114. this.Ctx.Output.Download(downLoadnFilePath, downloadFileName)
  1115. defer func() {
  1116. os.Remove(downLoadnFilePath)
  1117. }()
  1118. br.Ret = 200
  1119. br.Success = true
  1120. br.Msg = "导出成功"
  1121. }