From feb11e81852d79f99f44ca79c47c1f2f7c56707a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E5=AE=97=E6=A5=A0?= Date: Wed, 30 Mar 2022 14:33:54 +0800 Subject: [PATCH] 11 --- business/partner/delivery/fn/store.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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), } }