审查视图

pkg/application/evaluation_template/template_service.go 9.7 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()
43 44 45

	// 自评反馈
	selfLinkNode := &domain.LinkNode{
郑周 authored
46 47 48 49 50
		Id:           sid + 1,
		Type:         domain.LinkNodeSelfAssessment,
		Name:         "填写自评反馈",
		NodeContents: make([]*domain.NodeContent, 0),
		KpiCycle:     domain.KpiCycleDay,
51 52 53 54 55 56 57
	}
	// 有环节自评评估内容,则直接使用
	if len(in.NodeContents) > 0 {
		selfLinkNode.NodeContents = in.NodeContents
	}

	linkNodes = append(linkNodes, selfLinkNode)
郑周 authored
58
	linkNodes = append(linkNodes, &domain.LinkNode{
郑周 authored
59 60 61 62 63
		Id:           sid + 2,
		Type:         domain.LinkNodeAllInvite,
		Name:         "360°邀请",
		NodeContents: make([]*domain.NodeContent, 0),
		KpiCycle:     domain.KpiCycleDay,
64
	})
郑周 authored
65
	linkNodes = append(linkNodes, &domain.LinkNode{
郑周 authored
66 67 68 69 70
		Id:           sid + 3,
		Type:         domain.LinkNodeAllAssessment,
		Name:         "360°评估",
		NodeContents: make([]*domain.NodeContent, 0),
		KpiCycle:     domain.KpiCycleDay,
71
	})
郑周 authored
72
	linkNodes = append(linkNodes, &domain.LinkNode{
郑周 authored
73 74 75 76 77
		Id:           sid + 4,
		Type:         domain.LinkNodeSuperiorAssessment,
		Name:         "上级评估",
		NodeContents: make([]*domain.NodeContent, 0),
		KpiCycle:     domain.KpiCycleDay,
78
	})
郑周 authored
79
	linkNodes = append(linkNodes, &domain.LinkNode{
郑周 authored
80 81 82 83 84
		Id:           sid + 5,
		Type:         domain.LinkNodeViewResult,
		Name:         "绩效结果查看",
		NodeContents: make([]*domain.NodeContent, 0),
		KpiCycle:     domain.KpiCycleDay,
85 86 87 88 89 90 91 92 93 94 95
	})

	newTemplate := &domain.EvaluationTemplate{
		Id:        0,
		Name:      in.Name,
		Describe:  in.Describe,
		CompanyId: in.CompanyId,
		CreatorId: in.CreatorId,
		State:     domain.TemplateStateWaitConfig,
		LinkNodes: linkNodes,
	}
96 97 98 99
	if in.State > domain.TemplateStateWaitConfig {
		newTemplate.State = in.State
	}
郑周 authored
100
	template, err := templateRepository.Insert(newTemplate)
101 102 103 104 105 106
	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
107
	return template, nil
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139

}

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
140 141 142 143 144
	// 完成配置保存,更新状态
	if in.FinishConfig == 1 && template.State == domain.TemplateStateWaitConfig {
		template.State = domain.TemplateStateWaitActive
	}
145 146 147 148 149 150 151 152 153 154 155
	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) {
156
	transactionContext, err := factory.ValidateStartTransaction(in)
157
	if err != nil {
158
		return nil, err
159
	}
160 161 162
	defer func() {
		transactionContext.RollbackTransaction()
	}()
163 164 165 166 167
	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())
	}
168 169 170 171

	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
	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
201
	transactionContext, err := factory.ValidateStartTransaction(in)
202 203 204 205 206 207
	if err != nil {
		return nil, err
	}
	defer func() {
		transactionContext.RollbackTransaction()
	}()
208 209

	queryOptions := tool_funs.SimpleStructToMap(in)
郑周 authored
210
	if len(in.CreatedAt) == 0 {
211 212 213
		delete(queryOptions, "createdAt") // 删除创建时间
	}
214
	templateRepository := factory.CreateEvaluationTemplateRepository(map[string]interface{}{"transactionContext": transactionContext})
215
	total, templates, err := templateRepository.Find(queryOptions, "link_nodes")
216 217 218
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
219 220
	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
221
	}
222
	return tool_funs.SimpleWrapGridMap(total, templates), nil
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 255 256 257 258 259 260 261 262 263 264 265 266
}

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
267 268 269
	template.Name = template.Name + " 副本"
	template.CreatorId = in.CreatorId
270 271 272 273
	// 如果拷贝已经启用的模板,默认先设置为待启用
	if template.State == domain.TemplateStateEnable {
		template.State = domain.TemplateStateWaitActive
	}
274 275 276 277 278 279 280

	// 流程环节ID重置
	sid, _ := utils.NewSnowflakeId()
	for i := range template.LinkNodes {
		template.LinkNodes[i].Id = sid + int64(i+1)
	}
281 282 283 284 285 286 287 288 289
	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
}