ziwen 1 年之前
父節點
當前提交
c6ae768692
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      controller/census/invoice_payment.go

+ 3 - 1
controller/census/invoice_payment.go

@@ -781,7 +781,9 @@ func (ct *InvoicePaymentController) List(c *gin.Context) {
 				v.SellerName = summaryList[i].SellerName
 				v.SellerGroupId = summaryList[i].SellerGroupId
 				v.SellerGroupName = summaryList[i].SellerGroupName
-				v.SellerType = sellerTypeMap[sellerMap[summaryList[i].SellerId].DepartmentId]
+				if seller, ok := sellerMap[summaryList[i].SellerId]; ok{
+					v.SellerType = sellerTypeMap[seller.DepartmentId]
+				}
 				v.PaymentId = summaryList[i].PaymentId
 				v.PaymentDate = utils.TimeTransferString(utils.FormatDate, summaryList[i].PaymentDate)
 				v.PaymentAmount = summaryList[i].PaymentAmount