|
@@ -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 {
|