From 3347707c8f31ef898a4d959bf860240a547ed78e 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:51:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=95=B0=E6=8D=AE=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- business/partner/delivery/fn/store.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/business/partner/delivery/fn/store.go b/business/partner/delivery/fn/store.go index 83dea6668..b07543249 100644 --- a/business/partner/delivery/fn/store.go +++ b/business/partner/delivery/fn/store.go @@ -85,11 +85,11 @@ func (c *DeliveryHandler) GetStore(ctx *jxcontext.Context, storeID int, vendorSt Name: shopInfo.Name, Tel1: shopInfo.ContactPhone, Address: shopInfo.Address, - Lng: jxutils.StandardCoordinate2Int(utils.Str2Float64(shopInfo.Longitude)), - Lat: jxutils.StandardCoordinate2Int(utils.Str2Float64(shopInfo.Latitude)), + Lng: jxutils.StandardCoordinate2Int(shopInfo.Longitude), + Lat: jxutils.StandardCoordinate2Int(shopInfo.Latitude), }, VendorID: model.VendorIDFengNiao, - VendorStoreID: shopInfo.ChainStoreID, + VendorStoreID: string(shopInfo.ChainStoreID), CourierStatus: shopStatus2JX(shopInfo.Status), } }