diff --git a/business/jxstore/cms/store.go b/business/jxstore/cms/store.go index b70e3df78..60d17f211 100644 --- a/business/jxstore/cms/store.go +++ b/business/jxstore/cms/store.go @@ -1125,6 +1125,7 @@ func ExportShopsHealthInfo(ctx *jxcontext.Context, vendorIDs, storeIDs []int, is "sku_num", "target_jiedan", "is_healthy", + "bad_order_rate", }, } excelBin = excel.Obj2Excel([]*excel.Obj2ExcelSheetConfig{excelConf}) diff --git a/business/jxstore/misc/misc.go b/business/jxstore/misc/misc.go index dedcd155e..6520ce94f 100644 --- a/business/jxstore/misc/misc.go +++ b/business/jxstore/misc/misc.go @@ -98,6 +98,6 @@ func StartDailyWork() { func doDailyWork() { globals.SugarLogger.Debug("doDailyWork") cms.EnableHaveRestStores(jxcontext.AdminCtx, true, true) - cms.CurVendorSync.FullSyncStoresSkus(jxcontext.AdminCtx, dao.GetDB(), []int{model.VendorIDJD}, nil, true, true) - cms.CurVendorSync.SyncStoresSkus(jxcontext.AdminCtx, dao.GetDB(), []int{model.VendorIDEBAI, model.VendorIDMTWM}, nil, nil, false, true, true) + // cms.CurVendorSync.FullSyncStoresSkus(jxcontext.AdminCtx, dao.GetDB(), []int{model.VendorIDJD}, nil, true, true) + cms.CurVendorSync.SyncStoresSkus(jxcontext.AdminCtx, dao.GetDB(), []int{model.VendorIDJD, model.VendorIDEBAI, model.VendorIDMTWM}, nil, nil, false, true, true) }