测试折扣2
This commit is contained in:
@@ -1515,7 +1515,6 @@ func ChangeJxPriceByDiscountAct(ctx *jxcontext.Context) {
|
|||||||
pageSize = 9999
|
pageSize = 9999
|
||||||
)
|
)
|
||||||
globals.SugarLogger.Debug("ChangeJxPriceByDiscountAct begin:")
|
globals.SugarLogger.Debug("ChangeJxPriceByDiscountAct begin:")
|
||||||
fmt.Println("111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111")
|
|
||||||
page, err := dao.QueryActs(db, 0, 0, pageSize, -1, "", model.VendorIDJX, []int{model.YES}, []int{model.ActSkuDiscount}, nil, 0, nil, 0, utils.ZeroTimeValue, utils.ZeroTimeValue, time.Now().AddDate(0, -3, 0), time.Now())
|
page, err := dao.QueryActs(db, 0, 0, pageSize, -1, "", model.VendorIDJX, []int{model.YES}, []int{model.ActSkuDiscount}, nil, 0, nil, 0, utils.ZeroTimeValue, utils.ZeroTimeValue, time.Now().AddDate(0, -3, 0), time.Now())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
@@ -1523,7 +1522,6 @@ func ChangeJxPriceByDiscountAct(ctx *jxcontext.Context) {
|
|||||||
if len(page.Data) == 0 {
|
if len(page.Data) == 0 {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
fmt.Println("122222222222222222222222222222222222222222222222222222222222222222222222222222", utils.Format4Output(page.Data, false))
|
|
||||||
for _, act := range page.Data {
|
for _, act := range page.Data {
|
||||||
_, actStoreSkus, _ := dao.GetActStoreSkuVendorList(db, act.ID, nil, nil, nil, "", 0, pageSize)
|
_, actStoreSkus, _ := dao.GetActStoreSkuVendorList(db, act.ID, nil, nil, nil, "", 0, pageSize)
|
||||||
if len(actStoreSkus) == 0 {
|
if len(actStoreSkus) == 0 {
|
||||||
@@ -1553,7 +1551,6 @@ func ChangeJxPriceByDiscountAct(ctx *jxcontext.Context) {
|
|||||||
if storeSku.Stock == 0 {
|
if storeSku.Stock == 0 {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
fmt.Println("33333333333333333333333333333333333333333333333333333333333333", utils.Format4Output(actStoreSku, false))
|
|
||||||
actualStockOut, err = dao.GetOrderStoreSkusCount(db, actStoreSku.StoreID, actStoreSku.SkuID, time.Now().Add(-time.Minute*10), time.Now())
|
actualStockOut, err = dao.GetOrderStoreSkusCount(db, actStoreSku.StoreID, actStoreSku.SkuID, time.Now().Add(-time.Minute*10), time.Now())
|
||||||
dao.Begin(db)
|
dao.Begin(db)
|
||||||
defer func() {
|
defer func() {
|
||||||
@@ -1564,6 +1561,8 @@ func ChangeJxPriceByDiscountAct(ctx *jxcontext.Context) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
fmt.Println("33333333333333333333333333333333333333333333333333333333333333", actualStockOut)
|
||||||
|
fmt.Println("4444444444444444444444444444444444444444444444444444444444", shouldStockOut)
|
||||||
//第一档时间内
|
//第一档时间内
|
||||||
if (time.Now().Hour() >= 10 && time.Now().Hour() < 20) || (time.Now().Hour() == 20 && time.Now().Minute() < 1) {
|
if (time.Now().Hour() >= 10 && time.Now().Hour() < 20) || (time.Now().Hour() == 20 && time.Now().Minute() < 1) {
|
||||||
pricePercentage = 0.02
|
pricePercentage = 0.02
|
||||||
@@ -1598,6 +1597,7 @@ func ChangeJxPriceByDiscountAct(ctx *jxcontext.Context) {
|
|||||||
actStoreSku.TrendType = model.TrendTypeNothing
|
actStoreSku.TrendType = model.TrendTypeNothing
|
||||||
}
|
}
|
||||||
actStoreSku.TrendPrcie = int(actualPrice)
|
actStoreSku.TrendPrcie = int(actualPrice)
|
||||||
|
fmt.Println("555555555555555555555555555555555555555555555555555555555", utils.Format4Output(actStoreSku, false))
|
||||||
if _, err = dao.UpdateEntity(db, actStoreSku, "TrendType", "TrendPrcie"); err != nil {
|
if _, err = dao.UpdateEntity(db, actStoreSku, "TrendType", "TrendPrcie"); err != nil {
|
||||||
dao.Rollback(db)
|
dao.Rollback(db)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user