作者 唐旭辉

@@ -162,8 +162,9 @@ func (subscriber *OrderLogSubscriber) HandleEvent(domainEvent coreDomain.DomainE @@ -162,8 +162,9 @@ func (subscriber *OrderLogSubscriber) HandleEvent(domainEvent coreDomain.DomainE
162 } 162 }
163 for i := range currentEvent.Goods { 163 for i := range currentEvent.Goods {
164 m := domain.OrderLogDescript{ 164 m := domain.OrderLogDescript{
165 - Title: "支付分红",  
166 - Item: currentEvent.Goods[i].GoodName, 165 + GoodId: currentEvent.Goods[i].Id,
  166 + Title: "支付分红",
  167 + Item: currentEvent.Goods[i].GoodName,
167 Action: []string{ 168 Action: []string{
168 fmt.Sprintf(`支付分红"¥%.2f"`, currentEvent.Goods[i].GetCurrentPartnerBonus()), 169 fmt.Sprintf(`支付分红"¥%.2f"`, currentEvent.Goods[i].GetCurrentPartnerBonus()),
169 }, 170 },