Browse Source

Merge branch 'yhg_250102' into debug

jimmyyem 2 months ago
parent
commit
046e7e3173

+ 10 - 8
internal/logic/whatsapp/delete_whatsapp_logic.go

@@ -3,13 +3,13 @@ package whatsapp
 import (
 import (
 	"context"
 	"context"
 
 
-    "wechat-api/ent/whatsapp"
-    "wechat-api/internal/svc"
-    "wechat-api/internal/types"
-    "wechat-api/internal/utils/dberrorhandler"
+	"wechat-api/ent/whatsapp"
+	"wechat-api/internal/svc"
+	"wechat-api/internal/types"
+	"wechat-api/internal/utils/dberrorhandler"
 
 
-    "github.com/suyuan32/simple-admin-common/msg/errormsg"
-    "github.com/zeromicro/go-zero/core/logx"
+	"github.com/suyuan32/simple-admin-common/msg/errormsg"
+	"github.com/zeromicro/go-zero/core/logx"
 )
 )
 
 
 type DeleteWhatsappLogic struct {
 type DeleteWhatsappLogic struct {
@@ -29,9 +29,11 @@ func NewDeleteWhatsappLogic(ctx context.Context, svcCtx *svc.ServiceContext) *De
 func (l *DeleteWhatsappLogic) DeleteWhatsapp(req *types.IDsReq) (*types.BaseMsgResp, error) {
 func (l *DeleteWhatsappLogic) DeleteWhatsapp(req *types.IDsReq) (*types.BaseMsgResp, error) {
 	_, err := l.svcCtx.DB.Whatsapp.Delete().Where(whatsapp.IDIn(req.Ids...)).Exec(l.ctx)
 	_, err := l.svcCtx.DB.Whatsapp.Delete().Where(whatsapp.IDIn(req.Ids...)).Exec(l.ctx)
 
 
-    if err != nil {
+	if err != nil {
 		return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
 		return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
 	}
 	}
 
 
-    return &types.BaseMsgResp{Msg: errormsg.DeleteSuccess}, nil
+	_ = l.svcCtx.Rds.Del(l.ctx, "wa_info")
+
+	return &types.BaseMsgResp{Msg: errormsg.DeleteSuccess}, nil
 }
 }

+ 1 - 1
internal/logic/whatsapp/get_whatsapp_by_id_logic.go

@@ -41,7 +41,7 @@ func (l *GetWhatsappByIdLogic) GetWhatsappById(req *types.IDReq) (*types.Whatsap
 	}
 	}
 
 
 	var agent types.AgentInfo
 	var agent types.AgentInfo
-	l.Logger.Infof("agent=%v data=%v\n", data.Edges.Agent, data)
+	//l.Logger.Infof("agent=%v data=%v\n", data.Edges.Agent, data)
 	if data.Edges.Agent != nil {
 	if data.Edges.Agent != nil {
 		agent = types.AgentInfo{
 		agent = types.AgentInfo{
 			BaseIDInfo: types.BaseIDInfo{
 			BaseIDInfo: types.BaseIDInfo{

+ 1 - 1
internal/logic/whatsapp/get_whatsapp_list_logic.go

@@ -58,7 +58,7 @@ func (l *GetWhatsappListLogic) GetWhatsappList(req *types.WhatsappListReq) (*typ
 		}
 		}
 
 
 		agent := types.AgentInfo{}
 		agent := types.AgentInfo{}
-		l.Logger.Infof("v.agent=%v v=%v\n", v.Edges.Agent, v)
+		//l.Logger.Infof("v.agent=%v v=%v\n", v.Edges.Agent, v)
 		if v.Edges.Agent != nil {
 		if v.Edges.Agent != nil {
 			agent = types.AgentInfo{
 			agent = types.AgentInfo{
 				BaseIDInfo: types.BaseIDInfo{
 				BaseIDInfo: types.BaseIDInfo{