京西折扣

This commit is contained in:
苏尹岚
2020-08-11 17:36:18 +08:00
parent f35854dd5e
commit 80f6238d83
3 changed files with 85 additions and 9 deletions

View File

@@ -1523,21 +1523,71 @@ func ChangeJxPriceByDiscountAct(ctx *jxcontext.Context) {
if len(actStoreSkus) == 0 {
continue
}
var (
storeIDs, skuIDs []int
)
for _, actStoreSku := range actStoreSkus {
storeIDs = append(storeIDs, actStoreSku.StoreID)
skuIDs = append(skuIDs, actStoreSku.SkuID)
}
storeSkus, _ := dao.GetStoresSkusInfo(db, storeIDs, skuIDs)
for _, _ = range storeSkus {
storeSkus, _ := dao.GetStoresSkusInfo(db, []int{actStoreSku.StoreID}, []int{actStoreSku.SkuID})
if len(storeSkus) == 0 {
continue
}
var (
storeSku = storeSkus[0]
shouldStockOut = utils.Float64TwoInt64(math.Ceil(float64(storeSku.Stock) / float64(60))) //每个时间点应出货 = 总库存/60 = N
actualStockOut int64 //每个时间点实际出货 = C
pricePercentage = 0.02 //每次涨跌值为 原价的 2%即原价100每个时间点降价为2涨价也为2
actualPricePercentage float64
minJxPrice int64
)
if storeSku.Stock == 0 {
continue
}
actualStockOut, err = dao.GetOrderStoreSkusCount(db, actStoreSku.StoreID, actStoreSku.SkuID, time.Now().Add(-time.Minute*10), time.Now())
dao.Begin(db)
defer func() {
if r := recover(); r != nil || err != nil {
dao.Rollback(db)
if r != nil {
panic(r)
}
}
}()
//第一档时间内
if (time.Now().Hour() >= 10 && time.Now().Hour() < 20) || (time.Now().Hour() == 20 && time.Now().Minute() < 1) {
if actStoreSku.TrendType == model.TrendTypeUp {
actualPricePercentage = float64(actStoreSku.OriginalPrice) * (float64(1) + pricePercentage)
} else if actStoreSku.TrendType == model.TrendTypeDown {
actualPricePercentage = float64(actStoreSku.OriginalPrice) * (float64(1) - pricePercentage)
} else {
actualPricePercentage = 1
}
if utils.Float64TwoInt64(float64(storeSku.JxPrice)*actualPricePercentage) >= actStoreSku.OriginalPrice {
storeSku.JxPrice = int(actStoreSku.OriginalPrice)
}
//判断活动的折扣类型是最低价还是最低折扣
if act.DiscountType == model.ActDiscountTypePrice {
minJxPrice = int64(act.DiscountValue1)
} else if act.DiscountType == model.ActDiscountTypePercentage {
minJxPrice = actStoreSku.OriginalPrice * int64(act.DiscountValue1) / 100
}
if utils.Float64TwoInt64(float64(storeSku.JxPrice)*actualPricePercentage) <= minJxPrice {
storeSku.JxPrice = int(minJxPrice)
}
if _, err = dao.UpdateEntity(db, storeSku, "JxPrice"); err != nil {
dao.Rollback(db)
}
//C >= 2N 涨价趋势,最高涨价到无折扣
if actualStockOut >= 2*shouldStockOut {
actStoreSku.TrendType = model.TrendTypeUp
} else if actualStockOut < shouldStockOut/2 { //C <= N/2 降价趋势,最低降价到设置到最低折扣
actStoreSku.TrendType = model.TrendTypeDown
} else {
actStoreSku.TrendType = model.TrendTypeNothing
}
if _, err = dao.UpdateEntity(db, actStoreSku, "TrendType"); err != nil {
dao.Rollback(db)
}
} else { //第二档时间内
}
dao.Commit(db)
}
}
}