|
@@ -10,8 +10,10 @@ import (
|
|
|
"hongze/fms_api/global"
|
|
|
"hongze/fms_api/models"
|
|
|
"hongze/fms_api/models/base"
|
|
|
+ "hongze/fms_api/models/crm"
|
|
|
"hongze/fms_api/models/fms"
|
|
|
"hongze/fms_api/services/alarm_msg"
|
|
|
+ crmService "hongze/fms_api/services/crm"
|
|
|
fmsService "hongze/fms_api/services/fms"
|
|
|
"hongze/fms_api/utils"
|
|
|
"net/http"
|
|
@@ -412,7 +414,7 @@ func ExportInvoicePaymentCensusList(c *gin.Context, results *fms.InvoicePaymentC
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- newCompanyMap := map[int]string{0: "/", 1: "是" , 2: "否"}
|
|
|
+ newCompanyMap := map[int]string{0: "/", 1: "是", 2: "否"}
|
|
|
sellerTypeMap := map[int]string{1: "FICC销售", 2: "权益销售"}
|
|
|
for k, v := range list {
|
|
|
dataRow := sheet.AddRow()
|
|
@@ -1023,9 +1025,9 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if req.ListParam == 1{
|
|
|
+ if req.ListParam == 1 {
|
|
|
cond += ` AND a.service_product_id = 1 `
|
|
|
- }else if req.ListParam == 2 {
|
|
|
+ } else if req.ListParam == 2 {
|
|
|
cond += ` AND a.service_product_id = 2 `
|
|
|
}
|
|
|
|
|
@@ -1054,7 +1056,6 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
// pars = append(pars, st, ed, st, ed)
|
|
|
//}
|
|
|
|
|
|
-
|
|
|
//if req.HasInvoice == "1" {
|
|
|
// cond += ` AND a.invoice_id > 0 `
|
|
|
//}else if req.HasInvoice == "0" {
|
|
@@ -1067,8 +1068,6 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
// cond += ` AND a.payment_id = 0 `
|
|
|
//}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
page := new(base.Page)
|
|
|
page.SetPageSize(req.PageSize)
|
|
|
page.SetCurrent(req.Current)
|
|
@@ -1082,24 +1081,23 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
}
|
|
|
if req.SortParam == "" {
|
|
|
page.AddOrderItem(base.OrderItem{Column: "e.start_date", Asc: false})
|
|
|
- }else if req.SortParam == "start_date" {
|
|
|
+ } else if req.SortParam == "start_date" {
|
|
|
if req.SortType == "asc" {
|
|
|
page.AddOrderItem(base.OrderItem{Column: "e.start_date", Asc: true})
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
page.AddOrderItem(base.OrderItem{Column: "e.start_date", Asc: false})
|
|
|
}
|
|
|
- }else if req.SortParam == "end_date" {
|
|
|
+ } else if req.SortParam == "end_date" {
|
|
|
if req.SortType == "asc" {
|
|
|
page.AddOrderItem(base.OrderItem{Column: "e.end_date", Asc: true})
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
page.AddOrderItem(base.OrderItem{Column: "e.end_date", Asc: false})
|
|
|
}
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
resp.Fail("排序字段不正确", c)
|
|
|
return
|
|
|
}
|
|
|
|
|
|
-
|
|
|
if req.IsExport == 1 {
|
|
|
page.SetPageSize(10000)
|
|
|
page.SetCurrent(1)
|
|
@@ -1121,6 +1119,14 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
// 获取汇总数据IDs, 用于查询合计数据
|
|
|
summaryIdsCond := cond
|
|
|
summaryIdsPars := pars
|
|
|
+ if req.SellerIds != "" {
|
|
|
+ sellerIds := strings.Split(req.SellerIds, ",")
|
|
|
+ summaryIdsCond += ` AND c.seller_id in ? AND a.payment_id <> 0 AND a.invoice_id = 0 AND (c.origin_amount > d.origin_amount OR d.origin_amount IS NULL) `
|
|
|
+ summaryIdsPars = append(summaryIdsPars, sellerIds)
|
|
|
+ } else {
|
|
|
+ summaryIdsCond += ` AND a.payment_id <> 0 AND a.invoice_id = 0 AND (c.origin_amount > d.origin_amount OR d.origin_amount IS NULL) `
|
|
|
+ summaryIdsPars = append(summaryIdsPars)
|
|
|
+ }
|
|
|
summaryIds, e := fms.GetInvoicePaymentCensusSummaryDataIds(summaryIdsCond, summaryIdsPars)
|
|
|
if e != nil {
|
|
|
resp.FailMsg("获取失败", "获取商品到款汇总IDs失败, Err: "+e.Error(), c)
|
|
@@ -1132,7 +1138,7 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
wg := sync.WaitGroup{}
|
|
|
|
|
|
// 响应列表
|
|
|
- respList := make([]*fms.InvoicePaymentCensusItem, 0)
|
|
|
+ respList := make([]*fms.NotPaymentCensusItem, 0)
|
|
|
summaryList := make([]*fms.InvoicePaymentSummaryItem, 0)
|
|
|
wg.Add(1)
|
|
|
go func() {
|
|
@@ -1143,6 +1149,15 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
summaryCond += ` AND a.register_id IN ?`
|
|
|
summaryPars := pars
|
|
|
summaryPars = append(summaryPars, queryRegisterIds)
|
|
|
+ if req.SellerIds != "" {
|
|
|
+ sellerIds := strings.Split(req.SellerIds, ",")
|
|
|
+ summaryCond += ` AND d.seller_id in ? AND a.payment_id <> 0 AND a.invoice_id = 0 `
|
|
|
+ summaryPars = append(summaryPars, sellerIds, sellerIds)
|
|
|
+ } else {
|
|
|
+ summaryCond += ` AND a.payment_id <> 0 AND a.invoice_id = 0 `
|
|
|
+ summaryPars = append(summaryPars)
|
|
|
+ }
|
|
|
+
|
|
|
summaryData, e := fms.GetInvoicePaymentCensusSummaryData(summaryCond, summaryPars)
|
|
|
if e != nil {
|
|
|
resp.FailMsg("获取失败", "获取商品到款汇总列表失败, Err: "+e.Error(), c)
|
|
@@ -1157,7 +1172,7 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
paymentIds = append(paymentIds, summaryList[i].PaymentId)
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+ fmt.Println("paymentIds:", paymentIds)
|
|
|
// 合同套餐
|
|
|
/*contractServiceCond := `contract_register_id IN ?`
|
|
|
contractServicePars := make([]interface{}, 0)
|
|
@@ -1204,10 +1219,10 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
}
|
|
|
|
|
|
// 重组汇总数据
|
|
|
- summaryMap := make(map[int][]*fms.InvoicePaymentCensusInfo)
|
|
|
+ summaryMap := make(map[int][]*fms.NotPaymentCensusInfo)
|
|
|
amountMap := make(map[string]*fms.ContractPaymentServiceAmount)
|
|
|
for i := range summaryList {
|
|
|
- v := new(fms.InvoicePaymentCensusInfo)
|
|
|
+ v := new(fms.NotPaymentCensusInfo)
|
|
|
v.InvoiceId = summaryList[i].InvoiceId
|
|
|
v.InvoiceDate = utils.TimeTransferString(utils.FormatDate, summaryList[i].InvoiceDate)
|
|
|
v.InvoiceAmount = summaryList[i].InvoiceAmount
|
|
@@ -1268,7 +1283,7 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
|
|
|
// 响应列表
|
|
|
for i := range registerList {
|
|
|
- v := new(fms.InvoicePaymentCensusItem)
|
|
|
+ v := new(fms.NotPaymentCensusItem)
|
|
|
v.SummaryId = registerList[i].SummaryId
|
|
|
v.ContractRegisterId = registerList[i].ContractRegisterId
|
|
|
v.CompanyName = registerList[i].CompanyName
|
|
@@ -1395,10 +1410,10 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
return
|
|
|
}
|
|
|
for _, v := range contractRegisters {
|
|
|
- if v.RMBRate == 0.0{
|
|
|
+ if v.RMBRate == 0.0 {
|
|
|
v.RMBRate = 1
|
|
|
}
|
|
|
- amount,_ := strconv.ParseFloat(fmt.Sprintf("%.2f",v.ContractAmount / v.RMBRate), 64)
|
|
|
+ amount, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", v.ContractAmount/v.RMBRate), 64)
|
|
|
contractAmount += amount
|
|
|
contractSumMap[v.CurrencyUnit] = v.ContractAmount
|
|
|
}
|
|
@@ -1425,7 +1440,7 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
results.DataList = respList
|
|
|
results.InvoiceTotal = invoiceTotal
|
|
|
results.PaymentTotal = paymentTotal
|
|
|
- results.NotInvoiceTotal = contractAmount-invoiceTotal
|
|
|
+ results.NotInvoiceTotal = contractAmount - invoiceTotal
|
|
|
results.InvoiceCurrencyTotal = invoiceCurrencyTotals
|
|
|
results.PaymentCurrencyTotal = paymentCurrencyTotals
|
|
|
results.NotInvoiceCurrencyTotal = contractAmountCurrencyTotals
|
|
@@ -1443,6 +1458,7 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
resp.OkData("获取成功", baseData, c)
|
|
|
}
|
|
|
|
|
|
+
|
|
|
// List
|
|
|
// @Title 开票未到款统计列表
|
|
|
// @Description 开票未到款统计列表
|
|
@@ -1501,9 +1517,9 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if req.ListParam == 1{
|
|
|
+ if req.ListParam == 1 {
|
|
|
cond += ` AND a.service_product_id = 1 `
|
|
|
- }else if req.ListParam == 2 {
|
|
|
+ } else if req.ListParam == 2 {
|
|
|
cond += ` AND a.service_product_id = 2 `
|
|
|
}
|
|
|
|
|
@@ -1532,7 +1548,6 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
// pars = append(pars, st, ed, st, ed)
|
|
|
//}
|
|
|
|
|
|
-
|
|
|
//if req.HasInvoice == "1" {
|
|
|
// cond += ` AND a.invoice_id > 0 `
|
|
|
//}else if req.HasInvoice == "0" {
|
|
@@ -1545,14 +1560,12 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
// cond += ` AND a.payment_id = 0 `
|
|
|
//}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
page := new(base.Page)
|
|
|
page.SetPageSize(req.PageSize)
|
|
|
page.SetCurrent(req.Current)
|
|
|
//排序
|
|
|
if req.SortType == "" {
|
|
|
- req.SortType = "desc"
|
|
|
+ req.SortType = "asc"
|
|
|
}
|
|
|
if req.SortType != "desc" && req.SortType != "asc" {
|
|
|
resp.Fail("排序类型不正确", c)
|
|
@@ -1560,11 +1573,10 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
}
|
|
|
if req.SortType == "asc" {
|
|
|
page.AddOrderItem(base.OrderItem{Column: "e.invoice_time", Asc: true})
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
page.AddOrderItem(base.OrderItem{Column: "e.invoice_time", Asc: false})
|
|
|
}
|
|
|
|
|
|
-
|
|
|
if req.IsExport == 1 {
|
|
|
page.SetPageSize(10000)
|
|
|
page.SetCurrent(1)
|
|
@@ -1586,6 +1598,14 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
// 获取汇总数据IDs, 用于查询合计数据
|
|
|
summaryIdsCond := cond
|
|
|
summaryIdsPars := pars
|
|
|
+ if req.SellerIds != "" {
|
|
|
+ sellerIds := strings.Split(req.SellerIds, ",")
|
|
|
+ summaryIdsCond += ` AND c.seller_id in ? AND a.invoice_id <> 0 AND (c.origin_amount > d.origin_amount OR d.origin_amount IS NULL) `
|
|
|
+ summaryIdsPars = append(summaryIdsPars, sellerIds)
|
|
|
+ } else {
|
|
|
+ summaryIdsCond += ` AND a.invoice_id <> 0 AND (c.origin_amount > d.origin_amount OR d.origin_amount IS NULL) `
|
|
|
+ summaryIdsPars = append(summaryIdsPars)
|
|
|
+ }
|
|
|
summaryIds, e := fms.GetInvoicePaymentCensusSummaryDataIds(summaryIdsCond, summaryIdsPars)
|
|
|
if e != nil {
|
|
|
resp.FailMsg("获取失败", "获取商品到款汇总IDs失败, Err: "+e.Error(), c)
|
|
@@ -1597,7 +1617,7 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
wg := sync.WaitGroup{}
|
|
|
|
|
|
// 响应列表
|
|
|
- respList := make([]*fms.InvoicePaymentCensusItem, 0)
|
|
|
+ respList := make([]*fms.NotPaymentCensusItem, 0)
|
|
|
summaryList := make([]*fms.InvoicePaymentSummaryItem, 0)
|
|
|
wg.Add(1)
|
|
|
go func() {
|
|
@@ -1608,6 +1628,14 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
summaryCond += ` AND a.register_id IN ?`
|
|
|
summaryPars := pars
|
|
|
summaryPars = append(summaryPars, queryRegisterIds)
|
|
|
+ if req.SellerIds != "" {
|
|
|
+ sellerIds := strings.Split(req.SellerIds, ",")
|
|
|
+ summaryCond += ` AND c.seller_id in ? AND a.invoice_id <> 0 AND (c.origin_amount > d.origin_amount OR d.origin_amount IS NULL) `
|
|
|
+ summaryPars = append(summaryPars, sellerIds)
|
|
|
+ } else {
|
|
|
+ summaryCond += ` AND a.invoice_id <> 0 AND (c.origin_amount > d.origin_amount OR d.origin_amount IS NULL) `
|
|
|
+ summaryPars = append(summaryPars)
|
|
|
+ }
|
|
|
summaryData, e := fms.GetInvoicePaymentCensusSummaryData(summaryCond, summaryPars)
|
|
|
if e != nil {
|
|
|
resp.FailMsg("获取失败", "获取商品到款汇总列表失败, Err: "+e.Error(), c)
|
|
@@ -1615,64 +1643,29 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
}
|
|
|
summaryList = summaryData
|
|
|
//summaryIds := make([]int, 0)
|
|
|
- paymentIds := make([]int, 0)
|
|
|
- for i := range summaryList {
|
|
|
- //summaryIds = append(summaryIds, summaryList[i].SummaryId)
|
|
|
- if summaryList[i].PaymentId > 0 {
|
|
|
- paymentIds = append(paymentIds, summaryList[i].PaymentId)
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // 合同套餐
|
|
|
- /*contractServiceCond := `contract_register_id IN ?`
|
|
|
- contractServicePars := make([]interface{}, 0)
|
|
|
- contractServicePars = append(contractServicePars, queryRegisterIds)
|
|
|
- contractServiceOB := new(fms.ContractService)
|
|
|
- contractServiceList, e := contractServiceOB.List(contractServiceCond, contractServicePars)
|
|
|
- if e != nil {
|
|
|
- listErr = fmt.Errorf("获取合同套餐列表失败, Err: %s", e.Error())
|
|
|
- return
|
|
|
- }
|
|
|
- contractServiceMap := make(map[int][]*fms.ContractService, 0)
|
|
|
- servicesNameMap := make(map[int][]string, 0)
|
|
|
- for i := range contractServiceList {
|
|
|
- if contractServiceMap[contractServiceList[i].ContractRegisterId] == nil {
|
|
|
- contractServiceMap[contractServiceList[i].ContractRegisterId] = make([]*fms.ContractService, 0)
|
|
|
- }
|
|
|
- contractServiceMap[contractServiceList[i].ContractRegisterId] = append(contractServiceMap[contractServiceList[i].ContractRegisterId], contractServiceList[i])
|
|
|
- servicesNameMap[contractServiceList[i].ContractRegisterId] = append(servicesNameMap[contractServiceList[i].ContractRegisterId], contractServiceList[i].Title)
|
|
|
- }
|
|
|
- */
|
|
|
- servicesNameMap, serviceFormatMap, e := fmsService.GetContractServiceNameFormat(queryRegisterIds)
|
|
|
- if e != nil {
|
|
|
- listErr = fmt.Errorf("获取合同套餐列表失败, Err: %s", e.Error())
|
|
|
- return
|
|
|
- }
|
|
|
- // 到款套餐分配
|
|
|
- serviceAmountMap := make(map[int][]*fms.ContractPaymentServiceAmount, 0)
|
|
|
- if len(paymentIds) > 0 {
|
|
|
- serviceAmountCond := `contract_payment_id IN ?`
|
|
|
- serviceAmountPars := make([]interface{}, 0)
|
|
|
- serviceAmountPars = append(serviceAmountPars, paymentIds)
|
|
|
- serviceAmountOB := new(fms.ContractPaymentServiceAmount)
|
|
|
- serviceAmountList, e := serviceAmountOB.List(serviceAmountCond, serviceAmountPars)
|
|
|
- if e != nil {
|
|
|
- listErr = fmt.Errorf("获取到款套餐分配列表失败, Err: %s", e.Error())
|
|
|
- return
|
|
|
- }
|
|
|
- for i := range serviceAmountList {
|
|
|
- if serviceAmountMap[serviceAmountList[i].ContractPaymentId] == nil {
|
|
|
- serviceAmountMap[serviceAmountList[i].ContractPaymentId] = make([]*fms.ContractPaymentServiceAmount, 0)
|
|
|
- }
|
|
|
- serviceAmountMap[serviceAmountList[i].ContractPaymentId] = append(serviceAmountMap[serviceAmountList[i].ContractPaymentId], serviceAmountList[i])
|
|
|
- }
|
|
|
- }
|
|
|
+ //for i := range summaryList {
|
|
|
+ // //summaryIds = append(summaryIds, summaryList[i].SummaryId)
|
|
|
+ //
|
|
|
+ //}
|
|
|
+
|
|
|
+ //// 获取合同的套餐金额信息
|
|
|
+ //serviceAmountList, e := fms.GetContractServiceAmountByContractRegisterIds(queryRegisterIds)
|
|
|
+ //if e != nil {
|
|
|
+ // resp.FailData("获取合同的套餐金额信息失败", "Err:"+e.Error(), c)
|
|
|
+ // return
|
|
|
+ //}
|
|
|
+ //serviceAmountMap := make(map[int]map[int]*fms.ContractServiceAmount, 0)
|
|
|
+ //for _, v := range serviceAmountList {
|
|
|
+ // if _, ok := serviceAmountMap[v.ContractRegisterId]; !ok {
|
|
|
+ // serviceAmountMap[v.ContractRegisterId] = make(map[int]*fms.ContractServiceAmount)
|
|
|
+ // }
|
|
|
+ // serviceAmountMap[v.ContractRegisterId][v.ProductId] = v
|
|
|
+ //}
|
|
|
|
|
|
// 重组汇总数据
|
|
|
- summaryMap := make(map[int][]*fms.InvoicePaymentCensusInfo)
|
|
|
- amountMap := make(map[string]*fms.ContractPaymentServiceAmount)
|
|
|
+ summaryMap := make(map[int][]*fms.NotPaymentCensusInfo)
|
|
|
for i := range summaryList {
|
|
|
- v := new(fms.InvoicePaymentCensusInfo)
|
|
|
+ v := new(fms.NotPaymentCensusInfo)
|
|
|
v.InvoiceId = summaryList[i].InvoiceId
|
|
|
v.InvoiceDate = utils.TimeTransferString(utils.FormatDate, summaryList[i].InvoiceDate)
|
|
|
v.InvoiceAmount = summaryList[i].InvoiceAmount
|
|
@@ -1685,35 +1678,7 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
v.PaymentDate = utils.TimeTransferString(utils.FormatDate, summaryList[i].PaymentDate)
|
|
|
v.PaymentAmount = summaryList[i].PaymentAmount
|
|
|
v.PayType = summaryList[i].PayType
|
|
|
-
|
|
|
- // 套餐到款分配
|
|
|
- svaList := make([]*fms.ContractPaymentServiceAmountItem, 0)
|
|
|
- amountList := serviceAmountMap[summaryList[i].PaymentId]
|
|
|
- if amountList != nil {
|
|
|
- for i := range amountList {
|
|
|
- k := fmt.Sprintf("%d-%d", amountList[i].ContractPaymentId, amountList[i].ServiceTemplateId)
|
|
|
- amountMap[k] = amountList[i]
|
|
|
- }
|
|
|
- }
|
|
|
- // 合同对应的所有套餐
|
|
|
- svList := serviceFormatMap[summaryList[i].RegisterId]
|
|
|
- if svList != nil {
|
|
|
- for ii := range svList {
|
|
|
- vv := new(fms.ContractPaymentServiceAmountItem)
|
|
|
- vv.ServiceTemplateId = svList[ii].ServiceTemplateId
|
|
|
- vv.ServiceTemplateName = svList[ii].FormatTitle
|
|
|
- vv.ServiceTemplatePid = svList[ii].ServiceTemplatePid
|
|
|
- k2 := fmt.Sprintf("%d-%d", summaryList[i].PaymentId, svList[ii].ServiceTemplateId)
|
|
|
- a := amountMap[k2]
|
|
|
- if a != nil {
|
|
|
- vv.ContractPaymentServiceAmountId = a.ContractPaymentServiceAmountId
|
|
|
- vv.ContractPaymentId = a.ContractPaymentId
|
|
|
- vv.Amount = a.Amount
|
|
|
- }
|
|
|
- svaList = append(svaList, vv)
|
|
|
- }
|
|
|
- }
|
|
|
- v.ServiceAmountList = svaList
|
|
|
+ v.NotPaymentAmount = summaryList[i].InvoiceAmount - summaryList[i].PaymentAmount
|
|
|
|
|
|
summaryMap[summaryList[i].SummaryId] = append(summaryMap[summaryList[i].SummaryId], v)
|
|
|
}
|
|
@@ -1734,14 +1699,13 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
|
|
|
// 响应列表
|
|
|
for i := range registerList {
|
|
|
- v := new(fms.InvoicePaymentCensusItem)
|
|
|
+ v := new(fms.NotPaymentCensusItem)
|
|
|
v.SummaryId = registerList[i].SummaryId
|
|
|
v.ContractRegisterId = registerList[i].ContractRegisterId
|
|
|
v.CompanyName = registerList[i].CompanyName
|
|
|
v.NewCompany = registerList[i].NewCompany
|
|
|
v.StartDate = utils.TimeTransferString(utils.FormatDate, registerList[i].StartDate)
|
|
|
v.EndDate = utils.TimeTransferString(utils.FormatDate, registerList[i].EndDate)
|
|
|
- v.ServicesName = servicesNameMap[registerList[i].ContractRegisterId]
|
|
|
v.InvoicePaymentList = summaryMap[registerList[i].SummaryId]
|
|
|
v.ContractType = registerList[i].ContractType
|
|
|
v.ContractCode = registerList[i].ContractCode
|
|
@@ -1753,8 +1717,7 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
}()
|
|
|
|
|
|
// 开票到款金额合计(换算后)
|
|
|
- // 开票到款金额合计(换算后)
|
|
|
- var invoiceTotal, paymentTotal, contractAmount float64
|
|
|
+ var invoiceTotal, paymentTotal float64
|
|
|
wg.Add(1)
|
|
|
go func() {
|
|
|
defer wg.Done()
|
|
@@ -1782,7 +1745,8 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
// 分币种金额统计
|
|
|
invoiceCurrencyTotals := make([]*fms.InvoiceListCurrencyTotal, 0)
|
|
|
paymentCurrencyTotals := make([]*fms.InvoiceListCurrencyTotal, 0)
|
|
|
- contractAmountCurrencyTotals := make([]*fms.InvoiceListCurrencyTotal, 0)
|
|
|
+ notpaymentCurrencyTotals := make([]*fms.InvoiceListCurrencyTotal, 0)
|
|
|
+ //contractAmountCurrencyTotals := make([]*fms.InvoiceListCurrencyTotal, 0)
|
|
|
wg.Add(1)
|
|
|
go func() {
|
|
|
defer wg.Done()
|
|
@@ -1810,12 +1774,18 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
Code: currencyList[i].Code,
|
|
|
FlagImg: currencyList[i].FlagImg,
|
|
|
})
|
|
|
- contractAmountCurrencyTotals = append(contractAmountCurrencyTotals, &fms.InvoiceListCurrencyTotal{
|
|
|
+ notpaymentCurrencyTotals = append(notpaymentCurrencyTotals, &fms.InvoiceListCurrencyTotal{
|
|
|
Name: currencyList[i].Name,
|
|
|
UnitName: currencyList[i].UnitName,
|
|
|
Code: currencyList[i].Code,
|
|
|
FlagImg: currencyList[i].FlagImg,
|
|
|
})
|
|
|
+ //contractAmountCurrencyTotals = append(contractAmountCurrencyTotals, &fms.InvoiceListCurrencyTotal{
|
|
|
+ // Name: currencyList[i].Name,
|
|
|
+ // UnitName: currencyList[i].UnitName,
|
|
|
+ // Code: currencyList[i].Code,
|
|
|
+ // FlagImg: currencyList[i].FlagImg,
|
|
|
+ //})
|
|
|
}
|
|
|
|
|
|
if len(summaryIds) == 0 {
|
|
@@ -1836,7 +1806,7 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
}
|
|
|
invoiceSumMap := make(map[string]float64)
|
|
|
paymentSumMap := make(map[string]float64)
|
|
|
- contractSumMap := make(map[string]float64)
|
|
|
+ //contractSumMap := make(map[string]float64)
|
|
|
|
|
|
for i := range invoiceSumGroup {
|
|
|
invoiceSumMap[invoiceSumGroup[i].CurrencyUnit] = invoiceSumGroup[i].OriginAmountTotal
|
|
@@ -1854,23 +1824,27 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
a, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", paymentSumMap[paymentCurrencyTotals[i].Code]), 64)
|
|
|
paymentCurrencyTotals[i].Amount = a
|
|
|
}
|
|
|
-
|
|
|
- contractRegisters, err := fms.GetContractInfoByRegisterIds(queryRegisterIds)
|
|
|
- if err != nil {
|
|
|
- resp.FailMsg("查询合同信息失败", "查询合同信息失败, Err: "+err.Error(), c)
|
|
|
- return
|
|
|
- }
|
|
|
- for _, v := range contractRegisters {
|
|
|
- if v.RMBRate == 0.0 {
|
|
|
- v.RMBRate = 1
|
|
|
- }
|
|
|
- amount, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", v.ContractAmount/v.RMBRate), 64)
|
|
|
- contractAmount += amount
|
|
|
- contractSumMap[v.CurrencyUnit] = v.ContractAmount
|
|
|
- }
|
|
|
- for _, v := range contractAmountCurrencyTotals {
|
|
|
- v.Amount = contractSumMap[v.Code] - invoiceSumMap[v.Code]
|
|
|
- }
|
|
|
+ for i := range notpaymentCurrencyTotals {
|
|
|
+ a, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", invoiceSumMap[invoiceCurrencyTotals[i].Code] - paymentSumMap[paymentCurrencyTotals[i].Code]), 64)
|
|
|
+ notpaymentCurrencyTotals[i].Amount = a
|
|
|
+ }
|
|
|
+
|
|
|
+ //contractRegisters, err := fms.GetContractInfoByRegisterIds(queryRegisterIds)
|
|
|
+ //if err != nil {
|
|
|
+ // resp.FailMsg("查询合同信息失败", "查询合同信息失败, Err: "+err.Error(), c)
|
|
|
+ // return
|
|
|
+ //}
|
|
|
+ //for _, v := range contractRegisters {
|
|
|
+ // if v.RMBRate == 0.0 {
|
|
|
+ // v.RMBRate = 1
|
|
|
+ // }
|
|
|
+ // amount, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", v.ContractAmount/v.RMBRate), 64)
|
|
|
+ // contractAmount += amount
|
|
|
+ // contractSumMap[v.CurrencyUnit] = v.ContractAmount
|
|
|
+ //}
|
|
|
+ //for _, v := range contractAmountCurrencyTotals {
|
|
|
+ // v.Amount = contractSumMap[v.Code] - invoiceSumMap[v.Code]
|
|
|
+ //}
|
|
|
|
|
|
}()
|
|
|
|
|
@@ -1891,10 +1865,8 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
results.DataList = respList
|
|
|
results.InvoiceTotal = invoiceTotal
|
|
|
results.PaymentTotal = paymentTotal
|
|
|
- results.NotInvoiceTotal = contractAmount - invoiceTotal
|
|
|
- results.InvoiceCurrencyTotal = invoiceCurrencyTotals
|
|
|
- results.PaymentCurrencyTotal = paymentCurrencyTotals
|
|
|
- results.NotInvoiceCurrencyTotal = contractAmountCurrencyTotals
|
|
|
+ results.NotPaymentTotal = invoiceTotal - paymentTotal
|
|
|
+ results.NotPaymentCurrencyTotal = notpaymentCurrencyTotals
|
|
|
}
|
|
|
// 是否导出
|
|
|
if req.IsExport == 1 {
|
|
@@ -1907,7 +1879,6 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
baseData.SetList(results)
|
|
|
resp.OkData("获取成功", baseData, c)
|
|
|
}
|
|
|
-
|
|
|
// ExportNotInvoiceCensusList 导出未开票统计列表
|
|
|
func ExportNotInvoiceCensusList(c *gin.Context, results *fms.NotInvoicePaymentCensusResp) {
|
|
|
list := results.DataList
|
|
@@ -1959,218 +1930,7 @@ func ExportNotInvoiceCensusList(c *gin.Context, results *fms.NotInvoicePaymentCe
|
|
|
return
|
|
|
}
|
|
|
serviceTempListMap := make(map[int]*fms.ContractServiceTemplate)
|
|
|
- var serviceTempShow [] *fms.ContractServiceTemplate
|
|
|
- for i := range serviceTempList {
|
|
|
- serviceTempListMap[serviceTempList[i].ServiceTemplateId] = serviceTempList[i]
|
|
|
- }
|
|
|
- for i := range serviceTempList {
|
|
|
- if serviceTempList[i].ProductId == 1 {
|
|
|
- rowTitle = append(rowTitle, serviceTempList[i].Title)
|
|
|
- serviceTempShow = append(serviceTempShow, serviceTempList[i])
|
|
|
- }else if serviceTempList[i].ProductId == 2{
|
|
|
- if serviceTempList[i].Title == "行业套餐" || serviceTempList[i].Title == "权益大套餐" || (serviceTempList[i].Title == "策略" && serviceTempListMap[serviceTempList[i].Pid].Pid==0){
|
|
|
- }else if serviceTempList[i].Title == "医药" || serviceTempList[i].Title == "消费" || serviceTempList[i].Title == "科技" || serviceTempList[i].Title == "智造" {
|
|
|
- }else {
|
|
|
- serviceTempShow = append(serviceTempShow, serviceTempList[i])
|
|
|
- }
|
|
|
- if serviceTempList[i].Title == "行业套餐" || serviceTempList[i].Title == "45万" || serviceTempList[i].Title == "70万" {
|
|
|
- continue
|
|
|
- }
|
|
|
-
|
|
|
- if serviceTempList[i].Pid > 0 && serviceTempListMap[serviceTempList[i].Pid].Pid > 0 {
|
|
|
- continue
|
|
|
- }
|
|
|
-
|
|
|
- rowTitle = append(rowTitle, serviceTempList[i].Title)
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- hi := 0
|
|
|
- insertHi := 0
|
|
|
- titleRow := sheet.AddRow()
|
|
|
- for i := range rowTitle {
|
|
|
- v := titleRow.AddCell()
|
|
|
- v.SetString(rowTitle[i])
|
|
|
- v.SetStyle(style)
|
|
|
- if rowTitle[i] != "权益大套餐" && rowTitle[i] != "医药" && rowTitle[i] != "消费" && rowTitle[i] != "科技" && rowTitle[i] != "智造" {
|
|
|
- v.VMerge = 1
|
|
|
- hi ++
|
|
|
- }else{
|
|
|
- if insertHi == 0 {
|
|
|
- insertHi = hi
|
|
|
- }
|
|
|
- v.HMerge = 1
|
|
|
- titleRow.AddCell().SetString("")
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // 新增一行放主观和客观
|
|
|
- specialRow := sheet.AddRow()
|
|
|
- for i:=0; i< hi; i++ {
|
|
|
- if i == insertHi {
|
|
|
- v1 := specialRow.AddCell()
|
|
|
- v1.SetString("45万")
|
|
|
- v1.SetStyle(style)
|
|
|
- v1 = specialRow.AddCell()
|
|
|
- v1.SetString("70万")
|
|
|
- v1.SetStyle(style)
|
|
|
- for j:=0; j<8;j++ {
|
|
|
- if j%2 ==0 {
|
|
|
- v1 = specialRow.AddCell()
|
|
|
- v1.SetString("主观")
|
|
|
- v1.SetStyle(style)
|
|
|
- }else{
|
|
|
- v1 = specialRow.AddCell()
|
|
|
- v1.SetString("客观")
|
|
|
- v1.SetStyle(style)
|
|
|
- }
|
|
|
- }
|
|
|
- }else{
|
|
|
- v := specialRow.AddCell()
|
|
|
- v.SetString("")
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- newCompanyMap := map[int]string{0: "否", 1: "是"}
|
|
|
- sellerTypeMap := map[int]string{1:"FICC销售", 2:"权益销售"}
|
|
|
- for k, v := range list {
|
|
|
- dataRow := sheet.AddRow()
|
|
|
- // 前四个单元格根据每行开票到款条数向下合并
|
|
|
- l := len(v.InvoicePaymentList)
|
|
|
- mergeRowNum := l - 1
|
|
|
- // 序号
|
|
|
- sortNum := k + 1
|
|
|
- colA := dataRow.AddCell()
|
|
|
- colA.VMerge = mergeRowNum
|
|
|
- colA.SetString(fmt.Sprint(sortNum))
|
|
|
- // 客户名称
|
|
|
- colB := dataRow.AddCell()
|
|
|
- colB.VMerge = mergeRowNum
|
|
|
- colB.SetString(v.CompanyName)
|
|
|
- // 是否新客户
|
|
|
- colC := dataRow.AddCell()
|
|
|
- colC.VMerge = mergeRowNum
|
|
|
- colC.SetString(newCompanyMap[v.NewCompany])
|
|
|
- // 合同有效期
|
|
|
- colD := dataRow.AddCell()
|
|
|
- colD.VMerge = mergeRowNum
|
|
|
- colD.SetString(fmt.Sprint(v.StartDate, "至", v.EndDate))
|
|
|
- // 开票到款信息
|
|
|
- for k2, v2 := range v.InvoicePaymentList {
|
|
|
- rowData := []string{
|
|
|
- v2.InvoiceDate, // 开票日
|
|
|
- fmt.Sprint(v2.InvoiceAmount), // 开票金额
|
|
|
- v2.PaymentDate, // 到款日
|
|
|
- fmt.Sprint(v2.PaymentAmount), // 到款金额
|
|
|
- fms.ContractPaymentPayTypeNameMap[v2.PayType], // 付款方式
|
|
|
- v2.SellerName, // 销售
|
|
|
- v2.SellerGroupName, // 组别
|
|
|
- sellerTypeMap[v2.SellerType], // 销售类型
|
|
|
- }
|
|
|
- // 套餐金额信息
|
|
|
- serviceTempShowAmount := make(map[int]string)
|
|
|
- for i := range serviceTempShow {
|
|
|
- for s2 := range v2.ServiceAmountList {
|
|
|
- item := v2.ServiceAmountList[s2]
|
|
|
- if item.ServiceTemplateId == serviceTempShow[i].ServiceTemplateId {
|
|
|
- serviceTempShowAmount[serviceTempShow[i].ServiceTemplateId] = fmt.Sprint(item.Amount)
|
|
|
- break
|
|
|
- }else if serviceTempShow[i].Pid == item.ServiceTemplateId {
|
|
|
- serviceTempShowAmount[serviceTempShow[i].ServiceTemplateId] = fmt.Sprint(item.Amount/2)
|
|
|
- break
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- for i := range serviceTempShow {
|
|
|
- sa := ""
|
|
|
- if am, ok := serviceTempShowAmount[serviceTempShow[i].ServiceTemplateId]; ok {
|
|
|
- sa = am
|
|
|
- }
|
|
|
- rowData = append(rowData, sa)
|
|
|
- }
|
|
|
- // 首行开票到款
|
|
|
- if k2 == 0 {
|
|
|
- for i := range rowData {
|
|
|
- dataRow.AddCell().SetString(rowData[i])
|
|
|
- }
|
|
|
- continue
|
|
|
- }
|
|
|
- // 其他行开票到款, 加四列空的单元格用于合并
|
|
|
- dataRowExtra := sheet.AddRow()
|
|
|
- for i := 0; i < 4; i++ {
|
|
|
- dataRowExtra.AddCell()
|
|
|
- }
|
|
|
- for i := range rowData {
|
|
|
- dataRowExtra.AddCell().SetString(rowData[i])
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // 输出文件
|
|
|
- var buffer bytes.Buffer
|
|
|
- _ = xlsxFile.Write(&buffer)
|
|
|
- content := bytes.NewReader(buffer.Bytes())
|
|
|
- randStr := time.Now().Format(utils.FormatDateTimeUnSpace)
|
|
|
- fileName := "商品到款统计_" + randStr + ".xlsx"
|
|
|
-
|
|
|
- c.Writer.Header().Add("Content-Disposition", fmt.Sprintf(`attachment; filename="%s"`, fileName))
|
|
|
- c.Writer.Header().Add("Content-Type", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
|
|
|
- http.ServeContent(c.Writer, c.Request, fileName, time.Now(), content)
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-// ExportNotPaymentCensusList 导出开票未到款统计列表
|
|
|
-func ExportNotPaymentCensusList(c *gin.Context, results *fms.NotInvoicePaymentCensusResp) {
|
|
|
- list := results.DataList
|
|
|
- if len(list) == 0 {
|
|
|
- resp.Fail("列表数据为空", c)
|
|
|
- return
|
|
|
- }
|
|
|
-
|
|
|
- // 生成Excel文件
|
|
|
- xlsxFile := xlsx.NewFile()
|
|
|
- style := xlsx.NewStyle()
|
|
|
- alignment := xlsx.Alignment{
|
|
|
- Horizontal: "center",
|
|
|
- Vertical: "center",
|
|
|
- WrapText: true,
|
|
|
- }
|
|
|
- style.Alignment = alignment
|
|
|
- style.ApplyAlignment = true
|
|
|
-
|
|
|
- sheet, err := xlsxFile.AddSheet("开票未到款统计")
|
|
|
- if err != nil {
|
|
|
- resp.FailData("新增Sheet失败", "Err:"+err.Error(), c)
|
|
|
- return
|
|
|
- }
|
|
|
- _ = sheet.SetColWidth(1, 1, 30)
|
|
|
- _ = sheet.SetColWidth(3, 3, 30)
|
|
|
-
|
|
|
- // 前三行-开票金额合计
|
|
|
- rowA := sheet.AddRow()
|
|
|
- cellAA := rowA.AddCell()
|
|
|
- cellAA.SetString(fmt.Sprintf("开票未到款合计金额(换算后):%.2f(元)", results.InvoiceTotal))
|
|
|
- rowBData := "已开票金额:"
|
|
|
- for _, v := range results.InvoiceCurrencyTotal {
|
|
|
- rowBData += fmt.Sprintf("%s%.2f(%s) ", v.Name, v.Amount, v.UnitName)
|
|
|
- }
|
|
|
- rowB := sheet.AddRow()
|
|
|
- rowB.AddCell().SetString(rowBData)
|
|
|
- sheet.AddRow()
|
|
|
-
|
|
|
- // 表头, 套餐动态获取
|
|
|
- rowTitle := []string{"序号", "客户名称", "是否新客户", "合同有效期", "开票日", "开票金额", "到款日", "到款金额", "付款方式", "销售",
|
|
|
- "销售组别", "销售类型"}
|
|
|
- serviceTempCond := ``
|
|
|
- serviceTempPars := make([]interface{}, 0)
|
|
|
- serviceTempOB := new(fms.ContractServiceTemplate)
|
|
|
- serviceTempList, e := serviceTempOB.List(serviceTempCond, serviceTempPars)
|
|
|
- if e != nil {
|
|
|
- resp.FailData("获取套餐模板列表失败", "Err:"+e.Error(), c)
|
|
|
- return
|
|
|
- }
|
|
|
- serviceTempListMap := make(map[int]*fms.ContractServiceTemplate)
|
|
|
- var serviceTempShow [] *fms.ContractServiceTemplate
|
|
|
+ var serviceTempShow []*fms.ContractServiceTemplate
|
|
|
for i := range serviceTempList {
|
|
|
serviceTempListMap[serviceTempList[i].ServiceTemplateId] = serviceTempList[i]
|
|
|
}
|
|
@@ -2178,17 +1938,17 @@ func ExportNotPaymentCensusList(c *gin.Context, results *fms.NotInvoicePaymentCe
|
|
|
if serviceTempList[i].ProductId == 1 {
|
|
|
rowTitle = append(rowTitle, serviceTempList[i].Title)
|
|
|
serviceTempShow = append(serviceTempShow, serviceTempList[i])
|
|
|
- }else if serviceTempList[i].ProductId == 2{
|
|
|
- if serviceTempList[i].Title == "行业套餐" || serviceTempList[i].Title == "权益大套餐" || (serviceTempList[i].Title == "策略" && serviceTempListMap[serviceTempList[i].Pid].Pid==0){
|
|
|
- }else if serviceTempList[i].Title == "医药" || serviceTempList[i].Title == "消费" || serviceTempList[i].Title == "科技" || serviceTempList[i].Title == "智造" {
|
|
|
- }else {
|
|
|
+ } else if serviceTempList[i].ProductId == 2 {
|
|
|
+ if serviceTempList[i].Title == "行业套餐" || serviceTempList[i].Title == "权益大套餐" || (serviceTempList[i].Title == "策略" && serviceTempListMap[serviceTempList[i].Pid].Pid == 0) {
|
|
|
+ } else if serviceTempList[i].Title == "医药" || serviceTempList[i].Title == "消费" || serviceTempList[i].Title == "科技" || serviceTempList[i].Title == "智造" {
|
|
|
+ } else {
|
|
|
serviceTempShow = append(serviceTempShow, serviceTempList[i])
|
|
|
}
|
|
|
- if serviceTempList[i].Title == "行业套餐" || serviceTempList[i].Title == "45万" || serviceTempList[i].Title == "70万" {
|
|
|
+ if serviceTempList[i].Title == "行业套餐" || serviceTempList[i].Title == "45万" || serviceTempList[i].Title == "70万" {
|
|
|
continue
|
|
|
}
|
|
|
|
|
|
- if serviceTempList[i].Pid > 0 && serviceTempListMap[serviceTempList[i].Pid].Pid > 0 {
|
|
|
+ if serviceTempList[i].Pid > 0 && serviceTempListMap[serviceTempList[i].Pid].Pid > 0 {
|
|
|
continue
|
|
|
}
|
|
|
|
|
@@ -2205,8 +1965,8 @@ func ExportNotPaymentCensusList(c *gin.Context, results *fms.NotInvoicePaymentCe
|
|
|
v.SetStyle(style)
|
|
|
if rowTitle[i] != "权益大套餐" && rowTitle[i] != "医药" && rowTitle[i] != "消费" && rowTitle[i] != "科技" && rowTitle[i] != "智造" {
|
|
|
v.VMerge = 1
|
|
|
- hi ++
|
|
|
- }else{
|
|
|
+ hi++
|
|
|
+ } else {
|
|
|
if insertHi == 0 {
|
|
|
insertHi = hi
|
|
|
}
|
|
@@ -2217,7 +1977,7 @@ func ExportNotPaymentCensusList(c *gin.Context, results *fms.NotInvoicePaymentCe
|
|
|
|
|
|
// 新增一行放主观和客观
|
|
|
specialRow := sheet.AddRow()
|
|
|
- for i:=0; i< hi; i++ {
|
|
|
+ for i := 0; i < hi; i++ {
|
|
|
if i == insertHi {
|
|
|
v1 := specialRow.AddCell()
|
|
|
v1.SetString("45万")
|
|
@@ -2225,25 +1985,25 @@ func ExportNotPaymentCensusList(c *gin.Context, results *fms.NotInvoicePaymentCe
|
|
|
v1 = specialRow.AddCell()
|
|
|
v1.SetString("70万")
|
|
|
v1.SetStyle(style)
|
|
|
- for j:=0; j<8;j++ {
|
|
|
- if j%2 ==0 {
|
|
|
+ for j := 0; j < 8; j++ {
|
|
|
+ if j%2 == 0 {
|
|
|
v1 = specialRow.AddCell()
|
|
|
v1.SetString("主观")
|
|
|
v1.SetStyle(style)
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
v1 = specialRow.AddCell()
|
|
|
v1.SetString("客观")
|
|
|
v1.SetStyle(style)
|
|
|
}
|
|
|
}
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
v := specialRow.AddCell()
|
|
|
v.SetString("")
|
|
|
}
|
|
|
}
|
|
|
|
|
|
newCompanyMap := map[int]string{0: "否", 1: "是"}
|
|
|
- sellerTypeMap := map[int]string{1:"FICC销售", 2:"权益销售"}
|
|
|
+ sellerTypeMap := map[int]string{1: "FICC销售", 2: "权益销售"}
|
|
|
for k, v := range list {
|
|
|
dataRow := sheet.AddRow()
|
|
|
// 前四个单元格根据每行开票到款条数向下合并
|
|
@@ -2286,15 +2046,15 @@ func ExportNotPaymentCensusList(c *gin.Context, results *fms.NotInvoicePaymentCe
|
|
|
if item.ServiceTemplateId == serviceTempShow[i].ServiceTemplateId {
|
|
|
serviceTempShowAmount[serviceTempShow[i].ServiceTemplateId] = fmt.Sprint(item.Amount)
|
|
|
break
|
|
|
- }else if serviceTempShow[i].Pid == item.ServiceTemplateId {
|
|
|
- serviceTempShowAmount[serviceTempShow[i].ServiceTemplateId] = fmt.Sprint(item.Amount/2)
|
|
|
+ } else if serviceTempShow[i].Pid == item.ServiceTemplateId {
|
|
|
+ serviceTempShowAmount[serviceTempShow[i].ServiceTemplateId] = fmt.Sprint(item.Amount / 2)
|
|
|
break
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
for i := range serviceTempShow {
|
|
|
sa := ""
|
|
|
- if am, ok := serviceTempShowAmount[serviceTempShow[i].ServiceTemplateId]; ok {
|
|
|
+ if am, ok := serviceTempShowAmount[serviceTempShow[i].ServiceTemplateId]; ok {
|
|
|
sa = am
|
|
|
}
|
|
|
rowData = append(rowData, sa)
|
|
@@ -2421,7 +2181,7 @@ func getCensusIncomeListV2(ch chan models.CensusIncomeChartResp, req fms.IncomeL
|
|
|
if latestTime.IsZero() {
|
|
|
latestTime = time.Now()
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
latestTime = latestTime.AddDate(0, 0, -latestTime.Day()+1)
|
|
|
|
|
|
var dateSlice []string
|
|
@@ -2877,4 +2637,4 @@ func ExportIncomeList(c *gin.Context, list []*fms.IncomeSummaryItem) {
|
|
|
c.Writer.Header().Add("Content-Disposition", fmt.Sprintf(`attachment; filename="%s"`, fileName))
|
|
|
c.Writer.Header().Add("Content-Type", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
|
|
|
http.ServeContent(c.Writer, c.Request, fileName, time.Now(), content)
|
|
|
-}
|
|
|
+}
|