代码拉取完成,页面将自动刷新
package devicegrouplogic
import (
"context"
"gitee.com/unitedrhino/share/def"
"gitee.com/unitedrhino/share/stores"
"gitee.com/unitedrhino/things/service/dmsvr/internal/logic"
"gitee.com/unitedrhino/things/service/dmsvr/internal/repo/relationDB"
"gitee.com/unitedrhino/things/service/dmsvr/internal/svc"
"gitee.com/unitedrhino/things/service/dmsvr/pb/dm"
"gorm.io/gorm"
"github.com/zeromicro/go-zero/core/logx"
)
type GroupInfoDeleteLogic struct {
ctx context.Context
svcCtx *svc.ServiceContext
logx.Logger
GiDB *relationDB.GroupInfoRepo
}
func NewGroupInfoDeleteLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GroupInfoDeleteLogic {
return &GroupInfoDeleteLogic{
ctx: ctx,
svcCtx: svcCtx,
Logger: logx.WithContext(ctx),
GiDB: relationDB.NewGroupInfoRepo(ctx),
}
}
// 删除分组
func (l *GroupInfoDeleteLogic) GroupInfoDelete(in *dm.WithID) (*dm.Empty, error) {
po, err := relationDB.NewGroupInfoRepo(l.ctx).FindOne(l.ctx, in.Id)
if err != nil {
return nil, err
}
stores.GetTenantConn(l.ctx).Transaction(func(tx *gorm.DB) error {
if po.ParentID != 0 {
c, err := relationDB.NewGroupInfoRepo(tx).CountByFilter(l.ctx, relationDB.GroupInfoFilter{ParentID: po.ParentID})
if err != nil {
return err
}
if c == 0 { //下面没有子节点了
err = relationDB.NewGroupInfoRepo(tx).UpdateWithField(l.ctx,
relationDB.GroupInfoFilter{ID: po.ParentID}, map[string]any{"is_leaf": def.True})
if err != nil {
return err
}
}
}
err := relationDB.NewGroupInfoRepo(l.ctx).Delete(l.ctx, in.Id)
return err
})
logic.FillAreaGroupCount(l.ctx, l.svcCtx, int64(po.AreaID))
return &dm.Empty{}, nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。