invoice_payment.go 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935
  1. package census
  2. import (
  3. "bytes"
  4. "fmt"
  5. "github.com/gin-gonic/gin"
  6. "github.com/go-playground/validator/v10"
  7. "github.com/tealeg/xlsx"
  8. "hongze/fms_api/controller/resp"
  9. "hongze/fms_api/global"
  10. "hongze/fms_api/models/base"
  11. "hongze/fms_api/models/fms"
  12. fmsService "hongze/fms_api/services/fms"
  13. "hongze/fms_api/utils"
  14. "net/http"
  15. "strconv"
  16. "strings"
  17. "sync"
  18. "time"
  19. )
  20. // InvoicePaymentController 商品到款统计
  21. type InvoicePaymentController struct{}
  22. // List2 原版(已废弃)
  23. //func (ct *InvoicePaymentController) List2(c *gin.Context) {
  24. // var req fms.InvoicePaymentCensusListReq
  25. // if e := c.BindQuery(&req); e != nil {
  26. // err, ok := e.(validator.ValidationErrors)
  27. // if !ok {
  28. // resp.FailData("参数解析失败", "Err:"+e.Error(), c)
  29. // return
  30. // }
  31. // resp.FailData("参数解析失败", err.Translate(global.Trans), c)
  32. // return
  33. // }
  34. //
  35. // cond := `1 = 1`
  36. // pars := make([]interface{}, 0)
  37. // // 合同编号/客户姓名/销售
  38. // if req.Keyword != "" {
  39. // kw := "%" + req.Keyword + "%"
  40. // cond += ` AND b.company_name LIKE ? OR a.seller_name LIKE ?`
  41. // pars = append(pars, kw, kw)
  42. // }
  43. // if req.SellGroupId > 0 {
  44. // cond += ` AND a.seller_group_id = ?`
  45. // pars = append(pars, req.SellGroupId)
  46. // }
  47. // // 套餐筛选
  48. // if req.ServiceType != 0 {
  49. // registerIds, e := fms.GetContractRegisterIdsByTempId(req.ServiceType)
  50. // if e != nil {
  51. // resp.FailMsg("获取失败", "获取合同登记IDs失败, Err: "+e.Error(), c)
  52. // return
  53. // }
  54. // if len(registerIds) > 0 {
  55. // cond += ` AND b.contract_register_id IN ?`
  56. // pars = append(pars, registerIds)
  57. // } else {
  58. // cond += ` AND 1 = 2`
  59. // }
  60. // }
  61. // // 开票到款日期
  62. // if req.TimeType > 0 && req.StartDate != "" && req.EndDate != "" {
  63. // st := fmt.Sprint(req.StartDate, " 00:00:00")
  64. // ed := fmt.Sprint(req.EndDate, " 23:59:59")
  65. // cond += ` AND a.invoice_type = ? AND (a.invoice_time BETWEEN ? AND ?)`
  66. // pars = append(pars, req.TimeType, st, ed)
  67. // }
  68. // // 已开票
  69. // if req.HasInvoice == 1 && req.HasPayment == 0 {
  70. // cond += ` AND a.invoice_type = 1`
  71. // }
  72. // // 已到款
  73. // if req.HasInvoice == 0 && req.HasPayment == 1 {
  74. // cond += ` AND a.invoice_type = 2`
  75. // }
  76. //
  77. // page := new(base.Page)
  78. // page.SetPageSize(req.PageSize)
  79. // page.SetCurrent(req.Current)
  80. // page.AddOrderItem(base.OrderItem{Column: "a.create_time", Asc: false})
  81. // page.AddOrderItem(base.OrderItem{Column: "b.contract_register_id", Asc: true})
  82. // if req.IsExport == 1 {
  83. // page.SetPageSize(10000)
  84. // page.SetCurrent(1)
  85. // }
  86. //
  87. // list, allRegisterIds, e := fms.GetInvoicePaymentCensusPageList(page, cond, pars)
  88. // if e != nil {
  89. // resp.FailMsg("获取失败", "获取商品到款统计列表失败, Err: "+e.Error(), c)
  90. // return
  91. // }
  92. // total := int64(len(allRegisterIds))
  93. // registerIds := make([]int, 0)
  94. // for i := range list {
  95. // registerIds = append(registerIds, list[i].ContractRegisterId)
  96. // }
  97. //
  98. // results := new(fms.InvoicePaymentCensusResp)
  99. // if len(registerIds) > 0 {
  100. // // 获取开票到款列表
  101. // ivCond := `contract_register_id IN ?`
  102. // ivPars := make([]interface{}, 0)
  103. // ivPars = append(ivPars, registerIds)
  104. // iv := new(fms.ContractInvoice)
  105. // invoiceList, e := iv.List(ivCond, ivPars, "")
  106. // if e != nil {
  107. // resp.FailMsg("获取失败", "获取开票到款列表失败, Err: "+e.Error(), c)
  108. // return
  109. // }
  110. // // 取出开票、到款
  111. // invoiceMap := make(map[int][]*fms.ContractInvoice, 0)
  112. // paymentMap := make(map[int][]*fms.ContractInvoice, 0)
  113. // paymentIds := make([]int, 0)
  114. // for i := range invoiceList {
  115. // if invoiceMap[invoiceList[i].ContractRegisterId] == nil {
  116. // invoiceMap[invoiceList[i].ContractRegisterId] = make([]*fms.ContractInvoice, 0)
  117. // }
  118. // if paymentMap[invoiceList[i].ContractRegisterId] == nil {
  119. // paymentMap[invoiceList[i].ContractRegisterId] = make([]*fms.ContractInvoice, 0)
  120. // }
  121. // if invoiceList[i].InvoiceType == fms.ContractInvoiceTypeMake {
  122. // invoiceMap[invoiceList[i].ContractRegisterId] = append(invoiceMap[invoiceList[i].ContractRegisterId], invoiceList[i])
  123. // }
  124. // if invoiceList[i].InvoiceType == fms.ContractInvoiceTypePay {
  125. // paymentMap[invoiceList[i].ContractRegisterId] = append(paymentMap[invoiceList[i].ContractRegisterId], invoiceList[i])
  126. // paymentIds = append(paymentIds, invoiceList[i].ContractInvoiceId)
  127. // }
  128. // }
  129. //
  130. // // 合同套餐
  131. // contractServiceCond := `contract_register_id IN ?`
  132. // contractServicePars := make([]interface{}, 0)
  133. // contractServicePars = append(contractServicePars, registerIds)
  134. // contractServiceOB := new(fms.ContractService)
  135. // contractServiceList, e := contractServiceOB.List(contractServiceCond, contractServicePars)
  136. // if e != nil {
  137. // resp.FailMsg("获取失败", "获取合同套餐列表失败, Err:"+e.Error(), c)
  138. // return
  139. // }
  140. // contractServiceMap := make(map[int][]*fms.ContractService, 0)
  141. // servicesNameMap := make(map[int][]string, 0)
  142. // for i := range contractServiceList {
  143. // if contractServiceMap[contractServiceList[i].ContractRegisterId] == nil {
  144. // contractServiceMap[contractServiceList[i].ContractRegisterId] = make([]*fms.ContractService, 0)
  145. // }
  146. // contractServiceMap[contractServiceList[i].ContractRegisterId] = append(contractServiceMap[contractServiceList[i].ContractRegisterId], contractServiceList[i])
  147. // servicesNameMap[contractServiceList[i].ContractRegisterId] = append(servicesNameMap[contractServiceList[i].ContractRegisterId], contractServiceList[i].Title)
  148. // }
  149. //
  150. // // 到款套餐分配
  151. // serviceAmountMap := make(map[int][]*fms.ContractPaymentServiceAmount, 0)
  152. // if len(paymentIds) > 0 {
  153. // serviceAmountCond := `contract_payment_id IN ?`
  154. // serviceAmountPars := make([]interface{}, 0)
  155. // serviceAmountPars = append(serviceAmountPars, paymentIds)
  156. // serviceAmountOB := new(fms.ContractPaymentServiceAmount)
  157. // serviceAmountList, e := serviceAmountOB.List(serviceAmountCond, serviceAmountPars)
  158. // if e != nil {
  159. // resp.FailMsg("获取失败", "获取到款套餐分配列表失败, Err:"+e.Error(), c)
  160. // return
  161. // }
  162. // for i := range serviceAmountList {
  163. // if serviceAmountMap[serviceAmountList[i].ContractRegisterId] == nil {
  164. // serviceAmountMap[serviceAmountList[i].ContractRegisterId] = make([]*fms.ContractPaymentServiceAmount, 0)
  165. // }
  166. // serviceAmountMap[serviceAmountList[i].ContractRegisterId] = append(serviceAmountMap[serviceAmountList[i].ContractRegisterId], serviceAmountList[i])
  167. // }
  168. // }
  169. //
  170. // // 整合响应数据
  171. // respList := make([]*fms.InvoicePaymentCensusItem, 0)
  172. // for i := range list {
  173. // v := new(fms.InvoicePaymentCensusItem)
  174. // v.ContractRegisterId = list[i].ContractRegisterId
  175. // v.CompanyName = list[i].CompanyName
  176. // v.NewCompany = list[i].NewCompany
  177. // v.StartDate = list[i].StartDate.Format(utils.FormatDate)
  178. // v.EndDate = list[i].EndDate.Format(utils.FormatDate)
  179. // svList := servicesNameMap[list[i].ContractRegisterId]
  180. // v.ServicesName = strings.Join(svList, ",")
  181. // // 格式化(合并)开票到款数据
  182. // v.InvoicePaymentList = fmsService.MergeInvoiceList2InvoicePaymentCensusInfo(invoiceMap[list[i].ContractRegisterId], paymentMap[list[i].ContractRegisterId],
  183. // contractServiceMap[list[i].ContractRegisterId], serviceAmountMap[list[i].ContractRegisterId])
  184. // respList = append(respList, v)
  185. // }
  186. //
  187. // // 开票到款金额合计(换算后)
  188. // amountTotalCond := `contract_register_id IN ?`
  189. // amountTotalPars := make([]interface{}, 0)
  190. // amountTotalPars = append(amountTotalPars, allRegisterIds)
  191. // amountTotalList, e := fms.GetContractInvoiceAmountTotal(amountTotalCond, amountTotalPars)
  192. // if e != nil {
  193. // resp.FailMsg("获取失败", "获取开票到款金额合计失败, Err:"+e.Error(), c)
  194. // return
  195. // }
  196. // amountTotalMap := make(map[int]float64)
  197. // for i := range amountTotalList {
  198. // amountTotalMap[amountTotalList[i].InvoiceType] = amountTotalList[i].TotalAmount
  199. // }
  200. // invoiceTotal, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", amountTotalMap[fms.ContractInvoiceTypeMake]), 64)
  201. // paymentTotal, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", amountTotalMap[fms.ContractInvoiceTypePay]), 64)
  202. //
  203. // // 分币种金额统计
  204. // currencyOB := new(fms.CurrencyUnit)
  205. // currencyCond := `enable = 1`
  206. // currencyPars := make([]interface{}, 0)
  207. // currencyList, e := currencyOB.List(currencyCond, currencyPars)
  208. // if e != nil {
  209. // resp.FailMsg("获取失败", "获取货币列表失败, Err: "+e.Error(), c)
  210. // return
  211. // }
  212. // unitMap := make(map[string]string)
  213. // invoiceCurrencyTotals := make([]*fms.InvoiceListCurrencyTotal, 0)
  214. // paymentCurrencyTotals := make([]*fms.InvoiceListCurrencyTotal, 0)
  215. // for i := range currencyList {
  216. // unitMap[currencyList[i].Code] = currencyList[i].UnitName
  217. // invoiceCurrencyTotals = append(invoiceCurrencyTotals, &fms.InvoiceListCurrencyTotal{
  218. // Name: currencyList[i].Name,
  219. // UnitName: currencyList[i].UnitName,
  220. // Code: currencyList[i].Code,
  221. // FlagImg: currencyList[i].FlagImg,
  222. // })
  223. // paymentCurrencyTotals = append(paymentCurrencyTotals, &fms.InvoiceListCurrencyTotal{
  224. // Name: currencyList[i].Name,
  225. // UnitName: currencyList[i].UnitName,
  226. // Code: currencyList[i].Code,
  227. // FlagImg: currencyList[i].FlagImg,
  228. // })
  229. // }
  230. // sumList, e := fms.GetInvoiceListCurrencySum(amountTotalCond, amountTotalPars, "currency_unit, invoice_type")
  231. // if e != nil {
  232. // resp.FailMsg("获取失败", "获取商品到款统计货币合计金额失败, Err: "+e.Error(), c)
  233. // return
  234. // }
  235. // invoiceSumMap := make(map[string]float64)
  236. // paymentSumMap := make(map[string]float64)
  237. // for i := range sumList {
  238. // if sumList[i].InvoiceType == fms.ContractInvoiceTypeMake {
  239. // invoiceSumMap[sumList[i].CurrencyUnit] = sumList[i].OriginAmountTotal
  240. // continue
  241. // }
  242. // if sumList[i].InvoiceType == fms.ContractInvoiceTypePay {
  243. // paymentSumMap[sumList[i].CurrencyUnit] = sumList[i].OriginAmountTotal
  244. // }
  245. // }
  246. // for i := range invoiceCurrencyTotals {
  247. // a, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", invoiceSumMap[invoiceCurrencyTotals[i].Code]), 64)
  248. // invoiceCurrencyTotals[i].Amount = a
  249. // }
  250. // for i := range paymentCurrencyTotals {
  251. // a, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", paymentSumMap[paymentCurrencyTotals[i].Code]), 64)
  252. // paymentCurrencyTotals[i].Amount = a
  253. // }
  254. //
  255. // results.DataList = respList
  256. // results.InvoiceTotal = invoiceTotal
  257. // results.PaymentTotal = paymentTotal
  258. // results.InvoiceCurrencyTotal = invoiceCurrencyTotals
  259. // results.PaymentCurrencyTotal = paymentCurrencyTotals
  260. // }
  261. //
  262. // // 是否导出
  263. // if req.IsExport == 1 {
  264. // ExportInvoicePaymentCensusList(c, results)
  265. // return
  266. // }
  267. // page.SetTotal(total)
  268. // baseData := new(base.BaseData)
  269. // baseData.SetPage(page)
  270. // baseData.SetList(results)
  271. // resp.OkData("获取成功", baseData, c)
  272. //}
  273. // ExportInvoicePaymentCensusList 导出商品到款统计列表
  274. func ExportInvoicePaymentCensusList(c *gin.Context, results *fms.InvoicePaymentCensusResp) {
  275. list := results.DataList
  276. if len(list) == 0 {
  277. resp.Fail("列表数据为空", c)
  278. return
  279. }
  280. // 生成Excel文件
  281. xlsxFile := xlsx.NewFile()
  282. style := xlsx.NewStyle()
  283. alignment := xlsx.Alignment{
  284. Horizontal: "center",
  285. Vertical: "center",
  286. WrapText: true,
  287. }
  288. style.Alignment = alignment
  289. style.ApplyAlignment = true
  290. sheet, err := xlsxFile.AddSheet("商品到款统计")
  291. if err != nil {
  292. resp.FailData("新增Sheet失败", "Err:"+err.Error(), c)
  293. return
  294. }
  295. _ = sheet.SetColWidth(1, 1, 30)
  296. _ = sheet.SetColWidth(3, 3, 30)
  297. // 前三行-开票金额合计
  298. rowA := sheet.AddRow()
  299. cellAA := rowA.AddCell()
  300. cellAA.SetString(fmt.Sprintf("已开票合计金额(换算后):%.2f(元)", results.InvoiceTotal))
  301. rowBData := "已开票金额:"
  302. for _, v := range results.InvoiceCurrencyTotal {
  303. rowBData += fmt.Sprintf("%s%.2f(%s) ", v.Name, v.Amount, v.UnitName)
  304. }
  305. rowB := sheet.AddRow()
  306. rowB.AddCell().SetString(rowBData)
  307. sheet.AddRow()
  308. // 四至六-到款金额合计
  309. rowD := sheet.AddRow()
  310. cellDA := rowD.AddCell()
  311. cellDA.SetString(fmt.Sprintf("已到款合计金额(换算后):%.2f(元)", results.PaymentTotal))
  312. rowEData := "已到款金额:"
  313. for _, v := range results.PaymentCurrencyTotal {
  314. rowEData += fmt.Sprintf("%s%.2f(%s) ", v.Name, v.Amount, v.UnitName)
  315. }
  316. rowE := sheet.AddRow()
  317. rowE.AddCell().SetString(rowEData)
  318. sheet.AddRow()
  319. // 表头, 套餐动态获取
  320. rowTitle := []string{"序号", "客户名称", "是否新客户", "合同有效期", "开票日", "开票金额", "到款日", "到款金额", "付款方式", "销售",
  321. "销售组别", "销售类型"}
  322. serviceTempCond := ``
  323. serviceTempPars := make([]interface{}, 0)
  324. serviceTempOB := new(fms.ContractServiceTemplate)
  325. serviceTempList, e := serviceTempOB.List(serviceTempCond, serviceTempPars)
  326. if e != nil {
  327. resp.FailData("获取套餐模板列表失败", "Err:"+e.Error(), c)
  328. return
  329. }
  330. serviceTempListMap := make(map[int]*fms.ContractServiceTemplate)
  331. var serviceTempShow [] *fms.ContractServiceTemplate
  332. for i := range serviceTempList {
  333. serviceTempListMap[serviceTempList[i].ServiceTemplateId] = serviceTempList[i]
  334. }
  335. for i := range serviceTempList {
  336. if serviceTempList[i].ProductId == 1 {
  337. rowTitle = append(rowTitle, serviceTempList[i].Title)
  338. serviceTempShow = append(serviceTempShow, serviceTempList[i])
  339. }else if serviceTempList[i].ProductId == 2{
  340. if serviceTempList[i].Title == "行业套餐" || serviceTempList[i].Title == "权益大套餐" || (serviceTempList[i].Title == "策略" && serviceTempListMap[serviceTempList[i].Pid].Pid==0){
  341. }else if serviceTempList[i].Title == "医药" || serviceTempList[i].Title == "消费" || serviceTempList[i].Title == "科技" || serviceTempList[i].Title == "智造" {
  342. }else {
  343. serviceTempShow = append(serviceTempShow, serviceTempList[i])
  344. }
  345. if serviceTempList[i].Title == "行业套餐" || serviceTempList[i].Title == "45万" || serviceTempList[i].Title == "70万" {
  346. continue
  347. }
  348. if serviceTempList[i].Pid > 0 && serviceTempListMap[serviceTempList[i].Pid].Pid > 0 {
  349. continue
  350. }
  351. rowTitle = append(rowTitle, serviceTempList[i].Title)
  352. }
  353. }
  354. hi := 0
  355. insertHi := 0
  356. titleRow := sheet.AddRow()
  357. for i := range rowTitle {
  358. v := titleRow.AddCell()
  359. v.SetString(rowTitle[i])
  360. v.SetStyle(style)
  361. if rowTitle[i] != "权益大套餐" && rowTitle[i] != "医药" && rowTitle[i] != "消费" && rowTitle[i] != "科技" && rowTitle[i] != "智造" {
  362. v.VMerge = 1
  363. hi ++
  364. }else{
  365. if insertHi == 0 {
  366. insertHi = hi
  367. }
  368. v.HMerge = 1
  369. titleRow.AddCell().SetString("")
  370. }
  371. }
  372. // 新增一行放主观和客观
  373. specialRow := sheet.AddRow()
  374. for i:=0; i< hi; i++ {
  375. if i == insertHi {
  376. v1 := specialRow.AddCell()
  377. v1.SetString("45万")
  378. v1.SetStyle(style)
  379. v1 = specialRow.AddCell()
  380. v1.SetString("70万")
  381. v1.SetStyle(style)
  382. for j:=0; j<8;j++ {
  383. if j%2 ==0 {
  384. v1 = specialRow.AddCell()
  385. v1.SetString("主观")
  386. v1.SetStyle(style)
  387. }else{
  388. v1 = specialRow.AddCell()
  389. v1.SetString("客观")
  390. v1.SetStyle(style)
  391. }
  392. }
  393. }else{
  394. v := specialRow.AddCell()
  395. v.SetString("")
  396. }
  397. }
  398. newCompanyMap := map[int]string{0: "否", 1: "是"}
  399. sellerTypeMap := map[int]string{1:"FICC销售", 2:"权益销售"}
  400. for k, v := range list {
  401. dataRow := sheet.AddRow()
  402. // 前四个单元格根据每行开票到款条数向下合并
  403. l := len(v.InvoicePaymentList)
  404. mergeRowNum := l - 1
  405. // 序号
  406. sortNum := k + 1
  407. colA := dataRow.AddCell()
  408. colA.VMerge = mergeRowNum
  409. colA.SetString(fmt.Sprint(sortNum))
  410. // 客户名称
  411. colB := dataRow.AddCell()
  412. colB.VMerge = mergeRowNum
  413. colB.SetString(v.CompanyName)
  414. // 是否新客户
  415. colC := dataRow.AddCell()
  416. colC.VMerge = mergeRowNum
  417. colC.SetString(newCompanyMap[v.NewCompany])
  418. // 合同有效期
  419. colD := dataRow.AddCell()
  420. colD.VMerge = mergeRowNum
  421. colD.SetString(fmt.Sprint(v.StartDate, "至", v.EndDate))
  422. // 开票到款信息
  423. for k2, v2 := range v.InvoicePaymentList {
  424. rowData := []string{
  425. v2.InvoiceDate, // 开票日
  426. fmt.Sprint(v2.InvoiceAmount), // 开票金额
  427. v2.PaymentDate, // 到款日
  428. fmt.Sprint(v2.PaymentAmount), // 到款金额
  429. fms.ContractPaymentPayTypeNameMap[v2.PayType], // 付款方式
  430. v2.SellerName, // 销售
  431. v2.SellerGroupName, // 组别
  432. sellerTypeMap[v2.SellerType], // 销售类型
  433. }
  434. // 套餐金额信息
  435. serviceTempShowAmount := make(map[int]string)
  436. for i := range serviceTempShow {
  437. for s2 := range v2.ServiceAmountList {
  438. item := v2.ServiceAmountList[s2]
  439. if item.ServiceTemplateId == serviceTempShow[i].ServiceTemplateId {
  440. serviceTempShowAmount[serviceTempShow[i].ServiceTemplateId] = fmt.Sprint(item.Amount)
  441. break
  442. }else if serviceTempShow[i].Pid == item.ServiceTemplateId {
  443. serviceTempShowAmount[serviceTempShow[i].ServiceTemplateId] = fmt.Sprint(item.Amount/2)
  444. break
  445. }
  446. }
  447. }
  448. for i := range serviceTempShow {
  449. sa := ""
  450. if am, ok := serviceTempShowAmount[serviceTempShow[i].ServiceTemplateId]; ok {
  451. sa = am
  452. }
  453. rowData = append(rowData, sa)
  454. }
  455. // 首行开票到款
  456. if k2 == 0 {
  457. for i := range rowData {
  458. dataRow.AddCell().SetString(rowData[i])
  459. }
  460. continue
  461. }
  462. // 其他行开票到款, 加四列空的单元格用于合并
  463. dataRowExtra := sheet.AddRow()
  464. for i := 0; i < 4; i++ {
  465. dataRowExtra.AddCell()
  466. }
  467. for i := range rowData {
  468. dataRowExtra.AddCell().SetString(rowData[i])
  469. }
  470. }
  471. }
  472. // 输出文件
  473. var buffer bytes.Buffer
  474. _ = xlsxFile.Write(&buffer)
  475. content := bytes.NewReader(buffer.Bytes())
  476. randStr := time.Now().Format(utils.FormatDateTimeUnSpace)
  477. fileName := "商品到款统计_" + randStr + ".xlsx"
  478. c.Writer.Header().Add("Content-Disposition", fmt.Sprintf(`attachment; filename="%s"`, fileName))
  479. c.Writer.Header().Add("Content-Type", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
  480. http.ServeContent(c.Writer, c.Request, fileName, time.Now(), content)
  481. }
  482. // List
  483. // @Title 商品到款统计列表
  484. // @Description 商品到款统计列表
  485. // @Param Keyword query string false "关键词"
  486. // @Param SellGroupId query int false "销售组别ID"
  487. // @Param ServiceType query int false "套餐类型"
  488. // @Param StartDate query string false "合同开始日期"
  489. // @Param EndDate query string false "合同结束日期"
  490. // @Param TimeType query int false "时间类型: 1-开票时间; 2-到款时间"
  491. // @Param HasInvoice query string false "是否已开票: 0-否; 1-是; 空-全部"
  492. // @Param HasPayment query string false "是否已到款: 0-否; 1-是; 空-全部"
  493. // @Param IsExport query int false "是否导出: 0-否; 1-是"
  494. // @Param SortParam query string false "排序字段参数,用来排序的字段, 枚举值:'invoice_time':开票日 、 'payment_date':到款日"
  495. // @Param SortType query string true "如何排序,是正序还是倒序,枚举值:`asc 正序`,`desc 倒叙`"
  496. // @Success 200 {object} fms.ContractRegisterItem
  497. // @router /census/invoice_payment/list [get]
  498. func (ct *InvoicePaymentController) List(c *gin.Context) {
  499. var req fms.InvoicePaymentCensusListReq
  500. if e := c.BindQuery(&req); e != nil {
  501. err, ok := e.(validator.ValidationErrors)
  502. if !ok {
  503. resp.FailData("参数解析失败", "Err:"+e.Error(), c)
  504. return
  505. }
  506. resp.FailData("参数解析失败", err.Translate(global.Trans), c)
  507. return
  508. }
  509. cond := `1 = 1`
  510. pars := make([]interface{}, 0)
  511. // 客户姓名/销售
  512. if req.Keyword != "" {
  513. kw := "%" + req.Keyword + "%"
  514. cond += ` AND b.company_name LIKE ?`
  515. pars = append(pars, kw)
  516. }
  517. if req.SellerIds != "" {
  518. sellerIds := strings.Split(req.SellerIds, ",")
  519. cond += ` AND (c.seller_id in ?)`
  520. pars = append(pars, sellerIds)
  521. }
  522. // 套餐筛选
  523. if req.ServiceTypes != "" {
  524. serviceTypes := strings.Split(req.ServiceTypes, ",")
  525. tempRegisterIds, e := fms.GetContractRegisterIdsByTempId(serviceTypes)
  526. if e != nil {
  527. resp.FailMsg("获取失败", "获取合同登记IDs失败, Err: "+e.Error(), c)
  528. return
  529. }
  530. if len(tempRegisterIds) > 0 {
  531. cond += ` AND a.register_id IN ?`
  532. pars = append(pars, tempRegisterIds)
  533. } else {
  534. cond += ` AND 1 = 2`
  535. }
  536. }
  537. // 开票到款日期
  538. if req.TimeType != 0 {
  539. if req.TimeType == 1 && req.StartDate != "" && req.EndDate != "" {
  540. st := fmt.Sprint(req.StartDate, " 00:00:00")
  541. ed := fmt.Sprint(req.EndDate, " 23:59:59")
  542. cond += ` AND (c.invoice_time BETWEEN ? AND ?) `
  543. pars = append(pars, st, ed)
  544. }else if req.TimeType == 2 && req.StartDate != "" && req.EndDate != "" {
  545. st := fmt.Sprint(req.StartDate, " 00:00:00")
  546. ed := fmt.Sprint(req.EndDate, " 23:59:59")
  547. cond += ` AND (d.invoice_time BETWEEN ? AND ?) `
  548. pars = append(pars, st, ed)
  549. }else if req.TimeType == 3 && req.StartDate != "" && req.EndDate != "" {
  550. st := fmt.Sprint(req.StartDate, " 00:00:00")
  551. ed := fmt.Sprint(req.EndDate, " 23:59:59")
  552. cond += ` AND (c.invoice_time BETWEEN ? AND ?) AND (d.invoice_time BETWEEN ? AND ?) `
  553. pars = append(pars, st, ed, st, ed)
  554. }
  555. }else if req.StartDate != "" && req.EndDate != "" {
  556. st := fmt.Sprint(req.StartDate, " 00:00:00")
  557. ed := fmt.Sprint(req.EndDate, " 23:59:59")
  558. cond += ` AND ((c.invoice_time BETWEEN ? AND ?) or (d.invoice_time BETWEEN ? AND ?))`
  559. pars = append(pars, st, ed, st, ed)
  560. }
  561. if req.HasInvoice == "1" {
  562. cond += ` AND a.invoice_id > 0 `
  563. }else if req.HasInvoice == "0" {
  564. cond += ` AND a.invoice_id = 0 `
  565. }
  566. if req.HasPayment == "1" {
  567. cond += ` AND a.payment_id > 0 `
  568. }else if req.HasPayment == "0" {
  569. cond += ` AND a.payment_id = 0 `
  570. }
  571. page := new(base.Page)
  572. page.SetPageSize(req.PageSize)
  573. page.SetCurrent(req.Current)
  574. //排序
  575. if req.SortType == "" {
  576. req.SortType = "desc"
  577. }
  578. if req.SortType != "desc" && req.SortType != "asc" {
  579. resp.Fail("排序类型不正确", c)
  580. return
  581. }
  582. if req.SortParam == "" {
  583. page.AddOrderItem(base.OrderItem{Column: "sort_invoice_id", Asc: true})
  584. page.AddOrderItem(base.OrderItem{Column: "sort_payment_id", Asc: false})
  585. page.AddOrderItem(base.OrderItem{Column: "c.invoice_time", Asc: false})
  586. page.AddOrderItem(base.OrderItem{Column: "c.amount", Asc: false})
  587. page.AddOrderItem(base.OrderItem{Column: "a.create_time", Asc: false})
  588. }else if req.SortParam == "invoice_time" {
  589. if req.SortType == "asc" {
  590. page.AddOrderItem(base.OrderItem{Column: "sort_invoice_id", Asc: false})
  591. page.AddOrderItem(base.OrderItem{Column: "c.invoice_time", Asc: true})
  592. page.AddOrderItem(base.OrderItem{Column: "c.amount", Asc: true})
  593. page.AddOrderItem(base.OrderItem{Column: "a.create_time", Asc: true})
  594. }else{
  595. page.AddOrderItem(base.OrderItem{Column: "sort_invoice_id", Asc: true})
  596. page.AddOrderItem(base.OrderItem{Column: "c.invoice_time", Asc: false})
  597. page.AddOrderItem(base.OrderItem{Column: "c.amount", Asc: false})
  598. page.AddOrderItem(base.OrderItem{Column: "a.create_time", Asc: false})
  599. }
  600. }else if req.SortParam == "payment_date" {
  601. if req.SortType == "asc" {
  602. page.AddOrderItem(base.OrderItem{Column: "sort_payment_id", Asc: false})
  603. page.AddOrderItem(base.OrderItem{Column: "d.invoice_time", Asc: true})
  604. page.AddOrderItem(base.OrderItem{Column: "d.amount", Asc: true})
  605. page.AddOrderItem(base.OrderItem{Column: "a.create_time", Asc: true})
  606. }else{
  607. page.AddOrderItem(base.OrderItem{Column: "sort_payment_id", Asc: true})
  608. page.AddOrderItem(base.OrderItem{Column: "d.invoice_time", Asc: false})
  609. page.AddOrderItem(base.OrderItem{Column: "d.amount", Asc: false})
  610. page.AddOrderItem(base.OrderItem{Column: "a.create_time", Asc: false})
  611. }
  612. }else{
  613. resp.Fail("排序字段不正确", c)
  614. return
  615. }
  616. if req.IsExport == 1 {
  617. page.SetPageSize(10000)
  618. page.SetCurrent(1)
  619. }
  620. registerList, total, e := fms.GetInvoicePaymentCensusPageList(page, cond, pars)
  621. if e != nil {
  622. resp.FailMsg("获取失败", "获取商品到款统计列表总数失败, Err: "+e.Error(), c)
  623. return
  624. }
  625. queryRegisterIds := make([]int, 0)
  626. for i := range registerList {
  627. queryRegisterIds = append(queryRegisterIds, registerList[i].ContractRegisterId)
  628. }
  629. results := new(fms.InvoicePaymentCensusResp)
  630. if len(queryRegisterIds) > 0 {
  631. // 获取汇总数据IDs, 用于查询合计数据
  632. summaryIdsCond := cond
  633. summaryIdsPars := pars
  634. summaryIds, e := fms.GetInvoicePaymentCensusSummaryDataIds(summaryIdsCond, summaryIdsPars)
  635. if e != nil {
  636. resp.FailMsg("获取失败", "获取商品到款汇总IDs失败, Err: "+e.Error(), c)
  637. return
  638. }
  639. var listErr, totalErr, totalGroupErr error
  640. wg := sync.WaitGroup{}
  641. // 响应列表
  642. respList := make([]*fms.InvoicePaymentCensusItem, 0)
  643. summaryList := make([]*fms.InvoicePaymentSummaryItem, 0)
  644. wg.Add(1)
  645. go func() {
  646. defer wg.Done()
  647. // 获取汇总数据
  648. summaryCond := cond
  649. summaryCond += ` AND a.register_id IN ?`
  650. summaryPars := pars
  651. summaryPars = append(summaryPars, queryRegisterIds)
  652. summaryData, e := fms.GetInvoicePaymentCensusSummaryData(summaryCond, summaryPars)
  653. if e != nil {
  654. resp.FailMsg("获取失败", "获取商品到款汇总列表失败, Err: "+e.Error(), c)
  655. return
  656. }
  657. summaryList = summaryData
  658. //summaryIds := make([]int, 0)
  659. paymentIds := make([]int, 0)
  660. for i := range summaryList {
  661. //summaryIds = append(summaryIds, summaryList[i].SummaryId)
  662. if summaryList[i].PaymentId > 0 {
  663. paymentIds = append(paymentIds, summaryList[i].PaymentId)
  664. }
  665. }
  666. // 合同套餐
  667. /*contractServiceCond := `contract_register_id IN ?`
  668. contractServicePars := make([]interface{}, 0)
  669. contractServicePars = append(contractServicePars, queryRegisterIds)
  670. contractServiceOB := new(fms.ContractService)
  671. contractServiceList, e := contractServiceOB.List(contractServiceCond, contractServicePars)
  672. if e != nil {
  673. listErr = fmt.Errorf("获取合同套餐列表失败, Err: %s", e.Error())
  674. return
  675. }
  676. contractServiceMap := make(map[int][]*fms.ContractService, 0)
  677. servicesNameMap := make(map[int][]string, 0)
  678. for i := range contractServiceList {
  679. if contractServiceMap[contractServiceList[i].ContractRegisterId] == nil {
  680. contractServiceMap[contractServiceList[i].ContractRegisterId] = make([]*fms.ContractService, 0)
  681. }
  682. contractServiceMap[contractServiceList[i].ContractRegisterId] = append(contractServiceMap[contractServiceList[i].ContractRegisterId], contractServiceList[i])
  683. servicesNameMap[contractServiceList[i].ContractRegisterId] = append(servicesNameMap[contractServiceList[i].ContractRegisterId], contractServiceList[i].Title)
  684. }
  685. */
  686. servicesNameMap, serviceFormatMap, e := fmsService.GetContractServiceNameFormat(queryRegisterIds)
  687. if e != nil {
  688. listErr = fmt.Errorf("获取合同套餐列表失败, Err: %s", e.Error())
  689. return
  690. }
  691. // 到款套餐分配
  692. serviceAmountMap := make(map[int][]*fms.ContractPaymentServiceAmount, 0)
  693. if len(paymentIds) > 0 {
  694. serviceAmountCond := `contract_payment_id IN ?`
  695. serviceAmountPars := make([]interface{}, 0)
  696. serviceAmountPars = append(serviceAmountPars, paymentIds)
  697. serviceAmountOB := new(fms.ContractPaymentServiceAmount)
  698. serviceAmountList, e := serviceAmountOB.List(serviceAmountCond, serviceAmountPars)
  699. if e != nil {
  700. listErr = fmt.Errorf("获取到款套餐分配列表失败, Err: %s", e.Error())
  701. return
  702. }
  703. for i := range serviceAmountList {
  704. if serviceAmountMap[serviceAmountList[i].ContractPaymentId] == nil {
  705. serviceAmountMap[serviceAmountList[i].ContractPaymentId] = make([]*fms.ContractPaymentServiceAmount, 0)
  706. }
  707. serviceAmountMap[serviceAmountList[i].ContractPaymentId] = append(serviceAmountMap[serviceAmountList[i].ContractPaymentId], serviceAmountList[i])
  708. }
  709. }
  710. // 重组汇总数据
  711. summaryMap := make(map[int][]*fms.InvoicePaymentCensusInfo)
  712. amountMap := make(map[string]*fms.ContractPaymentServiceAmount)
  713. for i := range summaryList {
  714. v := new(fms.InvoicePaymentCensusInfo)
  715. v.InvoiceId = summaryList[i].InvoiceId
  716. v.InvoiceDate = utils.TimeTransferString(utils.FormatDate, summaryList[i].InvoiceDate)
  717. v.InvoiceAmount = summaryList[i].InvoiceAmount
  718. v.SellerId = summaryList[i].SellerId
  719. v.SellerName = summaryList[i].SellerName
  720. v.SellerGroupId = summaryList[i].SellerGroupId
  721. v.SellerGroupName = summaryList[i].SellerGroupName
  722. v.SellerType = summaryList[i].ServiceProductId
  723. v.PaymentId = summaryList[i].PaymentId
  724. v.PaymentDate = utils.TimeTransferString(utils.FormatDate, summaryList[i].PaymentDate)
  725. v.PaymentAmount = summaryList[i].PaymentAmount
  726. v.PayType = summaryList[i].PayType
  727. // 套餐到款分配
  728. svaList := make([]*fms.ContractPaymentServiceAmountItem, 0)
  729. amountList := serviceAmountMap[summaryList[i].PaymentId]
  730. if amountList != nil {
  731. for i := range amountList {
  732. k := fmt.Sprintf("%d-%d", amountList[i].ContractPaymentId, amountList[i].ServiceTemplateId)
  733. amountMap[k] = amountList[i]
  734. }
  735. }
  736. // 合同对应的所有套餐
  737. svList := serviceFormatMap[summaryList[i].RegisterId]
  738. if svList != nil {
  739. for ii := range svList {
  740. vv := new(fms.ContractPaymentServiceAmountItem)
  741. vv.ServiceTemplateId = svList[ii].ServiceTemplateId
  742. vv.ServiceTemplateName = svList[ii].FormatTitle
  743. vv.ServiceTemplatePid = svList[ii].ServiceTemplatePid
  744. k2 := fmt.Sprintf("%d-%d", summaryList[i].PaymentId, svList[ii].ServiceTemplateId)
  745. a := amountMap[k2]
  746. if a != nil {
  747. vv.ContractPaymentServiceAmountId = a.ContractPaymentServiceAmountId
  748. vv.ContractPaymentId = a.ContractPaymentId
  749. vv.Amount = a.Amount
  750. }
  751. svaList = append(svaList, vv)
  752. }
  753. }
  754. v.ServiceAmountList = svaList
  755. summaryMap[summaryList[i].SummaryId] = append(summaryMap[summaryList[i].SummaryId], v)
  756. }
  757. // 响应列表
  758. for i := range registerList {
  759. v := new(fms.InvoicePaymentCensusItem)
  760. v.SummaryId = registerList[i].SummaryId
  761. v.ContractRegisterId = registerList[i].ContractRegisterId
  762. v.CompanyName = registerList[i].CompanyName
  763. v.NewCompany = registerList[i].NewCompany
  764. v.StartDate = utils.TimeTransferString(utils.FormatDate, registerList[i].StartDate)
  765. v.EndDate = utils.TimeTransferString(utils.FormatDate, registerList[i].EndDate)
  766. v.ServicesName = servicesNameMap[registerList[i].ContractRegisterId]
  767. v.InvoicePaymentList = summaryMap[registerList[i].SummaryId]
  768. respList = append(respList, v)
  769. }
  770. }()
  771. // 开票到款金额合计(换算后)
  772. var invoiceTotal, paymentTotal float64
  773. wg.Add(1)
  774. go func() {
  775. defer wg.Done()
  776. if len(summaryIds) == 0 {
  777. return
  778. }
  779. amountTotalCond := `a.id IN ?`
  780. amountTotalPars := make([]interface{}, 0)
  781. amountTotalPars = append(amountTotalPars, summaryIds)
  782. invoiceSum, e := fms.GetContractSummaryInvoicePaymentAmountTotal(amountTotalCond, amountTotalPars, 1)
  783. if e != nil {
  784. totalErr = fmt.Errorf("获取汇总开票金额合计失败, Err: %s", e.Error())
  785. return
  786. }
  787. invoiceTotal, _ = strconv.ParseFloat(fmt.Sprintf("%.2f", invoiceSum), 64)
  788. paymentSum, e := fms.GetContractSummaryInvoicePaymentAmountTotal(amountTotalCond, amountTotalPars, 2)
  789. if e != nil {
  790. totalErr = fmt.Errorf("获取汇总到款金额合计失败, Err: %s", e.Error())
  791. return
  792. }
  793. paymentTotal, _ = strconv.ParseFloat(fmt.Sprintf("%.2f", paymentSum), 64)
  794. }()
  795. // 分币种金额统计
  796. invoiceCurrencyTotals := make([]*fms.InvoiceListCurrencyTotal, 0)
  797. paymentCurrencyTotals := make([]*fms.InvoiceListCurrencyTotal, 0)
  798. wg.Add(1)
  799. go func() {
  800. defer wg.Done()
  801. currencyOB := new(fms.CurrencyUnit)
  802. currencyCond := `enable = 1`
  803. currencyPars := make([]interface{}, 0)
  804. currencyList, e := currencyOB.List(currencyCond, currencyPars)
  805. if e != nil {
  806. totalGroupErr = fmt.Errorf("获取货币列表失败, Err: %s", e.Error())
  807. return
  808. }
  809. unitMap := make(map[string]string)
  810. for i := range currencyList {
  811. unitMap[currencyList[i].Code] = currencyList[i].UnitName
  812. invoiceCurrencyTotals = append(invoiceCurrencyTotals, &fms.InvoiceListCurrencyTotal{
  813. Name: currencyList[i].Name,
  814. UnitName: currencyList[i].UnitName,
  815. Code: currencyList[i].Code,
  816. FlagImg: currencyList[i].FlagImg,
  817. })
  818. paymentCurrencyTotals = append(paymentCurrencyTotals, &fms.InvoiceListCurrencyTotal{
  819. Name: currencyList[i].Name,
  820. UnitName: currencyList[i].UnitName,
  821. Code: currencyList[i].Code,
  822. FlagImg: currencyList[i].FlagImg,
  823. })
  824. }
  825. if len(summaryIds) == 0 {
  826. return
  827. }
  828. totalGroupCond := `a.id IN ?`
  829. totalGroupPars := make([]interface{}, 0)
  830. totalGroupPars = append(totalGroupPars, summaryIds)
  831. invoiceSumGroup, e := fms.GetSummaryListCurrencySum(totalGroupCond, totalGroupPars, 1)
  832. if e != nil {
  833. totalGroupErr = fmt.Errorf("获取汇总货币合计开票金额失败, Err: %s", e.Error())
  834. return
  835. }
  836. paymentSumGroup, e := fms.GetSummaryListCurrencySum(totalGroupCond, totalGroupPars, 2)
  837. if e != nil {
  838. totalGroupErr = fmt.Errorf("获取汇总货币合计到款金额失败, Err: %s", e.Error())
  839. return
  840. }
  841. invoiceSumMap := make(map[string]float64)
  842. paymentSumMap := make(map[string]float64)
  843. for i := range invoiceSumGroup {
  844. invoiceSumMap[invoiceSumGroup[i].CurrencyUnit] = invoiceSumGroup[i].OriginAmountTotal
  845. continue
  846. }
  847. for i := range paymentSumGroup {
  848. paymentSumMap[paymentSumGroup[i].CurrencyUnit] = paymentSumGroup[i].OriginAmountTotal
  849. continue
  850. }
  851. for i := range invoiceCurrencyTotals {
  852. a, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", invoiceSumMap[invoiceCurrencyTotals[i].Code]), 64)
  853. invoiceCurrencyTotals[i].Amount = a
  854. }
  855. for i := range paymentCurrencyTotals {
  856. a, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", paymentSumMap[paymentCurrencyTotals[i].Code]), 64)
  857. paymentCurrencyTotals[i].Amount = a
  858. }
  859. }()
  860. wg.Wait()
  861. if listErr != nil {
  862. resp.FailMsg("获取失败", listErr.Error(), c)
  863. return
  864. }
  865. if totalErr != nil {
  866. resp.FailMsg("获取失败", totalErr.Error(), c)
  867. return
  868. }
  869. if totalGroupErr != nil {
  870. resp.FailMsg("获取失败", totalGroupErr.Error(), c)
  871. return
  872. }
  873. results.DataList = respList
  874. results.InvoiceTotal = invoiceTotal
  875. results.PaymentTotal = paymentTotal
  876. results.InvoiceCurrencyTotal = invoiceCurrencyTotals
  877. results.PaymentCurrencyTotal = paymentCurrencyTotals
  878. }
  879. // 是否导出
  880. if req.IsExport == 1 {
  881. ExportInvoicePaymentCensusList(c, results)
  882. return
  883. }
  884. page.SetTotal(total)
  885. baseData := new(base.BaseData)
  886. baseData.SetPage(page)
  887. baseData.SetList(results)
  888. resp.OkData("获取成功", baseData, c)
  889. }