소스 검색

Merge branch 'feature/dashboard'

* feature/dashboard:
  优化错误提示
boweniac 3 달 전
부모
커밋
ce3a0ca55b
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 4 2
      internal/logic/dashboard/get_wxs_logic.go

+ 4 - 2
internal/logic/dashboard/get_wxs_logic.go

@@ -112,8 +112,9 @@ func (l *GetWxsLogic) GetWxs(req *types.WxReq) (resp *types.WxResp, err error) {
 			Where(predicatesH...).
 			Where(predicatesH...).
 			Order(ent.Desc(usagestatistichour.FieldAddtime)).
 			Order(ent.Desc(usagestatistichour.FieldAddtime)).
 			First(l.ctx)
 			First(l.ctx)
+		l.Infof("----------------l.svcCtx.DB.UsageStatisticHour 1--------------: %+v", err)
 		if err != nil {
 		if err != nil {
-			return nil, err
+			return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
 		}
 		}
 		if lastHourData == nil {
 		if lastHourData == nil {
 			return nil, err
 			return nil, err
@@ -126,8 +127,9 @@ func (l *GetWxsLogic) GetWxs(req *types.WxReq) (resp *types.WxResp, err error) {
 		predicatesHour = append(predicatesHour, usagestatistichour.BotIDIn(wxIds...))
 		predicatesHour = append(predicatesHour, usagestatistichour.BotIDIn(wxIds...))
 		predicatesHour = append(predicatesHour, usagestatistichour.Addtime(lastHourData.Addtime))
 		predicatesHour = append(predicatesHour, usagestatistichour.Addtime(lastHourData.Addtime))
 		usageStatisticHour, err := l.svcCtx.DB.UsageStatisticHour.Query().Where(predicatesHour...).Page(l.ctx, req.Page, req.PageSize)
 		usageStatisticHour, err := l.svcCtx.DB.UsageStatisticHour.Query().Where(predicatesHour...).Page(l.ctx, req.Page, req.PageSize)
+		l.Infof("----------------l.svcCtx.DB.UsageStatisticHour 2--------------: %+v", err)
 		if err != nil {
 		if err != nil {
-			return nil, err
+			return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
 		}
 		}
 		if usageStatisticHour != nil && usageStatisticHour.List != nil {
 		if usageStatisticHour != nil && usageStatisticHour.List != nil {
 			resp.Data.Total = usageStatisticHour.PageDetails.Total
 			resp.Data.Total = usageStatisticHour.PageDetails.Total