|
@@ -781,7 +781,9 @@ func (ct *InvoicePaymentController) List(c *gin.Context) {
|
|
v.SellerName = summaryList[i].SellerName
|
|
v.SellerName = summaryList[i].SellerName
|
|
v.SellerGroupId = summaryList[i].SellerGroupId
|
|
v.SellerGroupId = summaryList[i].SellerGroupId
|
|
v.SellerGroupName = summaryList[i].SellerGroupName
|
|
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.PaymentId = summaryList[i].PaymentId
|
|
v.PaymentDate = utils.TimeTransferString(utils.FormatDate, summaryList[i].PaymentDate)
|
|
v.PaymentDate = utils.TimeTransferString(utils.FormatDate, summaryList[i].PaymentDate)
|
|
v.PaymentAmount = summaryList[i].PaymentAmount
|
|
v.PaymentAmount = summaryList[i].PaymentAmount
|