|
@@ -2140,6 +2140,7 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
for i := range registerList {
|
|
|
queryRegisterIds = append(queryRegisterIds, registerList[i].ContractRegisterId)
|
|
|
}
|
|
|
+ fmt.Println("queryRegisterIds:",queryRegisterIds)
|
|
|
|
|
|
//fmt.Println("queryRegisterIds:",queryRegisterIds)
|
|
|
results := new(fms.NotInvoicePaymentCensusResp)
|
|
@@ -3064,7 +3065,7 @@ func (ct *InvoicePaymentController) NotInvoiceList2(c *gin.Context) {
|
|
|
for i := range sellerList {
|
|
|
sellerMap[sellerList[i].SellerId] = sellerList[i]
|
|
|
}
|
|
|
-
|
|
|
+ sellerTypeMap := map[int]string{2: "FICC销售", 5: "权益销售"}
|
|
|
// 货币列表
|
|
|
currencyOB := new(fms.CurrencyUnit)
|
|
|
currencyCond := `enable = 1`
|
|
@@ -3082,12 +3083,25 @@ func (ct *InvoicePaymentController) NotInvoiceList2(c *gin.Context) {
|
|
|
for registerId, list := range NotInvoiceSummaryMap {
|
|
|
for _, v := range list {
|
|
|
v.NotInvoicedAmountTotal = serviceAmountMap[registerId][v.ServiceProductId].ServiceAmount - v.InvoiceAmountTotal
|
|
|
- if v.ServiceProductId == 1 {
|
|
|
+
|
|
|
+ if v.SellerId > 0 && v.RaiSellerId > 0 {
|
|
|
+ if v.ServiceProductId == 1 {
|
|
|
+ v.SellerGroupId = sellerMap[v.SellerId].GroupId
|
|
|
+ v.SellerGroupName = sellerMap[v.SellerId].GroupName
|
|
|
+ v.SellerType = sellerTypeMap[sellerMap[v.SellerId].DepartmentId]
|
|
|
+ } else {
|
|
|
+ v.RaiSellerGroupId = sellerMap[v.RaiSellerId].GroupId
|
|
|
+ v.RaiSellerGroupName = sellerMap[v.RaiSellerId].GroupName
|
|
|
+ v.SellerType = sellerTypeMap[sellerMap[v.RaiSellerId].DepartmentId]
|
|
|
+ }
|
|
|
+ } else if v.SellerId > 0 && v.RaiSellerId == 0{
|
|
|
v.SellerGroupId = sellerMap[v.SellerId].GroupId
|
|
|
v.SellerGroupName = sellerMap[v.SellerId].GroupName
|
|
|
- } else {
|
|
|
+ v.SellerType = sellerTypeMap[sellerMap[v.SellerId].DepartmentId]
|
|
|
+ }else if v.SellerId == 0 && v.RaiSellerId > 0 {
|
|
|
v.RaiSellerGroupId = sellerMap[v.RaiSellerId].GroupId
|
|
|
v.RaiSellerGroupName = sellerMap[v.RaiSellerId].GroupName
|
|
|
+ v.SellerType = sellerTypeMap[sellerMap[v.RaiSellerId].DepartmentId]
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -3107,7 +3121,12 @@ func (ct *InvoicePaymentController) NotInvoiceList2(c *gin.Context) {
|
|
|
v.ContractAmount = registerList[i].ContractAmount
|
|
|
v.UnitName = unitMap[registerList[i].CurrencyUnit]
|
|
|
v.ProductIds = registerList[i].ProductIds
|
|
|
- v.NotInvoiceTotal = registerList[i].ContractAmount - registerList[i].InvoicedAmount
|
|
|
+ if registerList[i].InvoicedAmount != 0 {
|
|
|
+ v.NotInvoiceTotal = registerList[i].ContractAmount - registerList[i].InvoicedAmount
|
|
|
+ } else {
|
|
|
+ v.NotInvoiceTotal = registerList[i].ContractAmount - registerList[i].PaymentAmount
|
|
|
+ }
|
|
|
+
|
|
|
v.NotInvoiceList = NotInvoiceSummaryMap[summaryList[i].RegisterId]
|
|
|
respList = append(respList, v)
|
|
|
}
|