forked from ebhomengo/niki
26 lines
797 B
Go
26 lines
797 B
Go
package adminkindboxreqservice
|
|
|
|
import (
|
|
"context"
|
|
|
|
entity "git.gocasts.ir/ebhomengo/niki/entity"
|
|
param "git.gocasts.ir/ebhomengo/niki/param/admin/kind_box_req"
|
|
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
|
)
|
|
|
|
func (s Service) Add(ctx context.Context, req param.KindBoxReqAddRequest) (param.KindBoxReqAddResponse, error) {
|
|
const op = "adminkindboxreqservice.Add"
|
|
|
|
kindBoxReq, err := s.repo.AddKindBoxReq(ctx, entity.KindBoxReq{
|
|
BenefactorID: req.BenefactorID,
|
|
TypeID: req.TypeID,
|
|
CountRequested: req.CountRequested,
|
|
Status: entity.KindBoxReqPendingStatus,
|
|
})
|
|
if err != nil {
|
|
return param.KindBoxReqAddResponse{}, richerror.New(op).WithErr(err).WithKind(richerror.KindUnexpected)
|
|
}
|
|
|
|
return param.KindBoxReqAddResponse{KindBoxReq: kindBoxReq}, nil
|
|
}
|