|
@@ -1035,17 +1035,17 @@ func getCensusIncomeListV2(ch chan models.CensusIncomeChartResp, req fms.IncomeL
|
|
|
|
|
|
if req.SellerIds != "" {
|
|
|
sellerIds := strings.Split(req.SellerIds, ",")
|
|
|
- cond += ` AND (a.seller_id in ? )`
|
|
|
- historyCond += ` AND (seller_id in ? )`
|
|
|
+ cond += ` AND (a.seller_id in ? ) `
|
|
|
+ historyCond += ` AND (seller_id in ? ) `
|
|
|
pars = append(pars, sellerIds)
|
|
|
historyPars = append(historyPars, sellerIds)
|
|
|
}
|
|
|
if req.CompanyType == 1 {
|
|
|
cond += ` AND b.contract_type = 1 `
|
|
|
- historyCond += ` AND new_company = 1`
|
|
|
+ historyCond += ` AND new_company = 1 `
|
|
|
} else if req.CompanyType == 2 {
|
|
|
cond += ` AND b.contract_type IN (2,3,4) `
|
|
|
- historyCond += ` AND new_company = 0`
|
|
|
+ historyCond += ` AND new_company = 0 `
|
|
|
}
|
|
|
|
|
|
var latestTime time.Time
|
|
@@ -1731,7 +1731,7 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
//fmt.Println("ContractRegisterId:", v.ContractRegisterId)
|
|
|
//fmt.Println("ServiceProductId:", v.ServiceProductId)
|
|
|
//fmt.Println("RegisterId:", v.RegisterId)
|
|
|
- //fmt.Println("len(NotInvoiceSummaryMap[v.RegisterId]):", len(NotInvoiceSummaryMap[v.ContractRegisterId]))
|
|
|
+ fmt.Println("len(NotInvoiceSummaryMap[v.RegisterId]):", len(NotInvoiceSummaryMap[v.ContractRegisterId]))
|
|
|
if (v.ProductIds == "1,2" || v.ProductIds == "2,1") && len(NotInvoiceSummaryMap[v.ContractRegisterId]) == 1 {
|
|
|
// 套餐是ficc权益都有的,但是只有一个套餐有过开票到款,手动补充另一个套餐的信息
|
|
|
if v.ServiceProductId == 1 {
|
|
@@ -1848,11 +1848,28 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
//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.InvoiceAmountTotal > v.PaymentAmountTotal {
|
|
|
- v.NotInvoicedAmountTotal = serviceAmountMap[registerId][v.ServiceProductId].ServiceAmount - v.InvoiceAmountTotal
|
|
|
+ // 有合规登记或补录合同过的,有serviceAmountMap信息
|
|
|
+ if _,ok := serviceAmountMap[registerId]; ok {
|
|
|
+ if _,ok2 := serviceAmountMap[registerId][v.ServiceProductId]; ok2{
|
|
|
+ v.NotInvoicedAmountTotal = serviceAmountMap[registerId][v.ServiceProductId].ServiceAmount - v.InvoiceAmountTotal
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ // 预登记没有合同套餐金额信息
|
|
|
+ v.NotInvoicedAmountTotal = v.InvoiceAmountTotal - v.PaymentAmountTotal
|
|
|
+ }
|
|
|
} else {
|
|
|
- v.NotInvoicedAmountTotal = serviceAmountMap[registerId][v.ServiceProductId].ServiceAmount - v.PaymentAmountTotal
|
|
|
+ if _,ok := serviceAmountMap[registerId]; ok {
|
|
|
+ // 有合规登记或补录合同过的,有serviceAmountMap信息
|
|
|
+ if _,ok2 := serviceAmountMap[registerId][v.ServiceProductId]; ok2{
|
|
|
+ v.NotInvoicedAmountTotal = serviceAmountMap[registerId][v.ServiceProductId].ServiceAmount - v.PaymentAmountTotal
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ // 预登记没有合同套餐金额信息
|
|
|
+ v.NotInvoicedAmountTotal = v.PaymentAmountTotal - v.InvoiceAmountTotal
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
// 补充销售信息
|