ziwen 1 year ago
parent
commit
1848998c2b
1 changed files with 21 additions and 16 deletions
  1. 21 16
      controller/census/invoice_payment.go

+ 21 - 16
controller/census/invoice_payment.go

@@ -1719,28 +1719,33 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
 				//fmt.Println("len(NotInvoiceSummaryMap[v.RegisterId]):", len(NotInvoiceSummaryMap[v.ContractRegisterId]))
 				if (v.ProductIds == "1,2" || v.ProductIds == "2,1") && len(NotInvoiceSummaryMap[v.ContractRegisterId]) == 1 {
 					if v.ServiceProductId == 1 {
-						item := fms.NotInvoicePaymentSummaryItem{
-							NotInvoicedAmountTotal: serviceAmountMap[v.ContractRegisterId][2].ServiceAmount,
-							ServiceProductId:       2,
+						if serviceAmount, ok := serviceAmountMap[v.ContractRegisterId]; ok {
+							item := fms.NotInvoicePaymentSummaryItem{
+								NotInvoicedAmountTotal: serviceAmount[2].ServiceAmount,
+								ServiceProductId:       2,
+							}
+							item.SellerId = v.SellerId
+							item.SellerName = v.SellerName
+							item.RaiSellerId = v.RaiSellerId
+							item.RaiSellerName = v.RaiSellerName
+
+							NotInvoiceSummaryMap[v.ContractRegisterId] = append(NotInvoiceSummaryMap[v.ContractRegisterId], &item)
 						}
-						item.SellerId = v.SellerId
-						item.SellerName = v.SellerName
-						item.RaiSellerId = v.RaiSellerId
-						item.RaiSellerName = v.RaiSellerName
 
-						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,
+							}
+							item.SellerId = v.SellerId
+							item.SellerName = v.SellerName
+							item.RaiSellerId = v.RaiSellerId
+							item.RaiSellerName = v.RaiSellerName
 
-						item := fms.NotInvoicePaymentSummaryItem{
-							NotInvoicedAmountTotal: serviceAmountMap[v.ContractRegisterId][1].ServiceAmount,
-							ServiceProductId:       1,
+							NotInvoiceSummaryMap[v.ContractRegisterId] = append(NotInvoiceSummaryMap[v.ContractRegisterId], &item)
 						}
-						item.SellerId = v.SellerId
-						item.SellerName = v.SellerName
-						item.RaiSellerId = v.RaiSellerId
-						item.RaiSellerName = v.RaiSellerName
 
-						NotInvoiceSummaryMap[v.ContractRegisterId] = append(NotInvoiceSummaryMap[v.ContractRegisterId], &item)
 					}
 				} else if (v.ProductIds == "1,2" || v.ProductIds == "2,1") && len(NotInvoiceSummaryMap[v.ContractRegisterId]) == 0 {
 					if serviceAmount, ok := serviceAmountMap[v.ContractRegisterId]; ok {