This commit is contained in:
邹宗楠
2023-08-04 14:09:13 +08:00
parent 28372ed752
commit 1ab610a281
2 changed files with 16 additions and 20 deletions

View File

@@ -287,20 +287,14 @@ func Init() {
globals.SugarLogger.Debugf("===============2") globals.SugarLogger.Debugf("===============2")
syncStoreSkuTao() syncStoreSkuTao()
}, []string{ }, []string{
"10:05:00", "14:12:00",
"12:55:00", "14:15:00",
"13:55:00", "14:17:00",
"16:05:00", "14:19:00",
"18:05:00", "14:21:00",
"20:05:00", "14:23:00",
"22:05:00", "14:25:00",
"00:05:00", "14:28:00",
"01:05:00",
"02:05:00",
"04:05:00",
"06:05:00",
"07:05:00",
"08:05:00",
}) })
} }
@@ -892,23 +886,25 @@ var beijin = []int{
// syncStoreSkuTao 同步商品到淘鲜达 // syncStoreSkuTao 同步商品到淘鲜达
func syncStoreSkuTao() { func syncStoreSkuTao() {
syncFlag := 0 //syncFlag := 0
globals.SugarLogger.Debugf("=====================================3 %s", utils.Format4Output(beijin, false)) globals.SugarLogger.Debugf("=====================================3 %s", utils.Format4Output(beijin, false))
task := tasksch.NewParallelTask("syncStoreSkuTao ", nil, jxcontext.AdminCtx, task := tasksch.NewParallelTask("syncStoreSkuTao ", nil, jxcontext.AdminCtx,
func(task *tasksch.ParallelTask, batchItemList []interface{}, params ...interface{}) (retVal interface{}, err error) { func(task *tasksch.ParallelTask, batchItemList []interface{}, params ...interface{}) (retVal interface{}, err error) {
step := batchItemList[0].(int) step := batchItemList[0].(int)
errList := errlist.New() errList := errlist.New()
db := dao.GetDB() //db := dao.GetDB()
switch step { switch step {
case 0: case 0:
fmt.Println("111111111111111111111111111")
if err := ddmsg.SendUserMessage(dingdingapi.MsgTyeText, "2452A93EEB9111EC9B06525400E86DC0", "淘鲜达消息:", utils.Format4Output(beijin[syncLen:syncLen+5], false)); err != nil { if err := ddmsg.SendUserMessage(dingdingapi.MsgTyeText, "2452A93EEB9111EC9B06525400E86DC0", "淘鲜达消息:", utils.Format4Output(beijin[syncLen:syncLen+5], false)); err != nil {
globals.SugarLogger.Debugf("SendUserMessage := %s", utils.Format4Output(err, false)) globals.SugarLogger.Debugf("SendUserMessage := %s", utils.Format4Output(err, false))
} }
enterprise_msg.SendUserMessage("18981810340", "淘鲜达同步消息", utils.Format4Output(beijin[syncLen:syncLen+5], false), utils.Format4Output(beijin[syncLen:syncLen+5], false)) enterprise_msg.SendUserMessage("18981810340", "淘鲜达同步消息", utils.Format4Output(beijin[syncLen:syncLen+5], false), utils.Format4Output(beijin[syncLen:syncLen+5], false))
globals.SugarLogger.Debugf("===============4") //globals.SugarLogger.Debugf("===============4")
_, err = cms.CurVendorSync.SyncStoresSkus2(jxcontext.AdminCtx, nil, 0, db, []int{model.VendorIDTaoVegetable}, beijin[syncLen:syncLen+5], false, nil, nil, syncFlag, true, true) //_, err = cms.CurVendorSync.SyncStoresSkus2(jxcontext.AdminCtx, nil, 0, db, []int{model.VendorIDTaoVegetable}, beijin[syncLen:syncLen+5], false, nil, nil, syncFlag, true, true)
errList.AddErr(err) //errList.AddErr(err)
case 1: case 1:
fmt.Println("222222222222222222222222")
errList.AddErr(err) errList.AddErr(err)
SaveImportantTaskID(TaskNameSyncStoreSku, SpecialTaskID) SaveImportantTaskID(TaskNameSyncStoreSku, SpecialTaskID)
} }

View File

@@ -15,4 +15,4 @@ func TestStartOrEndOpStore(t *testing.T) {
func TestIssny(t *testing.T) { func TestIssny(t *testing.T) {
cms.CurVendorSync.SyncStore2(jxcontext.AdminCtx, dao.GetDB(), []int{model.VendorIDMTWM, model.VendorIDJD, model.VendorIDEBAI}, nil, true, true) cms.CurVendorSync.SyncStore2(jxcontext.AdminCtx, dao.GetDB(), []int{model.VendorIDMTWM, model.VendorIDJD, model.VendorIDEBAI}, nil, true, true)
} }