94 lines
2.4 KiB
Go
94 lines
2.4 KiB
Go
|
|
package agent
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
"ycc-server/app/main/model"
|
||
|
|
"ycc-server/common/ctxdata"
|
||
|
|
"ycc-server/common/globalkey"
|
||
|
|
"ycc-server/common/xerr"
|
||
|
|
|
||
|
|
"github.com/pkg/errors"
|
||
|
|
|
||
|
|
"ycc-server/app/main/api/internal/svc"
|
||
|
|
"ycc-server/app/main/api/internal/types"
|
||
|
|
|
||
|
|
"github.com/zeromicro/go-zero/core/logx"
|
||
|
|
)
|
||
|
|
|
||
|
|
type GetRebateListLogic struct {
|
||
|
|
logx.Logger
|
||
|
|
ctx context.Context
|
||
|
|
svcCtx *svc.ServiceContext
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewGetRebateListLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetRebateListLogic {
|
||
|
|
return &GetRebateListLogic{
|
||
|
|
Logger: logx.WithContext(ctx),
|
||
|
|
ctx: ctx,
|
||
|
|
svcCtx: svcCtx,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func (l *GetRebateListLogic) GetRebateList(req *types.GetRebateListReq) (resp *types.GetRebateListResp, err error) {
|
||
|
|
userID, err := ctxdata.GetUidFromCtx(l.ctx)
|
||
|
|
if err != nil {
|
||
|
|
return nil, errors.Wrapf(xerr.NewErrCode(xerr.SERVER_COMMON_ERROR), "获取用户信息失败, %v", err)
|
||
|
|
}
|
||
|
|
|
||
|
|
// 1. 获取代理信息
|
||
|
|
agent, err := l.svcCtx.AgentModel.FindOneByUserId(l.ctx, userID)
|
||
|
|
if err != nil {
|
||
|
|
if errors.Is(err, model.ErrNotFound) {
|
||
|
|
return nil, errors.Wrapf(xerr.NewErrMsg("您不是代理"), "")
|
||
|
|
}
|
||
|
|
return nil, errors.Wrapf(xerr.NewErrCode(xerr.DB_ERROR), "查询代理信息失败, %v", err)
|
||
|
|
}
|
||
|
|
|
||
|
|
// 2. 构建查询条件
|
||
|
|
builder := l.svcCtx.AgentRebateModel.SelectBuilder().
|
||
|
|
Where("agent_id = ? AND del_state = ?", agent.Id, globalkey.DelStateNo).
|
||
|
|
OrderBy("create_time DESC")
|
||
|
|
|
||
|
|
// 3. 分页查询
|
||
|
|
page := req.Page
|
||
|
|
if page <= 0 {
|
||
|
|
page = 1
|
||
|
|
}
|
||
|
|
pageSize := req.PageSize
|
||
|
|
if pageSize <= 0 {
|
||
|
|
pageSize = 20
|
||
|
|
}
|
||
|
|
offset := (page - 1) * pageSize
|
||
|
|
|
||
|
|
// 4. 查询总数
|
||
|
|
total, err := l.svcCtx.AgentRebateModel.FindCount(l.ctx, builder, "")
|
||
|
|
if err != nil {
|
||
|
|
return nil, errors.Wrapf(xerr.NewErrCode(xerr.DB_ERROR), "查询返佣总数失败, %v", err)
|
||
|
|
}
|
||
|
|
|
||
|
|
// 5. 查询列表
|
||
|
|
builder = builder.Limit(uint64(pageSize)).Offset(uint64(offset))
|
||
|
|
rebates, err := l.svcCtx.AgentRebateModel.FindAll(l.ctx, builder, "")
|
||
|
|
if err != nil {
|
||
|
|
return nil, errors.Wrapf(xerr.NewErrCode(xerr.DB_ERROR), "查询返佣列表失败, %v", err)
|
||
|
|
}
|
||
|
|
|
||
|
|
// 6. 组装响应
|
||
|
|
var list []types.RebateItem
|
||
|
|
for _, rebate := range rebates {
|
||
|
|
list = append(list, types.RebateItem{
|
||
|
|
Id: rebate.Id,
|
||
|
|
SourceAgentId: rebate.SourceAgentId,
|
||
|
|
OrderId: rebate.OrderId,
|
||
|
|
RebateType: rebate.RebateType,
|
||
|
|
Amount: rebate.RebateAmount,
|
||
|
|
CreateTime: rebate.CreateTime.Format("2006-01-02 15:04:05"),
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
return &types.GetRebateListResp{
|
||
|
|
Total: total,
|
||
|
|
List: list,
|
||
|
|
}, nil
|
||
|
|
}
|