47 lines
1.1 KiB
Go
47 lines
1.1 KiB
Go
package store
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"bsm/full/module/ec/mall/internal/impl"
|
|
"bsm/full/module/ec/mall/internal/models"
|
|
pb "bsm/full/module/ec/mall/pb"
|
|
"git.apinb.com/bsm-sdk/core/errcode"
|
|
"git.apinb.com/bsm-sdk/core/service"
|
|
)
|
|
|
|
// 设置店铺基础配置
|
|
func SetSetting(ctx context.Context, in *pb.StoreBasic) (reply *pb.IdentityStatusReply, err error) {
|
|
// parse authorization meta.
|
|
_, err = service.ParseMetaCtx(ctx, &service.ParseOptions{RoleValue: "Mall_Admin"})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if in.Id == 0 && in.Identity == "" {
|
|
return nil, errcode.ErrInvalidArgument
|
|
}
|
|
|
|
data := &models.MallStore{
|
|
Logo: in.Logo,
|
|
Title: in.Title,
|
|
Intro: in.Intro,
|
|
Template: in.Template,
|
|
Subdomain: in.Subdomain,
|
|
Configs: in.Configs,
|
|
}
|
|
|
|
if err := impl.DBService.Model(&models.MallStore{}).Where("id=? or identity=?", in.GetId(), in.GetIdentity()).Updates(data).Error; err != nil {
|
|
print(err.Error())
|
|
return nil, errcode.ErrDB
|
|
}
|
|
|
|
// TODO: add your logic code & delete this line.
|
|
return &pb.IdentityStatusReply{
|
|
Code: 0,
|
|
Message: "OK",
|
|
Timeseq: time.Now().UnixMilli(),
|
|
}, nil
|
|
|
|
}
|