This commit is contained in:
gazebo
2019-03-29 12:35:42 +08:00
parent 719579c110
commit 2cfd02ef3b

View File

@@ -402,6 +402,7 @@ func UpdateStore(ctx *jxcontext.Context, storeID int, payload map[string]interfa
// } // }
// valid["districtCode"] = api.AutonaviAPI.GetCoordinateDistrictCode(lng, lat) // valid["districtCode"] = api.AutonaviAPI.GetCoordinateDistrictCode(lng, lat)
// } // }
globals.SugarLogger.Debugf("UpdateStore track:%s, valid:%s", ctx.GetTrackInfo(), utils.Format4Output(valid, true))
if len(valid) > 0 { if len(valid) > 0 {
dao.Begin(db) dao.Begin(db)
defer func() { defer func() {
@@ -414,9 +415,12 @@ func UpdateStore(ctx *jxcontext.Context, storeID int, payload map[string]interfa
}, model.FieldSyncStatus, syncStatus) }, model.FieldSyncStatus, syncStatus)
if err = err2; err == nil { if err = err2; err == nil {
dao.Commit(db) dao.Commit(db)
globals.SugarLogger.Debugf("UpdateStore track:%s, before call SyncStore", ctx.GetTrackInfo())
_, err = CurVendorSync.SyncStore(ctx, db, -1, store.ID, false, userName) _, err = CurVendorSync.SyncStore(ctx, db, -1, store.ID, false, userName)
} }
} }
} else {
globals.SugarLogger.Debugf("UpdateStore track:%s, store:%s", ctx.GetTrackInfo(), utils.Format4Output(store, true))
} }
return num, err return num, err
} }