2023-12-25 17:08:19 +00:00
|
|
|
package adminkindboxservice
|
2023-12-20 08:27:13 +00:00
|
|
|
|
|
|
|
import (
|
2023-12-22 21:42:57 +00:00
|
|
|
"context"
|
|
|
|
|
2023-12-26 21:42:33 +00:00
|
|
|
entity "git.gocasts.ir/ebhomengo/niki/entity"
|
2023-12-25 17:08:19 +00:00
|
|
|
param "git.gocasts.ir/ebhomengo/niki/param/admin/kind_box"
|
2023-12-26 21:42:33 +00:00
|
|
|
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
2023-12-20 08:27:13 +00:00
|
|
|
)
|
|
|
|
|
2023-12-22 21:42:57 +00:00
|
|
|
func (s Service) Update(ctx context.Context, req param.KindBoxUpdateRequest) (param.KindBoxUpdateResponse, error) {
|
2023-12-26 21:42:33 +00:00
|
|
|
// TODO: can benefactor update its Request ?
|
|
|
|
// TODO: Is Update Mothod Service Responsible to check which kindboxreqID belongs to benefactorID ?
|
|
|
|
// TODO: updating data(s) may have side-effect on other entities by masood-keshvary accepted -> rejected
|
|
|
|
const op = "adminkindboxservice.Update"
|
|
|
|
|
|
|
|
kindBox, uErr := s.repo.UpdateKindBox(ctx, req.KindBoxID, entity.KindBox{
|
|
|
|
TotalAmount: req.TotalAmount,
|
|
|
|
ReceiverID: req.ReceiverID,
|
|
|
|
SenderID: req.SenderID,
|
|
|
|
SerialNumber: req.SerialNumber,
|
|
|
|
Status: req.Status,
|
|
|
|
})
|
|
|
|
if uErr != nil {
|
|
|
|
return param.KindBoxUpdateResponse{}, richerror.New(op).WithErr(uErr).WithKind(richerror.KindUnexpected)
|
|
|
|
}
|
|
|
|
|
|
|
|
return param.KindBoxUpdateResponse{KindBox: kindBox}, nil
|
2023-12-20 08:27:13 +00:00
|
|
|
}
|