|
@@ -3,6 +3,8 @@ package credit_balance
|
|
|
import (
|
|
|
"context"
|
|
|
"github.com/alibabacloud-go/tea/tea"
|
|
|
+ "github.com/suyuan32/simple-admin-core/rpc/types/core"
|
|
|
+ "github.com/zeromicro/go-zero/core/errorx"
|
|
|
|
|
|
"wechat-api/internal/svc"
|
|
|
"wechat-api/internal/types"
|
|
@@ -28,7 +30,12 @@ func NewCreateCreditBalanceLogic(ctx context.Context, svcCtx *svc.ServiceContext
|
|
|
}
|
|
|
|
|
|
func (l *CreateCreditBalanceLogic) CreateCreditBalance(req *types.CreditBalanceInfo) (*types.BaseMsgResp, error) {
|
|
|
- _, err := l.svcCtx.DB.CreditBalance.Create().
|
|
|
+ _, err := l.svcCtx.CoreRpc.GetDepartmentById(l.ctx, &core.IDReq{Id: *req.OrganizationId})
|
|
|
+ if err != nil {
|
|
|
+ return nil, errorx.NewAlreadyExistsError("租户不存在")
|
|
|
+ }
|
|
|
+
|
|
|
+ _, err = l.svcCtx.DB.CreditBalance.Create().
|
|
|
SetNotNilUserID(req.UserId).
|
|
|
SetNotNilBalance(req.Balance).
|
|
|
SetNotNilStatus(tea.Int(1)).
|