package adminkindboxreqservice import ( "context" paginationparam "git.gocasts.ir/ebhomengo/niki/param" param "git.gocasts.ir/ebhomengo/niki/param/admin/kind_box_req" richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error" ) func (s Service) GetAll(ctx context.Context, req param.KindBoxReqGetAllRequest) (param.KindBoxReqGetAllResponse, error) { const op = "adminkindboxreqservice.GetAll" if fieldErrors, vErr := s.vld.ValidateGetAll(req); vErr != nil { return param.KindBoxReqGetAllResponse{FieldErrors: fieldErrors}, richerror.New(op).WithErr(vErr) } allKindBoxReq, total, err := s.repo.GetAllKindBoxReq(ctx, req.Filter, req.Pagination, req.Sort) if err != nil { return param.KindBoxReqGetAllResponse{}, richerror.New(op).WithErr(err).WithKind(richerror.KindUnexpected) } var data []param.Data for _, kindBoxReq := range allKindBoxReq { data = append(data, param.Data{ ID: kindBoxReq.ID, BenefactorID: kindBoxReq.BenefactorID, KindBoxType: kindBoxReq.KindBoxType, CountRequested: kindBoxReq.CountRequested, CountAccepted: kindBoxReq.CountAccepted, Description: kindBoxReq.Description, Status: kindBoxReq.Status, DeliverReferTimeID: kindBoxReq.DeliverReferTimeID, DeliverReferDate: kindBoxReq.DeliverReferDate, DeliverAddressID: kindBoxReq.DeliverAddressID, SenderAgentID: kindBoxReq.SenderAgentID, DeliveredAt: kindBoxReq.DeliveredAt, }) } return param.KindBoxReqGetAllResponse{ Data: data, Pagination: paginationparam.PaginationResponse{ PageSize: req.Pagination.GetPageSize(), PageNumber: req.Pagination.GetPageNumber(), Total: total, }, }, nil }