This commit is contained in:
邹宗楠
2025-05-06 15:52:04 +08:00
parent 90111dd57e
commit 3e3f909cff
5 changed files with 55 additions and 8 deletions

View File

@@ -9,6 +9,7 @@ import (
"git.rosy.net.cn/jx-callback/business/jxstore/cms"
"git.rosy.net.cn/jx-callback/business/jxstore/permission"
"git.rosy.net.cn/jx-callback/business/partner/delivery"
"git.rosy.net.cn/jx-callback/globals"
"strings"
"time"
@@ -550,6 +551,15 @@ func (c *OrderController) StaleIndexInfo() {
return retVal, "", fmt.Errorf("于该用户%s,暂无门店信息", ctx.GetUserName())
}
if params.Ctx.GetUserID() == "68F2F1F41BF211F0A561525400E86DC0" {
globals.SugarLogger.Debugf("---------timeList:= %s,%s", utils.Time2Str(timeList[0]), utils.Time2Str(timeList[1]))
globals.SugarLogger.Debugf("---------timeList:= %s,%s", utils.Time2Str(timeList[0]), utils.Time2Str(timeList[1]))
globals.SugarLogger.Debugf("---------StoreID:= %d", params.StoreID)
globals.SugarLogger.Debugf("---------brandIds:= %s", utils.Format4Output(brandIds, false))
globals.SugarLogger.Debugf("---------vendors:= %s", utils.Format4Output(vendors, false))
globals.SugarLogger.Debugf("---------dataList:= %s", utils.Format4Output(dataList, false))
}
retVal, err = orderman.FixedOrderManager.GetStoresOrderSaleInfo2(params.Ctx, timeList[0], timeList[1], params.StoreID, brandIds, vendors, dataList)
return retVal, "", err
})