copy暂时屏蔽一段

This commit is contained in:
suyl
2020-02-04 23:06:10 +08:00
parent 2e4900f4d4
commit 21c4ead973

View File

@@ -1604,27 +1604,27 @@ func CopyStoreSkus(ctx *jxcontext.Context, fromStoreID int, toStoreIDs []int, co
}
num += num2
//上方insert会无视目标门店中未关注的商品以前关注后来取消关注所以这里批量删一下
sql2 := `
DELETE FROM store_sku_bind a
WHERE a.store_id = ? AND a.sku_id IN (
SELECT b.sku_id FROM (
SELECT store_id,sku_id,count(*)
FROM store_sku_bind
WHERE store_id = ?
GROUP BY 1,2
HAVING count(*) > 1)b
)
AND a.deleted_at <> ?
`
sqlParams2 := []interface{}{
toStoreID, toStoreID, utils.DefaultTimeValue,
}
_, err = dao.ExecuteSQL(db, sql2, sqlParams2)
if err != nil {
errList.AddErr(err)
dao.Rollback(db)
break
}
// sql2 := `
// DELETE FROM store_sku_bind a
// WHERE a.store_id = ? AND a.sku_id IN (
// SELECT b.sku_id FROM (
// SELECT store_id,sku_id,count(*)
// FROM store_sku_bind
// WHERE store_id = ?
// GROUP BY 1,2
// HAVING count(*) > 1)b
// )
// AND a.deleted_at <> ?
// `
// sqlParams2 := []interface{}{
// toStoreID, toStoreID, utils.DefaultTimeValue,
// }
// _, err = dao.ExecuteSQL(db, sql2, sqlParams2)
// if err != nil {
// errList.AddErr(err)
// dao.Rollback(db)
// break
// }
globals.SugarLogger.Debugf("CopyStoreSkus fromStoreID:%d, toStoreID:%d, trackInfo:%s num3:%d", fromStoreID, toStoreID, ctx.GetTrackInfo(), num2)
dao.Commit(db)
}