This commit is contained in:
邹宗楠
2024-03-18 10:56:19 +08:00
parent ed62403cc5
commit 4c0503bf06
2 changed files with 6 additions and 6 deletions

View File

@@ -1858,8 +1858,10 @@ func UpdateStoreVendorMap(ctx *jxcontext.Context, db *dao.DaoDB, storeID, vendor
syncStatus |= model.SyncFlagStoreName
address = payload["address"].(string)
// 这个字段暂存美团门店地址
storeMap.YbStorePrefix = address
dao.UpdateEntity(db, storeMap, "YbStorePrefix")
if storeMap.VendorID == model.VendorIDMTWM {
storeMap.YbStorePrefix = address
dao.UpdateEntity(db, storeMap, "YbStorePrefix")
}
}
if err == nil {