diff --git a/business/partner/delivery/fn/store.go b/business/partner/delivery/fn/store.go index 0aaa01fc2..83dea6668 100644 --- a/business/partner/delivery/fn/store.go +++ b/business/partner/delivery/fn/store.go @@ -82,14 +82,14 @@ func (c *DeliveryHandler) GetStore(ctx *jxcontext.Context, storeID int, vendorSt if err == nil { storeDetail = &dao.StoreDetail2{ Store: model.Store{ - Name: shopInfo.ChainStoreName, + Name: shopInfo.Name, Tel1: shopInfo.ContactPhone, Address: shopInfo.Address, Lng: jxutils.StandardCoordinate2Int(utils.Str2Float64(shopInfo.Longitude)), Lat: jxutils.StandardCoordinate2Int(utils.Str2Float64(shopInfo.Latitude)), }, VendorID: model.VendorIDFengNiao, - VendorStoreID: shopInfo.ChainStoreCode, + VendorStoreID: shopInfo.ChainStoreID, CourierStatus: shopStatus2JX(shopInfo.Status), } }