审查视图

pkg/application/evaluation_template/template_service.go 9.5 KB
1 2 3 4 5 6 7 8
package service

import (
	"github.com/linmadan/egglib-go/core/application"
	"github.com/linmadan/egglib-go/utils/tool_funs"
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/application/evaluation_template/command"
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/application/factory"
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/domain"
郑周 authored
9
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/utils"
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
)

type EvaluationTemplateService struct {
}

func NewEvaluationTemplateService() *EvaluationTemplateService {
	newRoleService := &EvaluationTemplateService{}
	return newRoleService
}

// Create 创建
func (rs *EvaluationTemplateService) Create(in *command.CreateTemplateCommand) (interface{}, error) {
	transactionContext, err := factory.ValidateStartTransaction(in)
	if err != nil {
		return nil, err
	}
	defer func() {
		transactionContext.RollbackTransaction()
	}()
郑周 authored
29
	templateRepository := factory.CreateEvaluationTemplateRepository(map[string]interface{}{"transactionContext": transactionContext})
30 31

	// 检测名称重复
郑周 authored
32
	count, err := templateRepository.Count(map[string]interface{}{"name": in.Name, "companyId": in.CompanyId})
33 34 35 36
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	if count > 0 {
郑周 authored
37
		return nil, application.ThrowError(application.BUSINESS_ERROR, "已存在相同名称的评估模板")
38 39
	}
郑周 authored
40
	linkNodes := make([]*domain.LinkNode, 0)
郑周 authored
41 42

	sid, _ := utils.NewSnowflakeId()
郑周 authored
43
	linkNodes = append(linkNodes, &domain.LinkNode{
郑周 authored
44 45 46 47 48
		Id:           sid + 1,
		Type:         domain.LinkNodeSelfAssessment,
		Name:         "填写自评反馈",
		NodeContents: make([]*domain.NodeContent, 0),
		KpiCycle:     domain.KpiCycleDay,
49
	})
郑周 authored
50
	linkNodes = append(linkNodes, &domain.LinkNode{
郑周 authored
51 52 53 54 55
		Id:           sid + 2,
		Type:         domain.LinkNodeAllInvite,
		Name:         "360°邀请",
		NodeContents: make([]*domain.NodeContent, 0),
		KpiCycle:     domain.KpiCycleDay,
56
	})
郑周 authored
57
	linkNodes = append(linkNodes, &domain.LinkNode{
郑周 authored
58 59 60 61 62
		Id:           sid + 3,
		Type:         domain.LinkNodeAllAssessment,
		Name:         "360°评估",
		NodeContents: make([]*domain.NodeContent, 0),
		KpiCycle:     domain.KpiCycleDay,
63
	})
郑周 authored
64
	linkNodes = append(linkNodes, &domain.LinkNode{
郑周 authored
65 66 67 68 69
		Id:           sid + 4,
		Type:         domain.LinkNodeSuperiorAssessment,
		Name:         "上级评估",
		NodeContents: make([]*domain.NodeContent, 0),
		KpiCycle:     domain.KpiCycleDay,
70
	})
郑周 authored
71
	linkNodes = append(linkNodes, &domain.LinkNode{
郑周 authored
72 73 74 75 76
		Id:           sid + 5,
		Type:         domain.LinkNodeViewResult,
		Name:         "绩效结果查看",
		NodeContents: make([]*domain.NodeContent, 0),
		KpiCycle:     domain.KpiCycleDay,
77 78 79 80 81 82 83 84 85 86 87
	})

	newTemplate := &domain.EvaluationTemplate{
		Id:        0,
		Name:      in.Name,
		Describe:  in.Describe,
		CompanyId: in.CompanyId,
		CreatorId: in.CreatorId,
		State:     domain.TemplateStateWaitConfig,
		LinkNodes: linkNodes,
	}
郑周 authored
88
	template, err := templateRepository.Insert(newTemplate)
89 90 91 92 93 94
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
郑周 authored
95
	return template, nil
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127

}

func (rs *EvaluationTemplateService) Update(in *command.UpdateTemplateCommand) (interface{}, error) {
	transactionContext, err := factory.ValidateStartTransaction(in)
	if err != nil {
		return nil, err
	}
	defer func() {
		transactionContext.RollbackTransaction()
	}()

	templateRepository := factory.CreateEvaluationTemplateRepository(map[string]interface{}{"transactionContext": transactionContext})

	// 检测名称重复(排除自己)
	count, err := templateRepository.Count(map[string]interface{}{"name": in.Name, "companyId": in.CompanyId, "notId": in.Id})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	if count > 0 {
		return nil, application.ThrowError(application.BUSINESS_ERROR, "名称已存在")
	}

	template, err := templateRepository.FindOne(map[string]interface{}{"id": in.Id})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}

	template.Name = in.Name
	template.Describe = in.Describe
	template.LinkNodes = in.LinkNodes
郑周 authored
128 129 130 131 132
	// 完成配置保存,更新状态
	if in.FinishConfig == 1 && template.State == domain.TemplateStateWaitConfig {
		template.State = domain.TemplateStateWaitActive
	}
133 134 135 136 137 138 139 140 141 142 143
	template, err = templateRepository.Insert(template)
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	return template, nil
}

func (rs *EvaluationTemplateService) Get(in *command.GetTemplateCommand) (interface{}, error) {
144
	transactionContext, err := factory.ValidateStartTransaction(in)
145
	if err != nil {
146
		return nil, err
147
	}
148 149 150
	defer func() {
		transactionContext.RollbackTransaction()
	}()
151 152 153 154 155
	templateRepository := factory.CreateEvaluationTemplateRepository(map[string]interface{}{"transactionContext": transactionContext})
	template, err := templateRepository.FindOne(map[string]interface{}{"id": in.Id})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
156 157 158 159

	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
	return template, nil
}

func (rs *EvaluationTemplateService) Remove(in *command.DeleteTemplateCommand) (interface{}, error) {
	transactionContext, err := factory.ValidateStartTransaction(in)
	if err != nil {
		return nil, err
	}
	defer func() {
		transactionContext.RollbackTransaction()
	}()

	templateRepository := factory.CreateEvaluationTemplateRepository(map[string]interface{}{"transactionContext": transactionContext})

	template, err := templateRepository.FindOne(map[string]interface{}{"id": in.Id})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	if _, err := templateRepository.Remove(template); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}

	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	return template, nil
}

func (rs *EvaluationTemplateService) List(in *command.QueryTemplateCommand) (interface{}, error) {
郑周 authored
189
	transactionContext, err := factory.ValidateStartTransaction(in)
190 191 192 193 194 195
	if err != nil {
		return nil, err
	}
	defer func() {
		transactionContext.RollbackTransaction()
	}()
196 197

	queryOptions := tool_funs.SimpleStructToMap(in)
郑周 authored
198
	if len(in.CreatedAt) == 0 {
199 200 201
		delete(queryOptions, "createdAt") // 删除创建时间
	}
202
	templateRepository := factory.CreateEvaluationTemplateRepository(map[string]interface{}{"transactionContext": transactionContext})
203
	total, templates, err := templateRepository.Find(queryOptions, "link_nodes")
204 205 206
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
207 208
	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
209
	}
210
	return tool_funs.SimpleWrapGridMap(total, templates), nil
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
}

func (rs *EvaluationTemplateService) State(in *command.StateTemplateCommand) (interface{}, error) {
	transactionContext, err := factory.ValidateStartTransaction(in)
	if err != nil {
		return nil, err
	}
	defer func() {
		transactionContext.RollbackTransaction()
	}()

	templateRepository := factory.CreateEvaluationTemplateRepository(map[string]interface{}{"transactionContext": transactionContext})

	template, err := templateRepository.FindOne(map[string]interface{}{"id": in.Id})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}

	template.State = in.State
	template, err = templateRepository.Insert(template)
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	return template, nil
}

func (rs *EvaluationTemplateService) Copy(in *command.CopyTemplateCommand) (interface{}, error) {
	transactionContext, err := factory.ValidateStartTransaction(in)
	if err != nil {
		return nil, err
	}
	defer func() {
		transactionContext.RollbackTransaction()
	}()
	templateRepository := factory.CreateEvaluationTemplateRepository(map[string]interface{}{"transactionContext": transactionContext})
	template, err := templateRepository.FindOne(map[string]interface{}{"id": in.Id})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	// ID重置
	template.Id = 0
255 256 257
	template.Name = template.Name + " 副本"
	template.CreatorId = in.CreatorId
258 259 260 261
	// 如果拷贝已经启用的模板,默认先设置为待启用
	if template.State == domain.TemplateStateEnable {
		template.State = domain.TemplateStateWaitActive
	}
262 263 264 265 266 267 268

	// 流程环节ID重置
	sid, _ := utils.NewSnowflakeId()
	for i := range template.LinkNodes {
		template.LinkNodes[i].Id = sid + int64(i+1)
	}
269 270 271 272 273 274 275 276 277
	template, err = templateRepository.Insert(template)
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	return template, nil
}