50 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package pay
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"strings"
 | |
| 
 | |
| 	"tydata-server/app/main/api/internal/svc"
 | |
| 	"tydata-server/app/main/api/internal/types"
 | |
| 	"tydata-server/common/xerr"
 | |
| 
 | |
| 	"github.com/pkg/errors"
 | |
| 	"github.com/zeromicro/go-zero/core/logx"
 | |
| )
 | |
| 
 | |
| type PaymentCheckLogic struct {
 | |
| 	logx.Logger
 | |
| 	ctx    context.Context
 | |
| 	svcCtx *svc.ServiceContext
 | |
| }
 | |
| 
 | |
| func NewPaymentCheckLogic(ctx context.Context, svcCtx *svc.ServiceContext) *PaymentCheckLogic {
 | |
| 	return &PaymentCheckLogic{
 | |
| 		Logger: logx.WithContext(ctx),
 | |
| 		ctx:    ctx,
 | |
| 		svcCtx: svcCtx,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (l *PaymentCheckLogic) PaymentCheck(req *types.PaymentCheckReq) (resp *types.PaymentCheckResp, err error) {
 | |
| 	if strings.HasPrefix(req.OrderNo, "A_") {
 | |
| 		order, err := l.svcCtx.AgentMembershipRechargeOrderModel.FindOneByOrderNo(l.ctx, req.OrderNo)
 | |
| 		if err != nil {
 | |
| 			return nil, errors.Wrapf(xerr.NewErrCode(xerr.DB_ERROR), "查询订单失败: %v", err)
 | |
| 		}
 | |
| 		return &types.PaymentCheckResp{
 | |
| 			Type:   "agent_vip",
 | |
| 			Status: order.Status,
 | |
| 		}, nil
 | |
| 	} else {
 | |
| 		order, err := l.svcCtx.OrderModel.FindOneByOrderNo(l.ctx, req.OrderNo)
 | |
| 		if err != nil {
 | |
| 			return nil, errors.Wrapf(xerr.NewErrCode(xerr.DB_ERROR), "查询订单失败: %v", err)
 | |
| 		}
 | |
| 		return &types.PaymentCheckResp{
 | |
| 			Type:   "query",
 | |
| 			Status: order.Status,
 | |
| 		}, nil
 | |
| 	}
 | |
| }
 |