|
@@ -27,258 +27,6 @@ import (
|
|
|
// InvoicePaymentController 商品到款统计
|
|
|
type InvoicePaymentController struct{}
|
|
|
|
|
|
-// List2 原版(已废弃)
|
|
|
-//func (ct *InvoicePaymentController) List2(c *gin.Context) {
|
|
|
-// var req fms.InvoicePaymentCensusListReq
|
|
|
-// if e := c.BindQuery(&req); e != nil {
|
|
|
-// err, ok := e.(validator.ValidationErrors)
|
|
|
-// if !ok {
|
|
|
-// resp.FailData("参数解析失败", "Err:"+e.Error(), c)
|
|
|
-// return
|
|
|
-// }
|
|
|
-// resp.FailData("参数解析失败", err.Translate(global.Trans), c)
|
|
|
-// return
|
|
|
-// }
|
|
|
-//
|
|
|
-// cond := `1 = 1`
|
|
|
-// pars := make([]interface{}, 0)
|
|
|
-// // 合同编号/客户姓名/销售
|
|
|
-// if req.Keyword != "" {
|
|
|
-// kw := "%" + req.Keyword + "%"
|
|
|
-// cond += ` AND b.company_name LIKE ? OR a.seller_name LIKE ?`
|
|
|
-// pars = append(pars, kw, kw)
|
|
|
-// }
|
|
|
-// if req.SellGroupId > 0 {
|
|
|
-// cond += ` AND a.seller_group_id = ?`
|
|
|
-// pars = append(pars, req.SellGroupId)
|
|
|
-// }
|
|
|
-// // 套餐筛选
|
|
|
-// if req.ServiceType != 0 {
|
|
|
-// registerIds, e := fms.GetContractRegisterIdsByTempId(req.ServiceType)
|
|
|
-// if e != nil {
|
|
|
-// resp.FailMsg("获取失败", "获取合同登记IDs失败, Err: "+e.Error(), c)
|
|
|
-// return
|
|
|
-// }
|
|
|
-// if len(registerIds) > 0 {
|
|
|
-// cond += ` AND b.contract_register_id IN ?`
|
|
|
-// pars = append(pars, registerIds)
|
|
|
-// } else {
|
|
|
-// cond += ` AND 1 = 2`
|
|
|
-// }
|
|
|
-// }
|
|
|
-// // 开票到款日期
|
|
|
-// if req.TimeType > 0 && req.StartDate != "" && req.EndDate != "" {
|
|
|
-// st := fmt.Sprint(req.StartDate, " 00:00:00")
|
|
|
-// ed := fmt.Sprint(req.EndDate, " 23:59:59")
|
|
|
-// cond += ` AND a.invoice_type = ? AND (a.invoice_time BETWEEN ? AND ?)`
|
|
|
-// pars = append(pars, req.TimeType, st, ed)
|
|
|
-// }
|
|
|
-// // 已开票
|
|
|
-// if req.HasInvoice == 1 && req.HasPayment == 0 {
|
|
|
-// cond += ` AND a.invoice_type = 1`
|
|
|
-// }
|
|
|
-// // 已到款
|
|
|
-// if req.HasInvoice == 0 && req.HasPayment == 1 {
|
|
|
-// cond += ` AND a.invoice_type = 2`
|
|
|
-// }
|
|
|
-//
|
|
|
-// page := new(base.Page)
|
|
|
-// page.SetPageSize(req.PageSize)
|
|
|
-// page.SetCurrent(req.Current)
|
|
|
-// page.AddOrderItem(base.OrderItem{Column: "a.create_time", Asc: false})
|
|
|
-// page.AddOrderItem(base.OrderItem{Column: "b.contract_register_id", Asc: true})
|
|
|
-// if req.IsExport == 1 {
|
|
|
-// page.SetPageSize(10000)
|
|
|
-// page.SetCurrent(1)
|
|
|
-// }
|
|
|
-//
|
|
|
-// list, allRegisterIds, e := fms.GetInvoicePaymentCensusPageList(page, cond, pars)
|
|
|
-// if e != nil {
|
|
|
-// resp.FailMsg("获取失败", "获取商品到款统计列表失败, Err: "+e.Error(), c)
|
|
|
-// return
|
|
|
-// }
|
|
|
-// total := int64(len(allRegisterIds))
|
|
|
-// registerIds := make([]int, 0)
|
|
|
-// for i := range list {
|
|
|
-// registerIds = append(registerIds, list[i].ContractRegisterId)
|
|
|
-// }
|
|
|
-//
|
|
|
-// results := new(fms.InvoicePaymentCensusResp)
|
|
|
-// if len(registerIds) > 0 {
|
|
|
-// // 获取开票到款列表
|
|
|
-// ivCond := `contract_register_id IN ?`
|
|
|
-// ivPars := make([]interface{}, 0)
|
|
|
-// ivPars = append(ivPars, registerIds)
|
|
|
-// iv := new(fms.ContractInvoice)
|
|
|
-// invoiceList, e := iv.List(ivCond, ivPars, "")
|
|
|
-// if e != nil {
|
|
|
-// resp.FailMsg("获取失败", "获取开票到款列表失败, Err: "+e.Error(), c)
|
|
|
-// return
|
|
|
-// }
|
|
|
-// // 取出开票、到款
|
|
|
-// invoiceMap := make(map[int][]*fms.ContractInvoice, 0)
|
|
|
-// paymentMap := make(map[int][]*fms.ContractInvoice, 0)
|
|
|
-// paymentIds := make([]int, 0)
|
|
|
-// for i := range invoiceList {
|
|
|
-// if invoiceMap[invoiceList[i].ContractRegisterId] == nil {
|
|
|
-// invoiceMap[invoiceList[i].ContractRegisterId] = make([]*fms.ContractInvoice, 0)
|
|
|
-// }
|
|
|
-// if paymentMap[invoiceList[i].ContractRegisterId] == nil {
|
|
|
-// paymentMap[invoiceList[i].ContractRegisterId] = make([]*fms.ContractInvoice, 0)
|
|
|
-// }
|
|
|
-// if invoiceList[i].InvoiceType == fms.ContractInvoiceTypeMake {
|
|
|
-// invoiceMap[invoiceList[i].ContractRegisterId] = append(invoiceMap[invoiceList[i].ContractRegisterId], invoiceList[i])
|
|
|
-// }
|
|
|
-// if invoiceList[i].InvoiceType == fms.ContractInvoiceTypePay {
|
|
|
-// paymentMap[invoiceList[i].ContractRegisterId] = append(paymentMap[invoiceList[i].ContractRegisterId], invoiceList[i])
|
|
|
-// paymentIds = append(paymentIds, invoiceList[i].ContractInvoiceId)
|
|
|
-// }
|
|
|
-// }
|
|
|
-//
|
|
|
-// // 合同套餐
|
|
|
-// contractServiceCond := `contract_register_id IN ?`
|
|
|
-// contractServicePars := make([]interface{}, 0)
|
|
|
-// contractServicePars = append(contractServicePars, registerIds)
|
|
|
-// contractServiceOB := new(fms.ContractService)
|
|
|
-// contractServiceList, e := contractServiceOB.List(contractServiceCond, contractServicePars)
|
|
|
-// if e != nil {
|
|
|
-// resp.FailMsg("获取失败", "获取合同套餐列表失败, Err:"+e.Error(), c)
|
|
|
-// 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)
|
|
|
-// }
|
|
|
-//
|
|
|
-// // 到款套餐分配
|
|
|
-// 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 {
|
|
|
-// resp.FailMsg("获取失败", "获取到款套餐分配列表失败, Err:"+e.Error(), c)
|
|
|
-// return
|
|
|
-// }
|
|
|
-// for i := range serviceAmountList {
|
|
|
-// if serviceAmountMap[serviceAmountList[i].ContractRegisterId] == nil {
|
|
|
-// serviceAmountMap[serviceAmountList[i].ContractRegisterId] = make([]*fms.ContractPaymentServiceAmount, 0)
|
|
|
-// }
|
|
|
-// serviceAmountMap[serviceAmountList[i].ContractRegisterId] = append(serviceAmountMap[serviceAmountList[i].ContractRegisterId], serviceAmountList[i])
|
|
|
-// }
|
|
|
-// }
|
|
|
-//
|
|
|
-// // 整合响应数据
|
|
|
-// respList := make([]*fms.InvoicePaymentCensusItem, 0)
|
|
|
-// for i := range list {
|
|
|
-// v := new(fms.InvoicePaymentCensusItem)
|
|
|
-// v.ContractRegisterId = list[i].ContractRegisterId
|
|
|
-// v.CompanyName = list[i].CompanyName
|
|
|
-// v.NewCompany = list[i].NewCompany
|
|
|
-// v.StartDate = list[i].StartDate.Format(utils.FormatDate)
|
|
|
-// v.EndDate = list[i].EndDate.Format(utils.FormatDate)
|
|
|
-// svList := servicesNameMap[list[i].ContractRegisterId]
|
|
|
-// v.ServicesName = strings.Join(svList, ",")
|
|
|
-// // 格式化(合并)开票到款数据
|
|
|
-// v.InvoicePaymentList = fmsService.MergeInvoiceList2InvoicePaymentCensusInfo(invoiceMap[list[i].ContractRegisterId], paymentMap[list[i].ContractRegisterId],
|
|
|
-// contractServiceMap[list[i].ContractRegisterId], serviceAmountMap[list[i].ContractRegisterId])
|
|
|
-// respList = append(respList, v)
|
|
|
-// }
|
|
|
-//
|
|
|
-// // 开票到款金额合计(换算后)
|
|
|
-// amountTotalCond := `contract_register_id IN ?`
|
|
|
-// amountTotalPars := make([]interface{}, 0)
|
|
|
-// amountTotalPars = append(amountTotalPars, allRegisterIds)
|
|
|
-// amountTotalList, e := fms.GetContractInvoiceAmountTotal(amountTotalCond, amountTotalPars)
|
|
|
-// if e != nil {
|
|
|
-// resp.FailMsg("获取失败", "获取开票到款金额合计失败, Err:"+e.Error(), c)
|
|
|
-// return
|
|
|
-// }
|
|
|
-// amountTotalMap := make(map[int]float64)
|
|
|
-// for i := range amountTotalList {
|
|
|
-// amountTotalMap[amountTotalList[i].InvoiceType] = amountTotalList[i].TotalAmount
|
|
|
-// }
|
|
|
-// invoiceTotal, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", amountTotalMap[fms.ContractInvoiceTypeMake]), 64)
|
|
|
-// paymentTotal, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", amountTotalMap[fms.ContractInvoiceTypePay]), 64)
|
|
|
-//
|
|
|
-// // 分币种金额统计
|
|
|
-// currencyOB := new(fms.CurrencyUnit)
|
|
|
-// currencyCond := `enable = 1`
|
|
|
-// currencyPars := make([]interface{}, 0)
|
|
|
-// currencyList, e := currencyOB.List(currencyCond, currencyPars)
|
|
|
-// if e != nil {
|
|
|
-// resp.FailMsg("获取失败", "获取货币列表失败, Err: "+e.Error(), c)
|
|
|
-// return
|
|
|
-// }
|
|
|
-// unitMap := make(map[string]string)
|
|
|
-// invoiceCurrencyTotals := make([]*fms.InvoiceListCurrencyTotal, 0)
|
|
|
-// paymentCurrencyTotals := make([]*fms.InvoiceListCurrencyTotal, 0)
|
|
|
-// for i := range currencyList {
|
|
|
-// unitMap[currencyList[i].Code] = currencyList[i].UnitName
|
|
|
-// invoiceCurrencyTotals = append(invoiceCurrencyTotals, &fms.InvoiceListCurrencyTotal{
|
|
|
-// Name: currencyList[i].Name,
|
|
|
-// UnitName: currencyList[i].UnitName,
|
|
|
-// Code: currencyList[i].Code,
|
|
|
-// FlagImg: currencyList[i].FlagImg,
|
|
|
-// })
|
|
|
-// paymentCurrencyTotals = append(paymentCurrencyTotals, &fms.InvoiceListCurrencyTotal{
|
|
|
-// Name: currencyList[i].Name,
|
|
|
-// UnitName: currencyList[i].UnitName,
|
|
|
-// Code: currencyList[i].Code,
|
|
|
-// FlagImg: currencyList[i].FlagImg,
|
|
|
-// })
|
|
|
-// }
|
|
|
-// sumList, e := fms.GetInvoiceListCurrencySum(amountTotalCond, amountTotalPars, "currency_unit, invoice_type")
|
|
|
-// if e != nil {
|
|
|
-// resp.FailMsg("获取失败", "获取商品到款统计货币合计金额失败, Err: "+e.Error(), c)
|
|
|
-// return
|
|
|
-// }
|
|
|
-// invoiceSumMap := make(map[string]float64)
|
|
|
-// paymentSumMap := make(map[string]float64)
|
|
|
-// for i := range sumList {
|
|
|
-// if sumList[i].InvoiceType == fms.ContractInvoiceTypeMake {
|
|
|
-// invoiceSumMap[sumList[i].CurrencyUnit] = sumList[i].OriginAmountTotal
|
|
|
-// continue
|
|
|
-// }
|
|
|
-// if sumList[i].InvoiceType == fms.ContractInvoiceTypePay {
|
|
|
-// paymentSumMap[sumList[i].CurrencyUnit] = sumList[i].OriginAmountTotal
|
|
|
-// }
|
|
|
-// }
|
|
|
-// for i := range invoiceCurrencyTotals {
|
|
|
-// a, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", invoiceSumMap[invoiceCurrencyTotals[i].Code]), 64)
|
|
|
-// invoiceCurrencyTotals[i].Amount = a
|
|
|
-// }
|
|
|
-// for i := range paymentCurrencyTotals {
|
|
|
-// a, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", paymentSumMap[paymentCurrencyTotals[i].Code]), 64)
|
|
|
-// paymentCurrencyTotals[i].Amount = a
|
|
|
-// }
|
|
|
-//
|
|
|
-// results.DataList = respList
|
|
|
-// results.InvoiceTotal = invoiceTotal
|
|
|
-// results.PaymentTotal = paymentTotal
|
|
|
-// results.InvoiceCurrencyTotal = invoiceCurrencyTotals
|
|
|
-// results.PaymentCurrencyTotal = paymentCurrencyTotals
|
|
|
-// }
|
|
|
-//
|
|
|
-// // 是否导出
|
|
|
-// if req.IsExport == 1 {
|
|
|
-// ExportInvoicePaymentCensusList(c, results)
|
|
|
-// return
|
|
|
-// }
|
|
|
-// page.SetTotal(total)
|
|
|
-// baseData := new(base.BaseData)
|
|
|
-// baseData.SetPage(page)
|
|
|
-// baseData.SetList(results)
|
|
|
-// resp.OkData("获取成功", baseData, c)
|
|
|
-//}
|
|
|
-
|
|
|
// ExportInvoicePaymentCensusList 导出商品到款统计列表
|
|
|
func ExportInvoicePaymentCensusList(c *gin.Context, results *fms.InvoicePaymentCensusResp) {
|
|
|
list := results.DataList
|
|
@@ -331,7 +79,7 @@ func ExportInvoicePaymentCensusList(c *gin.Context, results *fms.InvoicePaymentC
|
|
|
sheet.AddRow()
|
|
|
|
|
|
// 表头, 套餐动态获取
|
|
|
- rowTitle := []string{"序号", "客户名称", "代付方", "是否新客户", "合同有效期", "开票日", "开票金额", "到款日", "到款金额", "付款方式", "销售",
|
|
|
+ rowTitle := []string{"序号", "客户名称", "代付方", "是否新客户", "合同起始日期", "合同结束日期", "开票日", "开票金额", "开票换算金额(元)", "到款日", "到款金额", "到款换算金额(元)", "付款方式", "销售",
|
|
|
"销售组别", "销售类型"}
|
|
|
serviceTempCond := ``
|
|
|
serviceTempPars := make([]interface{}, 0)
|
|
@@ -440,14 +188,20 @@ func ExportInvoicePaymentCensusList(c *gin.Context, results *fms.InvoicePaymentC
|
|
|
// 合同有效期
|
|
|
colD := dataRow.AddCell()
|
|
|
colD.VMerge = mergeRowNum
|
|
|
- colD.SetString(fmt.Sprint(v.StartDate, "至", v.EndDate))
|
|
|
+ colD.SetString(v.StartDate)
|
|
|
+
|
|
|
+ colF := dataRow.AddCell()
|
|
|
+ colF.VMerge = mergeRowNum
|
|
|
+ colF.SetString(v.EndDate)
|
|
|
// 开票到款信息
|
|
|
for k2, v2 := range v.InvoicePaymentList {
|
|
|
rowData := []string{
|
|
|
v2.InvoiceDate, // 开票日
|
|
|
- fmt.Sprint(v2.InvoiceAmount), // 开票金额
|
|
|
+ fmt.Sprint(v2.InvoiceOriginAmount), // 开票金额
|
|
|
+ fmt.Sprint(v2.InvoiceAmount), // 开票换算金额
|
|
|
v2.PaymentDate, // 到款日
|
|
|
- fmt.Sprint(v2.PaymentAmount), // 到款金额
|
|
|
+ fmt.Sprint(v2.PaymentOriginAmount), // 到款金额
|
|
|
+ fmt.Sprint(v2.PaymentAmount), // 到款换算金额
|
|
|
fms.ContractPaymentPayTypeNameMap[v2.PayType], // 付款方式
|
|
|
v2.SellerName, // 销售
|
|
|
v2.SellerGroupName, // 组别
|
|
@@ -781,6 +535,7 @@ func (ct *InvoicePaymentController) List(c *gin.Context) {
|
|
|
v.InvoiceId = summaryList[i].InvoiceId
|
|
|
v.InvoiceDate = utils.TimeTransferString(utils.FormatDate, summaryList[i].InvoiceDate)
|
|
|
v.InvoiceAmount = summaryList[i].InvoiceAmount
|
|
|
+ v.InvoiceOriginAmount = summaryList[i].InvoiceOriginAmount
|
|
|
v.SellerId = summaryList[i].SellerId
|
|
|
v.SellerName = summaryList[i].SellerName
|
|
|
v.SellerGroupId = summaryList[i].SellerGroupId
|
|
@@ -791,6 +546,7 @@ func (ct *InvoicePaymentController) List(c *gin.Context) {
|
|
|
v.PaymentId = summaryList[i].PaymentId
|
|
|
v.PaymentDate = utils.TimeTransferString(utils.FormatDate, summaryList[i].PaymentDate)
|
|
|
v.PaymentAmount = summaryList[i].PaymentAmount
|
|
|
+ v.PaymentOriginAmount = summaryList[i].PaymentOriginAmount
|
|
|
v.PayType = summaryList[i].PayType
|
|
|
// 套餐到款分配
|
|
|
svaList := make([]*fms.ContractPaymentServiceAmountItem, 0)
|
|
@@ -1055,9 +811,6 @@ func getCensusIncomeListV2(ch chan models.CensusIncomeChartResp, req fms.IncomeL
|
|
|
historyCond += ` AND new_company = 0 `
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
var latestTime time.Time
|
|
|
|
|
|
invoiceItem, err := fms.GetLatestIncome(cond, pars)
|
|
@@ -1108,7 +861,7 @@ func getCensusIncomeListV2(ch chan models.CensusIncomeChartResp, req fms.IncomeL
|
|
|
req.StartDate = "2023-04"
|
|
|
req.EndDate = "3023-04"
|
|
|
} else {
|
|
|
- startDateTime,_ := time.Parse(utils.FormatMonth, req.StartDate)
|
|
|
+ startDateTime, _ := time.Parse(utils.FormatMonth, req.StartDate)
|
|
|
if startDateTime.Before(historyTime) {
|
|
|
req.StartDate = "2023-04"
|
|
|
}
|
|
@@ -1318,7 +1071,7 @@ func getCensusIncomeListV2(ch chan models.CensusIncomeChartResp, req fms.IncomeL
|
|
|
partAccumulate = 0.0
|
|
|
}
|
|
|
}
|
|
|
- } else if endDateTime.Before(historyTime) || endDateTime.Equal(historyTime) {
|
|
|
+ } else if endDateTime.Before(historyTime) || endDateTime.Equal(historyTime) {
|
|
|
//全部走旧查询
|
|
|
//fmt.Println("旧查询")
|
|
|
//fmt.Println("st:",st)
|
|
@@ -1850,26 +1603,28 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
if v.ServiceProductId == 1 {
|
|
|
if serviceAmount, ok := serviceAmountMap[v.ContractRegisterId]; ok {
|
|
|
item := fms.NotInvoicePaymentSummaryItem{
|
|
|
- NotInvoicedAmountTotal: serviceAmount[2].ServiceAmount,
|
|
|
- ServiceProductId: 2,
|
|
|
+ NotInvoicedAmountOriginTotal: serviceAmount[2].ServiceAmount,
|
|
|
+ ServiceProductId: 2,
|
|
|
}
|
|
|
item.SellerId = v.SellerId
|
|
|
item.SellerName = v.SellerName
|
|
|
item.RaiSellerId = v.RaiSellerId
|
|
|
item.RaiSellerName = v.RaiSellerName
|
|
|
+ item.RMBRate = v.RMBRate
|
|
|
|
|
|
NotInvoiceSummaryMap[v.ContractRegisterId] = append(NotInvoiceSummaryMap[v.ContractRegisterId], &item)
|
|
|
}
|
|
|
} else {
|
|
|
if serviceAmount, ok := serviceAmountMap[v.ContractRegisterId]; ok {
|
|
|
item := fms.NotInvoicePaymentSummaryItem{
|
|
|
- NotInvoicedAmountTotal: serviceAmount[1].ServiceAmount,
|
|
|
- ServiceProductId: 1,
|
|
|
+ NotInvoicedAmountOriginTotal: serviceAmount[1].ServiceAmount,
|
|
|
+ ServiceProductId: 1,
|
|
|
}
|
|
|
item.SellerId = v.SellerId
|
|
|
item.SellerName = v.SellerName
|
|
|
item.RaiSellerId = v.RaiSellerId
|
|
|
item.RaiSellerName = v.RaiSellerName
|
|
|
+ item.RMBRate = v.RMBRate
|
|
|
|
|
|
NotInvoiceSummaryMap[v.ContractRegisterId] = append(NotInvoiceSummaryMap[v.ContractRegisterId], &item)
|
|
|
}
|
|
@@ -1879,23 +1634,26 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
// 套餐是ficc权益都有的,但是都没进行过开票到款,补充两个套餐的内容,直接用合同金额当作未开票金额即可
|
|
|
if serviceAmount, ok := serviceAmountMap[v.ContractRegisterId]; ok {
|
|
|
item1 := fms.NotInvoicePaymentSummaryItem{
|
|
|
- NotInvoicedAmountTotal: serviceAmount[2].ServiceAmount,
|
|
|
- ServiceProductId: 2,
|
|
|
+ NotInvoicedAmountOriginTotal: serviceAmount[2].ServiceAmount,
|
|
|
+ ServiceProductId: 2,
|
|
|
}
|
|
|
item1.SellerId = v.SellerId
|
|
|
item1.SellerName = v.SellerName
|
|
|
item1.RaiSellerId = v.RaiSellerId
|
|
|
item1.RaiSellerName = v.RaiSellerName
|
|
|
+ item1.RMBRate = v.RMBRate
|
|
|
+
|
|
|
NotInvoiceSummaryMap[v.ContractRegisterId] = append(NotInvoiceSummaryMap[v.ContractRegisterId], &item1)
|
|
|
|
|
|
item2 := fms.NotInvoicePaymentSummaryItem{
|
|
|
- NotInvoicedAmountTotal: serviceAmount[1].ServiceAmount,
|
|
|
- ServiceProductId: 1,
|
|
|
+ NotInvoicedAmountOriginTotal: serviceAmount[1].ServiceAmount,
|
|
|
+ ServiceProductId: 1,
|
|
|
}
|
|
|
item2.SellerId = v.SellerId
|
|
|
item2.SellerName = v.SellerName
|
|
|
item2.RaiSellerId = v.RaiSellerId
|
|
|
item2.RaiSellerName = v.RaiSellerName
|
|
|
+ item2.RMBRate = v.RMBRate
|
|
|
|
|
|
NotInvoiceSummaryMap[v.ContractRegisterId] = append(NotInvoiceSummaryMap[v.ContractRegisterId], &item2)
|
|
|
}
|
|
@@ -1903,13 +1661,14 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
// 只有ficc套餐,但是未进行过开票到款,手动补充信息
|
|
|
if serviceAmount, ok := serviceAmountMap[v.ContractRegisterId]; ok {
|
|
|
item1 := fms.NotInvoicePaymentSummaryItem{
|
|
|
- NotInvoicedAmountTotal: serviceAmount[1].ServiceAmount,
|
|
|
- ServiceProductId: 1,
|
|
|
+ NotInvoicedAmountOriginTotal: serviceAmount[1].ServiceAmount,
|
|
|
+ ServiceProductId: 1,
|
|
|
}
|
|
|
item1.SellerId = v.SellerId
|
|
|
item1.SellerName = v.SellerName
|
|
|
item1.RaiSellerId = v.RaiSellerId
|
|
|
item1.RaiSellerName = v.RaiSellerName
|
|
|
+ item1.RMBRate = v.RMBRate
|
|
|
|
|
|
NotInvoiceSummaryMap[v.ContractRegisterId] = append(NotInvoiceSummaryMap[v.ContractRegisterId], &item1)
|
|
|
}
|
|
@@ -1917,13 +1676,14 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
// 只有权益套餐,但是未进行过开票到款,手动补充信息
|
|
|
if serviceAmount, ok := serviceAmountMap[v.ContractRegisterId]; ok {
|
|
|
item2 := fms.NotInvoicePaymentSummaryItem{
|
|
|
- NotInvoicedAmountTotal: serviceAmount[2].ServiceAmount,
|
|
|
- ServiceProductId: 2,
|
|
|
+ NotInvoicedAmountOriginTotal: serviceAmount[2].ServiceAmount,
|
|
|
+ ServiceProductId: 2,
|
|
|
}
|
|
|
item2.SellerId = v.SellerId
|
|
|
item2.SellerName = v.SellerName
|
|
|
item2.RaiSellerId = v.RaiSellerId
|
|
|
item2.RaiSellerName = v.RaiSellerName
|
|
|
+ item2.RMBRate = v.RMBRate
|
|
|
|
|
|
NotInvoiceSummaryMap[v.ContractRegisterId] = append(NotInvoiceSummaryMap[v.ContractRegisterId], &item2)
|
|
|
}
|
|
@@ -1956,34 +1716,37 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
}
|
|
|
|
|
|
for registerId, list := range NotInvoiceSummaryMap {
|
|
|
- for _, v := range list {
|
|
|
+ for i, v := range list {
|
|
|
// fmt.Println("v.ContractRegisterId", v.ContractRegisterId)
|
|
|
// fmt.Println("v.ServiceProductId:", v.ServiceProductId)
|
|
|
// fmt.Println("v.NotInvoicedAmountTotal:", v.NotInvoicedAmountTotal)
|
|
|
// fmt.Println("registerId:",registerId)
|
|
|
- if v.NotInvoicedAmountTotal == 0 {
|
|
|
+ if v.NotInvoicedAmountOriginTotal == 0 {
|
|
|
if v.InvoiceAmountTotal > v.PaymentAmountTotal {
|
|
|
// 有合规登记或补录合同过的,有serviceAmountMap信息
|
|
|
if _, ok := serviceAmountMap[registerId]; ok {
|
|
|
if _, ok2 := serviceAmountMap[registerId][v.ServiceProductId]; ok2 {
|
|
|
- v.NotInvoicedAmountTotal = serviceAmountMap[registerId][v.ServiceProductId].ServiceAmount - v.InvoiceAmountTotal
|
|
|
+ list[i].NotInvoicedAmountOriginTotal = serviceAmountMap[registerId][v.ServiceProductId].ServiceAmount - v.InvoiceAmountTotal
|
|
|
}
|
|
|
} else {
|
|
|
// 预登记没有合同套餐金额信息
|
|
|
- v.NotInvoicedAmountTotal = v.InvoiceAmountTotal - v.PaymentAmountTotal
|
|
|
+ list[i].NotInvoicedAmountOriginTotal = v.InvoiceAmountTotal - v.PaymentAmountTotal
|
|
|
}
|
|
|
} else {
|
|
|
if _, ok := serviceAmountMap[registerId]; ok {
|
|
|
// 有合规登记或补录合同过的,有serviceAmountMap信息
|
|
|
if _, ok2 := serviceAmountMap[registerId][v.ServiceProductId]; ok2 {
|
|
|
- v.NotInvoicedAmountTotal = serviceAmountMap[registerId][v.ServiceProductId].ServiceAmount - v.PaymentAmountTotal
|
|
|
+ list[i].NotInvoicedAmountOriginTotal = serviceAmountMap[registerId][v.ServiceProductId].ServiceAmount - v.PaymentAmountTotal
|
|
|
}
|
|
|
} else {
|
|
|
// 预登记没有合同套餐金额信息
|
|
|
- v.NotInvoicedAmountTotal = v.PaymentAmountTotal - v.InvoiceAmountTotal
|
|
|
+ list[i].NotInvoicedAmountOriginTotal = v.PaymentAmountTotal - v.InvoiceAmountTotal
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ list[i].NotInvoicedAmountTotal = v.NotInvoicedAmountOriginTotal / v.RMBRate
|
|
|
+ list[i].NotInvoicedAmountTotal, _ = strconv.ParseFloat(fmt.Sprintf("%.2f", v.NotInvoicedAmountTotal), 64)
|
|
|
+
|
|
|
// 补充销售信息
|
|
|
if v.SellerId > 0 && v.RaiSellerId > 0 {
|
|
|
if v.ServiceProductId == 1 {
|
|
@@ -2363,6 +2126,7 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
v.InvoiceId = summaryList[i].InvoiceId
|
|
|
v.InvoiceDate = utils.TimeTransferString(utils.FormatDate, summaryList[i].InvoiceDate)
|
|
|
v.InvoiceAmount = summaryList[i].InvoiceAmount
|
|
|
+ v.InvoiceOriginAmount = summaryList[i].InvoiceOriginAmount
|
|
|
v.SellerId = summaryList[i].SellerId
|
|
|
v.SellerName = summaryList[i].SellerName
|
|
|
v.SellerGroupId = summaryList[i].SellerGroupId
|
|
@@ -2374,7 +2138,9 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
v.PaymentId = summaryList[i].PaymentId
|
|
|
v.PaymentDate = utils.TimeTransferString(utils.FormatDate, summaryList[i].PaymentDate)
|
|
|
v.PaymentAmount = summaryList[i].PaymentAmount
|
|
|
+ v.PaymentOriginAmount = summaryList[i].PaymentOriginAmount
|
|
|
v.PayType = summaryList[i].PayType
|
|
|
+ v.NotPaymentOriginAmount = summaryList[i].InvoiceOriginAmount - summaryList[i].PaymentOriginAmount
|
|
|
v.NotPaymentAmount = summaryList[i].InvoiceAmount - summaryList[i].PaymentAmount
|
|
|
v.ServiceProductId = summaryList[i].ServiceProductId
|
|
|
v.UnitName = unitMap[summaryList[i].CurrencyUnit]
|
|
@@ -2579,7 +2345,7 @@ func ExportNotInvoiceCensusList(c *gin.Context, results *fms.NotInvoicePaymentCe
|
|
|
sheet.AddRow()
|
|
|
|
|
|
// 数据表头
|
|
|
- rowTitle := []string{"序号", "客户名称", "合同编号", "合同开始时间", "合同结束时间", "合同金额", "金额单位", "未开票金额", "套餐类型", "销售", "销售组别", "销售类型"}
|
|
|
+ rowTitle := []string{"序号", "客户名称", "合同编号", "合同开始时间", "合同结束时间", "合同金额", "金额单位", "未开票金额", "未开票换算金额", "套餐类型", "销售", "销售组别", "销售类型"}
|
|
|
titleRow := sheet.AddRow()
|
|
|
for i := range rowTitle {
|
|
|
v := titleRow.AddCell()
|
|
@@ -2686,7 +2452,8 @@ func ExportNotInvoiceCensusList(c *gin.Context, results *fms.NotInvoicePaymentCe
|
|
|
|
|
|
} else {
|
|
|
|
|
|
- dataRow.AddCell().SetString(fmt.Sprintf("%.2f", item.NotInvoicedAmountTotal)) // 未开票金额
|
|
|
+ dataRow.AddCell().SetString(fmt.Sprintf("%.2f", item.NotInvoicedAmountOriginTotal)) // 未开票金额
|
|
|
+ dataRow.AddCell().SetString(fmt.Sprintf("%.2f", item.NotInvoicedAmountTotal)) // 未开票换算金额
|
|
|
|
|
|
dataRow.AddCell().SetString(serviceProductIdMap[item.ServiceProductId]) // 套餐类型
|
|
|
|
|
@@ -2709,7 +2476,9 @@ func ExportNotInvoiceCensusList(c *gin.Context, results *fms.NotInvoicePaymentCe
|
|
|
dataRow.AddCell().SetString(item.SellerType) // 销售类型
|
|
|
}
|
|
|
} else if item.SellerId > 0 && item.RaiSellerId == 0 {
|
|
|
- item.SellerGroupName = sellerMap[item.SellerId].GroupName
|
|
|
+ if seller, ok := sellerMap[item.SellerId]; ok {
|
|
|
+ item.SellerGroupName = seller.GroupName
|
|
|
+ }
|
|
|
if seller, ok := sellerMap[item.SellerId]; ok {
|
|
|
item.SellerType = sellerTypeMap[seller.DepartmentId]
|
|
|
}
|
|
@@ -2782,7 +2551,7 @@ func ExportNotPaymentCensusList(c *gin.Context, results *fms.NotInvoicePaymentCe
|
|
|
sheet.AddRow()
|
|
|
|
|
|
// 表头, 套餐动态获取
|
|
|
- rowTitle := []string{"序号", "客户名称", "合同编号", "合同有效期", "套餐类型", "开票日", "开票金额", "金额单位", "开票销售",
|
|
|
+ rowTitle := []string{"序号", "客户名称", "合同编号", "合同起始日期", "合同结束日期", "套餐类型", "开票日", "开票金额", "金额单位", "开票换算金额", "开票销售",
|
|
|
"销售组别", "销售类型"}
|
|
|
|
|
|
titleRow := sheet.AddRow()
|
|
@@ -2817,7 +2586,11 @@ func ExportNotPaymentCensusList(c *gin.Context, results *fms.NotInvoicePaymentCe
|
|
|
// 合同有效期
|
|
|
colD := dataRow.AddCell()
|
|
|
colD.VMerge = mergeRowNum
|
|
|
- colD.SetString(fmt.Sprint(v.StartDate, "至", v.EndDate))
|
|
|
+ colD.SetString(v.StartDate)
|
|
|
+
|
|
|
+ colF := dataRow.AddCell()
|
|
|
+ colF.VMerge = mergeRowNum
|
|
|
+ colF.SetString(v.EndDate)
|
|
|
// 套餐类型
|
|
|
colE := dataRow.AddCell()
|
|
|
colE.VMerge = mergeRowNum
|
|
@@ -2826,12 +2599,13 @@ func ExportNotPaymentCensusList(c *gin.Context, results *fms.NotInvoicePaymentCe
|
|
|
// 开票到款信息
|
|
|
for _, v2 := range v.InvoicePaymentList {
|
|
|
rowData := []string{
|
|
|
- v2.InvoiceDate, // 开票日
|
|
|
- fmt.Sprint(v2.NotPaymentAmount), // 开票金额
|
|
|
- v2.UnitName, // 开票金额
|
|
|
- v2.SellerName, // 销售
|
|
|
- v2.SellerGroupName, // 组别
|
|
|
- sellerTypeMap[v2.SellerType], // 销售类型
|
|
|
+ v2.InvoiceDate, // 开票日
|
|
|
+ fmt.Sprint(v2.NotPaymentOriginAmount), // 开票原始金额
|
|
|
+ v2.UnitName, // 开票金额
|
|
|
+ fmt.Sprint(v2.NotPaymentAmount), // 开票换算金额
|
|
|
+ v2.SellerName, // 销售
|
|
|
+ v2.SellerGroupName, // 组别
|
|
|
+ sellerTypeMap[v2.SellerType], // 销售类型
|
|
|
}
|
|
|
for i := range rowData {
|
|
|
dataRow.AddCell().SetString(rowData[i])
|