39 lines
895 B
Go
39 lines
895 B
Go
package supply
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"bsm/full/module/ec/market/internal/models"
|
|
pb "bsm/full/module/ec/market/pb"
|
|
"git.apinb.com/bsm-sdk/core/errcode"
|
|
"git.apinb.com/bsm-sdk/core/printer"
|
|
"git.apinb.com/bsm-sdk/core/service"
|
|
)
|
|
|
|
// 删除一个供应商
|
|
func Delete(ctx context.Context, in *pb.IdentRequest) (reply *pb.IdentityStatusReply, err error) {
|
|
// parse authorization meta.
|
|
_, err = service.ParseMetaCtx(ctx, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// valildate request id,identity.
|
|
if in.Id == 0 && in.Identity == "" {
|
|
return nil, errcode.ErrInvalidArgument
|
|
}
|
|
|
|
if err := models.DBService.Where("id = ? or identity = ?", in.GetId(), in.GetIdentity()).Delete(&models.MarketSupply{}).Error; err != nil {
|
|
printer.Error(err.Error())
|
|
return nil, err
|
|
}
|
|
|
|
return &pb.IdentityStatusReply{
|
|
Code: 0,
|
|
Message: "OK",
|
|
Timeseq: time.Now().UnixNano(),
|
|
}, nil
|
|
|
|
}
|