diff --git a/business/partner/purchase/jx/order_afs.go b/business/partner/purchase/jx/order_afs.go index 730aa90ea..746726e50 100644 --- a/business/partner/purchase/jx/order_afs.go +++ b/business/partner/purchase/jx/order_afs.go @@ -177,5 +177,11 @@ func isJxShop(appID string) bool { } func (c *PurchaseHandler) GetOrderAfsInfo(ctx *jxcontext.Context, vendorOrderID, afsOrderID string) (orderAfsInfo *partner.OrderAfsInfo, err error) { + orderAfsInfo = &partner.OrderAfsInfo{} + + if order, err := partner.CurOrderManager.LoadOrder(vendorOrderID, model.VendorIDJX); err == nil { + orderAfsInfo.AfsTotalShopMoney = order.TotalShopMoney + } + orderAfsInfo.VendorOrderID = vendorOrderID return orderAfsInfo, err }