审查视图

pkg/application/evaluation_project/project_service.go 35.9 KB
郑周 authored
1 2 3
package service

import (
郑周 authored
4
	"fmt"
tangxvhui authored
5 6 7 8
	"strconv"
	"strings"
	"time"
9 10
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/infrastructure/xredis"
郑周 authored
11 12 13 14 15
	"github.com/linmadan/egglib-go/core/application"
	"github.com/linmadan/egglib-go/utils/tool_funs"
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/application/evaluation_project/adapter"
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/application/evaluation_project/command"
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/application/factory"
16 17
	taskCommand "gitlab.fjmaimaimai.com/allied-creation/performance/pkg/application/task/command"
	taskService "gitlab.fjmaimaimai.com/allied-creation/performance/pkg/application/task/service"
郑周 authored
18
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/domain"
郑周 authored
19
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/utils"
郑周 authored
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
)

type EvaluationProjectService struct {
}

func NewEvaluationProjectService() *EvaluationProjectService {
	newRoleService := &EvaluationProjectService{}
	return newRoleService
}

// Create 创建
func (rs *EvaluationProjectService) Create(in *command.CreateProjectCommand) (interface{}, error) {
	transactionContext, err := factory.ValidateStartTransaction(in)
	if err != nil {
		return nil, err
	}
	defer func() {
		transactionContext.RollbackTransaction()
	}()
	projectRepository := factory.CreateEvaluationProjectRepository(map[string]interface{}{"transactionContext": transactionContext})

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

	newProject := &domain.EvaluationProject{
		Id:        0,
		Name:      in.Name,
		Describe:  in.Describe,
		CompanyId: in.CompanyId,
郑周 authored
55
		CycleId:   in.CycleId,
郑周 authored
56 57 58 59 60 61 62 63 64 65
		CreatorId: in.CreatorId,
		State:     domain.ProjectStateWaitConfig,
		HrBp:      in.HrBp,
		Pmp:       in.Pmp,
		PmpIds:    in.PmpIds,
	}
	project, err := projectRepository.Insert(newProject)
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
郑周 authored
66 67 68 69 70 71 72 73 74

	projectAdapter := &adapter.EvaluationProjectAdapter{}
	projectAdapter.EvaluationProject = project
	if len(project.PmpIds) > 0 {
		userRepository := factory.CreateUserRepository(map[string]interface{}{"transactionContext": transactionContext})
		_, users, _ := userRepository.Find(map[string]interface{}{"ids": project.PmpIds, "limit": len(project.PmpIds)})
		projectAdapter.TransformPmpAdapter(users)
	}
郑周 authored
75 76 77
	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
郑周 authored
78
	return projectAdapter, nil
郑周 authored
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115

}

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

	projectRepository := factory.CreateEvaluationProjectRepository(map[string]interface{}{"transactionContext": transactionContext})

	// 检测名称重复(排除自己)
	count, err := projectRepository.Count(map[string]interface{}{"name": in.Name, "cycleId": in.CycleId, "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, "名称已存在")
	}

	project, err := projectRepository.FindOne(map[string]interface{}{"id": in.Id})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	project.Name = in.Name
	project.Describe = in.Describe
	project.HrBp = in.HrBp
	project.Pmp = in.Pmp
	project.PmpIds = in.PmpIds

	project, err = projectRepository.Insert(project)
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
郑周 authored
116 117 118 119 120 121 122 123 124

	projectAdapter := &adapter.EvaluationProjectAdapter{}
	projectAdapter.EvaluationProject = project
	if len(project.PmpIds) > 0 {
		userRepository := factory.CreateUserRepository(map[string]interface{}{"transactionContext": transactionContext})
		_, users, _ := userRepository.Find(map[string]interface{}{"ids": project.PmpIds, "limit": len(project.PmpIds)})
		projectAdapter.TransformPmpAdapter(users)
	}
郑周 authored
125 126 127
	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
郑周 authored
128
	return projectAdapter, nil
郑周 authored
129 130 131 132 133 134 135 136 137 138 139 140
}

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

	projectRepository := factory.CreateEvaluationProjectRepository(map[string]interface{}{"transactionContext": transactionContext})
郑周 authored
141
	cycleRepository := factory.CreateEvaluationCycleRepository(map[string]interface{}{"transactionContext": transactionContext})
郑周 authored
142 143
	cycleTemplateRepository := factory.CreateEvaluationCycleTemplateRepository(map[string]interface{}{"transactionContext": transactionContext})
郑周 authored
144
	project, err := projectRepository.FindOne(map[string]interface{}{"id": in.Id})
郑周 authored
145 146 147 148
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
郑周 authored
149 150 151 152 153 154
	// 如果是已经启用的项目,只能编辑环节的截至时间
	if project.State == domain.ProjectStateEnable {
		end, err := time.ParseInLocation("2006-01-02 15:04:05", in.TimeEnd, time.Local)
		if err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		}
郑周 authored
155
郑周 authored
156 157 158 159 160 161 162 163
		cycle, err := cycleRepository.FindOne(map[string]interface{}{"id": in.CycleId})
		if err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		}
		maxTime := cycle.TimeEnd.Local()
		if end.After(maxTime) {
			return nil, application.ThrowError(application.BUSINESS_ERROR, "评估截至时间不能超出周期截至时间")
		}
164
		// 更新项目模板中的环节时间
郑周 authored
165 166 167 168
		if project.Template != nil {
			for i := range project.Template.LinkNodes {
				node := project.Template.LinkNodes[i]
				node.TimeEnd = &end
郑周 authored
169 170
			}
		}
171
		// 更新项目截止时间(暂时环节中的时间未分开)
郑周 authored
172 173 174 175
		project.EndTime = end
		project, err = projectRepository.Insert(project)
		if err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
郑周 authored
176
		}
177
		// 项目调整截止时间,同步更新任务时间
郑周 authored
178
		if err := rs.updateTaskTime(transactionContext, in.Id, &end); err != nil {
179
			return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
郑周 authored
180
		}
郑周 authored
181
郑周 authored
182 183 184 185 186
		if err := transactionContext.CommitTransaction(); err != nil {
			return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
		}
		return project, nil
	} else {
郑周 authored
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
		//_, projects, err := projectRepository.Find(map[string]interface{}{"companyId": in.CompanyId, "cycleId": in.CycleId}, "template")
		//if err != nil {
		//	return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		//}
		//// 周期内的所有项目,员工不能重复被评估
		//rids := map[string]bool{}
		//for i := range projects {
		//	it := projects[i]
		//	// 排除当前项目
		//	if in.Id == it.Id {
		//		continue
		//	}
		//	// 启用状态
		//	if it.State == domain.ProjectStateEnable {
		//		for j := range it.Recipients {
		//			rids[it.Recipients[j]] = true
		//		}
		//	}
		//}
		//repeatNum := 0
		//for i := range in.Recipients {
		//	id := in.Recipients[i]
		//	if _, ok := rids[id]; ok {
		//		repeatNum++
		//	}
		//}
		//if repeatNum > 0 {
		//	return nil, application.ThrowError(application.BUSINESS_ERROR, fmt.Sprintf("有%d人已经在本周期其他项目内,需要将他们移除", repeatNum))
		//}
郑周 authored
216
郑周 authored
217 218 219 220 221 222 223
		cycleTemplate, err := cycleTemplateRepository.FindOne(map[string]interface{}{"id": in.TemplateId, "includeDeleted": true})
		if err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		}
		if cycleTemplate == nil || cycleTemplate.Template == nil {
			return nil, application.ThrowError(application.BUSINESS_ERROR, "请添加模板")
		}
郑周 authored
224
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
		// 指标任务的项目(存在一项类型为任务指标),必须添加项目负责人
		var isIndicatorTypeTask = false
	outerLoop:
		for i := range cycleTemplate.Template.LinkNodes {
			var node = cycleTemplate.Template.LinkNodes[i]
			for j := range node.NodeContents {
				if node.NodeContents[j].IndicatorType == domain.IndicatorTypeTask {
					isIndicatorTypeTask = true
					break outerLoop
				}
			}
		}
		if isIndicatorTypeTask && len(in.PrincipalId) == 0 {
			return nil, application.ThrowError(application.BUSINESS_ERROR, "请选择任务负责人")
		}
郑周 authored
241 242 243 244 245 246 247 248
		start, err := time.ParseInLocation("2006-01-02 15:04:05", in.TimeStart, time.Local)
		if err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		}
		end, err := time.ParseInLocation("2006-01-02 15:04:05", in.TimeEnd, time.Local)
		if err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		}
郑周 authored
249
郑周 authored
250 251 252 253 254 255
		cycle, err := cycleRepository.FindOne(map[string]interface{}{"id": in.CycleId})
		if err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		}
		minTime := cycle.TimeStart.Local()
		maxTime := cycle.TimeEnd.Local()
郑周 authored
256
郑周 authored
257 258 259
		if start.Before(minTime) {
			return nil, application.ThrowError(application.BUSINESS_ERROR, "评估起始时间不能超出周期起始时间")
		}
郑周 authored
260
郑周 authored
261 262 263
		if end.After(maxTime) {
			return nil, application.ThrowError(application.BUSINESS_ERROR, "评估截至时间不能超出周期截至时间")
		}
郑周 authored
264
郑周 authored
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
		// 判断起始时间,是否有被评估人的任务
		assessTaskRepository := factory.CreateStaffAssessTaskRepository(map[string]interface{}{"transactionContext": transactionContext})
		_, assessTasks, err := assessTaskRepository.Find(map[string]interface{}{
			"companyId": in.CompanyId,
			"cycleId":   in.CycleId,
			"beginDay":  start.Format("2006-01-02"),
		})

		rids := map[int]int{}
		for i1 := range assessTasks {
			it := assessTasks[i1]
			for i2 := range it.ExecutorId {
				rids[it.ExecutorId[i2]] = 0
			}
		}
		for i := range in.Recipients {
			id := in.Recipients[i]
			id2, _ := strconv.Atoi(id)
			if _, ok := rids[id2]; ok {
				year, month, day := start.Date()
				start0 := time.Date(year, month, day, 0, 0, 0, 0, time.Local) // 当前时间0点0分0秒时刻
				today := start0.Add(24 * time.Hour).Format("2006-01-02 15:04:05")
				return nil, application.ThrowError(application.BUSINESS_ERROR, fmt.Sprintf("当前时间已有正在进行的项目,请将项目开始时间设置至 %s 之后", today))
			}
		}
郑周 authored
291 292 293 294
		if project.State == domain.ProjectStateWaitConfig {
			project.State = domain.ProjectStateWaitActive
		}
		project.Recipients = in.Recipients
295
		project.PrincipalId = in.PrincipalId
郑周 authored
296 297 298 299 300 301 302 303
		project.Template = cycleTemplate.Template

		// 项目起始截止时间(环节中的时间暂未分开计算)
		project.BeginTime = start
		project.EndTime = end
		for i := range project.Template.LinkNodes {
			node := project.Template.LinkNodes[i]
			node.KpiCycle = in.KpiCycle // 设置周期
郑周 authored
304 305
			node.TimeStart = &start
			node.TimeEnd = &end
郑周 authored
306
		}
郑周 authored
307 308 309 310 311 312 313 314
		project, err = projectRepository.Insert(project)
		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 project, nil
郑周 authored
315 316 317
	}
}
318
// 更新项目截止时间,同步任务截止时间
郑周 authored
319
func (rs *EvaluationProjectService) updateTaskTime(context application.TransactionContext, projectId int64, end *time.Time) error {
320 321 322 323 324 325 326 327 328 329 330 331 332
	// 查看任务过程,重新日计算任务截至期
	taskRepository := factory.CreateNodeTaskRepository(map[string]interface{}{"transactionContext": context})
	tasks, err := taskRepository.Find(map[string]interface{}{"projectId": projectId})
	if err != nil {
		return application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}

	now := time.Now().Local()
	year, month, day := now.Date()
	nowO := time.Date(year, month, day, 0, 0, 0, 0, time.Local) // 当前时间0点0分0秒时刻

	for i := range tasks {
		task := tasks[i]
郑周 authored
333 334 335 336

		if end != nil {
			task.TimeEnd = end // 先赋值
		}
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376

		if task.NextSentAt == nil { // 重新计算
			// 环节起始和截止本地时间
			startLocal := task.TimeStart.Local()
			sY, sM, sD := startLocal.Date()
			startLocal = time.Date(sY, sM, sD, 0, 0, 0, 0, time.Local) // 开始时间以0点开始计算

			// 在当前时间之前,则计算下一个周期时间
			if startLocal.Before(nowO) {
				nextTime := utils.NextTime(nowO, startLocal, task.KpiCycle)
				task.NextSentAt = &nextTime
			} else {
				task.NextSentAt = &startLocal
			}

			// 注.最后一次发送时间和重新计算后的时间相同时,继续获取下一个周期
			if task.LastSentAt != nil {
				nextY, nextM, nextD := task.NextSentAt.Local().Date()
				lastY, lastM, lastD := task.LastSentAt.Local().Date()
				if nextY == lastY && nextM == lastM && nextD == lastD {
					nextTime := utils.NextTimeInc(task.NextSentAt.Local(), task.KpiCycle)
					task.NextSentAt = &nextTime
				}
			}
		}

		// 如果超出截至时间,则周期置空
		if task.NextSentAt.Local().After(task.TimeEnd.Local()) {
			task.NextSentAt = nil
		}

		// 更新任务
		task, err := taskRepository.Insert(task)
		if err != nil {
			return application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		}
	}
	return nil
}
郑周 authored
377
func (rs *EvaluationProjectService) Get(in *command.GetProjectCommand) (interface{}, error) {
378
	transactionContext, err := factory.ValidateStartTransaction(in)
郑周 authored
379
	if err != nil {
380
		return nil, err
郑周 authored
381
	}
382 383 384
	defer func() {
		transactionContext.RollbackTransaction()
	}()
郑周 authored
385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
	projectRepository := factory.CreateEvaluationProjectRepository(map[string]interface{}{"transactionContext": transactionContext})
	project, err := projectRepository.FindOne(map[string]interface{}{"id": in.Id})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}

	projectAdapter := &adapter.EvaluationProjectAdapter{}
	projectAdapter.EvaluationProject = project

	userRepository := factory.CreateUserRepository(map[string]interface{}{"transactionContext": transactionContext})
	if len(project.PmpIds) > 0 {
		_, users, _ := userRepository.Find(map[string]interface{}{"ids": project.PmpIds, "limit": len(project.PmpIds)})
		projectAdapter.TransformPmpAdapter(users)
	}

	if len(project.Recipients) > 0 {
		_, users, _ := userRepository.Find(map[string]interface{}{"ids": project.Recipients, "limit": len(project.Recipients)})
402
		projectAdapter.TransformRecipientAdapter(users, project.PrincipalId)
郑周 authored
403 404
	}
405 406 407
	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
郑周 authored
408 409 410 411 412 413 414 415 416 417 418 419 420
	return projectAdapter, nil
}

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

	projectRepository := factory.CreateEvaluationProjectRepository(map[string]interface{}{"transactionContext": transactionContext})
郑周 authored
421
	taskRepository := factory.CreateNodeTaskRepository(map[string]interface{}{"transactionContext": transactionContext})
422
	staffRepository := factory.CreateStaffAssessTaskRepository(map[string]interface{}{"transactionContext": transactionContext})
423
	summaryRepository := factory.CreateSummaryEvaluationRepository(map[string]interface{}{"transactionContext": transactionContext})
郑周 authored
424 425 426 427 428 429 430 431
	project, err := projectRepository.FindOne(map[string]interface{}{"id": in.Id})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	if _, err := projectRepository.Remove(project); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
432 433 434 435
	// 删除项目已生成的周期评估数据
	if err := staffRepository.RemoveByProjectId(int(project.Id)); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
436 437 438 439
	// 删除项目已生成的周期评估数据
	if err := summaryRepository.RemoveByProjectId(int(project.Id)); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
440 441
	// 移除项目关联的所有定时任务
	tasks, err := taskRepository.Find(map[string]interface{}{"projectId": project.Id})
郑周 authored
442 443 444 445 446 447 448 449 450
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	for i := range tasks {
		if _, err := taskRepository.Remove(tasks[i]); err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		}
	}
郑周 authored
451 452 453 454 455 456 457
	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	return project, nil
}

func (rs *EvaluationProjectService) List(in *command.QueryProjectCommand) (interface{}, error) {
郑周 authored
458
	transactionContext, err := factory.ValidateStartTransaction(in)
郑周 authored
459 460 461 462 463 464 465 466
	if err != nil {
		return nil, err
	}
	defer func() {
		transactionContext.RollbackTransaction()
	}()

	projectRepository := factory.CreateEvaluationProjectRepository(map[string]interface{}{"transactionContext": transactionContext})
郑周 authored
467
	total, projects, err := projectRepository.Find(tool_funs.SimpleStructToMap(in), "template")
郑周 authored
468 469 470
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
郑周 authored
471 472

	now := time.Now().Unix()
郑周 authored
473 474 475 476 477 478 479 480
	pmpUsers := make([]*domain.User, 0)
	pmpUserIds := make([]int64, 0)
	for i := range projects {
		project := projects[i]
		for j := range project.PmpIds {
			userId, _ := strconv.ParseInt(project.PmpIds[j], 10, 64)
			pmpUserIds = append(pmpUserIds, userId)
		}
郑周 authored
481
郑周 authored
482 483
		// 如果是已启用状态时,当前时间超过截至时间显示【已结束】
		if project.State == domain.ProjectStateEnable {
郑周 authored
484 485 486
			if now > project.EndTime.Unix() {
				project.State = domain.ProjectStateDisable
			}
郑周 authored
487
		}
郑周 authored
488
郑周 authored
489
	}
郑周 authored
490
郑周 authored
491 492 493 494 495
	if len(pmpUserIds) > 0 {
		userRepository := factory.CreateUserRepository(map[string]interface{}{"transactionContext": transactionContext})
		_, users, _ := userRepository.Find(map[string]interface{}{"ids": pmpUserIds, "limit": len(pmpUserIds)})
		pmpUsers = users
	}
郑周 authored
496 497 498 499 500

	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
郑周 authored
501
	projectAdapters := adapter.TransformProjectListAdapter(projects, pmpUsers)
郑周 authored
502
	return tool_funs.SimpleWrapGridMap(total, projectAdapters), nil
郑周 authored
503 504
}
郑周 authored
505
func (rs *EvaluationProjectService) Activate(in *command.ActivateProjectCommand) (interface{}, error) {
506 507 508 509 510 511 512 513 514
	lock := xredis.NewLockProjectId(int(in.Id))
	err := lock.Lock()
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	defer func() {
		lock.UnLock()
	}()
郑周 authored
515 516 517 518 519 520 521 522 523
	transactionContext, err := factory.ValidateStartTransaction(in)
	if err != nil {
		return nil, err
	}
	defer func() {
		transactionContext.RollbackTransaction()
	}()

	projectRepository := factory.CreateEvaluationProjectRepository(map[string]interface{}{"transactionContext": transactionContext})
524
	taskRepository := factory.CreateNodeTaskRepository(map[string]interface{}{"transactionContext": transactionContext})
郑周 authored
525
郑周 authored
526 527 528 529
	project, err := projectRepository.FindOne(map[string]interface{}{"id": in.Id})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
郑周 authored
530 531 532 533 534 535
	if project.Template == nil {
		return nil, application.ThrowError(application.BUSINESS_ERROR, "请添加评估模板")
	}
	if len(project.Recipients) == 0 {
		return nil, application.ThrowError(application.BUSINESS_ERROR, "请添加被评估人")
	}
郑周 authored
536
	if project.State == domain.ProjectStateEnable {
郑周 authored
537 538
		return nil, application.ThrowError(application.BUSINESS_ERROR, "项目已启动")
	}
539 540 541
	if project.State == domain.ProjectStatePause {
		return nil, application.ThrowError(application.BUSINESS_ERROR, "项目暂停中,先进行恢复")
	}
郑周 authored
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589
	// 周期内的所有项目,已启用的员工不能重复被评估
	_, projects, err := projectRepository.Find(map[string]interface{}{"companyId": project.CompanyId, "cycleId": project.CycleId}, "template")
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	userMap := map[string]*domain.User{}
	for i := range projects {
		it := projects[i]
		// 排除当前项目
		if in.Id == it.Id {
			continue
		}
		// 启用状态的被评估人
		if it.State == domain.ProjectStateEnable {
			for j := range it.Recipients {
				userMap[it.Recipients[j]] = nil
			}
		}
	}
	ids := make([]string, 0)
	for k := range userMap {
		ids = append(ids, k)
	}
	if len(ids) > 0 {
		userRepository := factory.CreateUserRepository(map[string]interface{}{"transactionContext": transactionContext})
		_, users, err := userRepository.Find(map[string]interface{}{"ids": ids})
		if err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		}
		for i := range users {
			s64 := strconv.FormatInt(users[i].Id, 10)
			userMap[s64] = users[i]
		}
		var build strings.Builder
		for i := range project.Recipients {
			id := project.Recipients[i]
			if user, ok := userMap[id]; ok {
				build.WriteString("[")
				build.WriteString(user.Name)
				build.WriteString("]")
			}
		}
		if build.Len() > 0 {
			return nil, application.ThrowError(application.BUSINESS_ERROR, fmt.Sprintf("请先停止%s正在进行的项目", build.String()))
		}
	}

	project.State = domain.ProjectStateEnable
郑周 authored
590 591 592 593
	project, err = projectRepository.Insert(project)
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
郑周 authored
594
595 596 597 598 599 600 601 602
	// 项目中指标任务负责人
	var principalId = 0
	var projectTaskService = taskService.NewTaskService()
	if len(project.PrincipalId) > 0 {
		intId, _ := strconv.Atoi(project.PrincipalId)
		principalId = intId
	}
郑周 authored
603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
	tasks, err := taskRepository.Find(map[string]interface{}{"projectId": project.Id})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	if len(tasks) == 0 {
		now := time.Now().Local()
		year, month, day := now.Date()
		nowO := time.Date(year, month, day, 0, 0, 0, 0, time.Local) // 当前时间0点0分0秒时刻
		for i := range project.Template.LinkNodes {
			node := project.Template.LinkNodes[i]
			task := &domain.NodeTask{
				Id:           0,
				CompanyId:    project.CompanyId,
				CycleId:      project.CycleId,
				ProjectId:    project.Id,
				NodeId:       node.Id,
				NodeType:     node.Type,
				NodeName:     node.Name,
				NodeDescribe: node.Describe,
				NodeSort:     i + 1,
				TimeStart:    node.TimeStart,
				TimeEnd:      node.TimeEnd,
				KpiCycle:     node.KpiCycle,
			}
郑周 authored
627
郑周 authored
628 629 630 631 632
			// 环节起始和截止本地时间
			startLocal := task.TimeStart.Local()
			sY, sM, sD := startLocal.Date()
			startLocal = time.Date(sY, sM, sD, 0, 0, 0, 0, time.Local) // 开始时间以0点开始计算
			endLocal := task.TimeEnd.Local()
633
郑周 authored
634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
			// 在当前时间之前,则计算下一个周期时间
			if startLocal.Before(nowO) {
				nextTime := utils.NextTime(nowO, startLocal, node.KpiCycle)
				task.NextSentAt = &nextTime
			} else {
				task.NextSentAt = &startLocal
			}
			// 如果超出截至时间,则周期置空
			if task.NextSentAt.After(endLocal) {
				task.NextSentAt = nil
			}

			_, err := taskRepository.Insert(task)
			if err != nil {
				return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
			}

			// 任务指标生成任务
			for j := range node.NodeContents {
				content := node.NodeContents[j]
				if content.IndicatorType == domain.IndicatorTypeTask {
					if principalId == 0 {
						return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "请选择任务负责人")
					}
					err := projectTaskService.CreateTask(transactionContext, &taskCommand.CreateTaskCommand{
						Name:     content.Name,
						LeaderId: principalId,
					})
					if err != nil {
						return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
					}
665 666 667
				}
			}
		}
郑周 authored
668
郑周 authored
669 670 671 672
		err = rs.generateEvaluationItemUsed(transactionContext, project)
		if err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		}
673 674
	}
郑周 authored
675 676 677 678 679 680
	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	return project, nil
}
郑周 authored
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749
func (rs *EvaluationProjectService) Pause(in *command.ActivateProjectCommand) (interface{}, error) {
	transactionContext, err := factory.ValidateStartTransaction(in)
	if err != nil {
		return nil, err
	}
	defer func() {
		transactionContext.RollbackTransaction()
	}()

	projectRepository := factory.CreateEvaluationProjectRepository(map[string]interface{}{"transactionContext": transactionContext})
	taskRepository := factory.CreateNodeTaskRepository(map[string]interface{}{"transactionContext": transactionContext})

	project, err := projectRepository.FindOne(map[string]interface{}{"id": in.Id})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	if project.State != domain.ProjectStateEnable {
		return nil, application.ThrowError(application.BUSINESS_ERROR, "项目未启动")
	}

	project.State = domain.ProjectStatePause
	project, err = projectRepository.Insert(project)
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}

	tasks, err := taskRepository.Find(map[string]interface{}{"projectId": project.Id})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}

	for i := range tasks {
		it := tasks[i]
		it.NextSentAt = nil
		_, err = taskRepository.Insert(it)
		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 project, nil
}

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

	projectRepository := factory.CreateEvaluationProjectRepository(map[string]interface{}{"transactionContext": transactionContext})
	project, err := projectRepository.FindOne(map[string]interface{}{"id": in.Id})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	if project.Template == nil {
		return nil, application.ThrowError(application.BUSINESS_ERROR, "请添加评估模板")
	}
	if len(project.Recipients) == 0 {
		return nil, application.ThrowError(application.BUSINESS_ERROR, "请添加被评估人")
	}
	if project.State == domain.ProjectStateEnable {
		return nil, application.ThrowError(application.BUSINESS_ERROR, "项目已启动")
	}
tangxvhui authored
750 751 752
	// if project.State == domain.ProjectStatePause {
	// 	return nil, application.ThrowError(application.BUSINESS_ERROR, "项目暂停中,先进行恢复")
	// }
郑周 authored
753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816

	// 周期内的所有项目,已启用的员工不能重复被评估
	_, projects, err := projectRepository.Find(map[string]interface{}{"companyId": project.CompanyId, "cycleId": project.CycleId}, "template")
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	userMap := map[string]*domain.User{}
	for i := range projects {
		it := projects[i]
		// 排除当前项目
		if in.Id == it.Id {
			continue
		}
		// 启用状态的被评估人
		if it.State == domain.ProjectStateEnable {
			for j := range it.Recipients {
				userMap[it.Recipients[j]] = nil
			}
		}
	}
	ids := make([]string, 0)
	for k := range userMap {
		ids = append(ids, k)
	}
	if len(ids) > 0 {
		userRepository := factory.CreateUserRepository(map[string]interface{}{"transactionContext": transactionContext})
		_, users, err := userRepository.Find(map[string]interface{}{"ids": ids})
		if err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		}
		for i := range users {
			s64 := strconv.FormatInt(users[i].Id, 10)
			userMap[s64] = users[i]
		}
		var build strings.Builder
		for i := range project.Recipients {
			id := project.Recipients[i]
			if user, ok := userMap[id]; ok {
				build.WriteString("[")
				build.WriteString(user.Name)
				build.WriteString("]")
			}
		}
		if build.Len() > 0 {
			return nil, application.ThrowError(application.BUSINESS_ERROR, fmt.Sprintf("请先停止%s正在进行的项目", build.String()))
		}
	}

	project.State = domain.ProjectStateEnable
	project, err = projectRepository.Insert(project)
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	// 项目恢复,同步更新任务时间
	if err = rs.updateTaskTime(transactionContext, in.Id, nil); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}

	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	return project, nil
}
郑周 authored
817 818 819 820 821 822 823 824 825 826 827 828 829 830 831
func (rs *EvaluationProjectService) Copy(in *command.CopyProjectCommand) (interface{}, error) {
	transactionContext, err := factory.ValidateStartTransaction(in)
	if err != nil {
		return nil, err
	}
	defer func() {
		transactionContext.RollbackTransaction()
	}()
	projectRepository := factory.CreateEvaluationProjectRepository(map[string]interface{}{"transactionContext": transactionContext})
	project, err := projectRepository.FindOne(map[string]interface{}{"id": in.Id})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	// ID重置
	project.Id = 0
郑周 authored
832 833 834
	project.Name = project.Name + " 副本"
	project.CreatorId = in.CreatorId
	project.Recipients = make([]string, 0) // 重置被评估人
835
	project.PrincipalId = ""               // 重置任务负责人
郑周 authored
836
郑周 authored
837
	// 如果拷贝已经启用的模板,默认先设置为待启用
郑周 authored
838
	if project.State == domain.ProjectStateEnable || project.State == domain.ProjectStatePause {
郑周 authored
839 840 841 842 843 844 845 846 847 848 849
		project.State = domain.ProjectStateWaitActive
	}
	project, err = projectRepository.Insert(project)
	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 project, nil
}
850
郑周 authored
851
func (rs *EvaluationProjectService) CheckRecipients(in *command.CheckRecipientCommand) (interface{}, error) {
852 853 854 855 856 857 858
	transactionContext, err := factory.ValidateStartTransaction(in)
	if err != nil {
		return nil, err
	}
	defer func() {
		transactionContext.RollbackTransaction()
	}()
郑周 authored
859
860
	projectRepository := factory.CreateEvaluationProjectRepository(map[string]interface{}{"transactionContext": transactionContext})
郑周 authored
861
郑周 authored
862
	_, projects, err := projectRepository.Find(map[string]interface{}{"companyId": in.CompanyId, "cycleId": in.CycleId}, "template")
863 864 865 866
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
郑周 authored
867 868
	// 周期内的所有项目,员工不能重复被评估
	rids := map[string]bool{}
869
	for i := range projects {
郑周 authored
870
		it := projects[i]
郑周 authored
871
		// 排除当前项目
郑周 authored
872 873 874 875 876 877
		if in.Id == it.Id {
			continue
		}
		if it.State == domain.ProjectStateEnable {
			for j := range it.Recipients {
				rids[it.Recipients[j]] = true
郑周 authored
878
			}
879 880
		}
	}
郑周 authored
881 882 883 884 885
	repeatNum := 0
	for i := range in.Recipients {
		id := in.Recipients[i]
		if _, ok := rids[id]; ok {
			repeatNum++
886 887 888 889 890 891
		}
	}

	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
郑周 authored
892
	return map[string]interface{}{"repeatNum": repeatNum}, nil
893
}
tangxvhui authored
894 895

func (rs *EvaluationProjectService) generateEvaluationItemUsed(transactionContext application.TransactionContext, project *domain.EvaluationProject) error {
896 897 898 899
	itemUsedRepo := factory.CreateEvaluationItemUsedRepository(map[string]interface{}{
		"transactionContext": transactionContext,
	})
	var err error
tangxvhui authored
900
	cnt, _, err := itemUsedRepo.Find(map[string]interface{}{"evaluationProjectId": project.Id, "limit": 1})
901 902 903 904 905 906
	if err != nil {
		return application.ThrowError(application.TRANSACTION_ERROR, "检查评估选项"+err.Error())
	}
	if cnt > 0 {
		return nil
	}
tangxvhui authored
907 908 909 910 911 912 913 914 915 916
	var itemUsedList []*domain.EvaluationItemUsed
	nowTime := time.Now()
	for _, v := range project.Template.LinkNodes {
		for i2, v2 := range v.NodeContents {
			item := domain.EvaluationItemUsed{
				Id:                  0,
				CompanyId:           int(project.CompanyId),
				EvaluationProjectId: int(project.Id),
				NodeId:              int(v.Id),
				NodeType:            v.Type,
tangxvhui authored
917
				SortBy:              i2 + 1,
tangxvhui authored
918 919 920 921 922 923 924 925
				Category:            v2.Category,
				Name:                v2.Name,
				PromptTitle:         v2.PromptTitle,
				PromptText:          v2.PromptText,
				EntryItems:          v2.EntryItems,
				Weight:              v2.Weight,
				Required:            v2.Required,
				EvaluatorId:         int(v2.EvaluatorId),
926
				IndicatorType:       v2.IndicatorType,
tangxvhui authored
927 928 929 930 931 932 933 934 935 936
				CreatedAt:           nowTime,
				UpdatedAt:           nowTime,
			}
			if v2.Rule != nil {
				item.RuleType = v2.Rule.Type
				item.Rule = *v2.Rule
			}
			itemUsedList = append(itemUsedList, &item)
		}
	}
937 938

	err = itemUsedRepo.BatchInsert(itemUsedList)
tangxvhui authored
939 940 941
	if err != nil {
		return application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
tangxvhui authored
942 943
	return nil
}
944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981

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

	cycleTemplateRepository := factory.CreateEvaluationCycleTemplateRepository(map[string]interface{}{"transactionContext": transactionContext})
	cycleTemplate, err := cycleTemplateRepository.FindOne(map[string]interface{}{"id": in.TemplateId, "includeDeleted": true})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	if cycleTemplate == nil || cycleTemplate.Template == nil {
		return nil, application.ThrowError(application.BUSINESS_ERROR, "未找到模板")
	}

	// 指标任务的项目(存在一项类型为任务指标),必须添加项目负责人
	var indicatorTypeTask = 0
outerLoop:
	for i := range cycleTemplate.Template.LinkNodes {
		var node = cycleTemplate.Template.LinkNodes[i]
		for j := range node.NodeContents {
			if node.NodeContents[j].IndicatorType == domain.IndicatorTypeTask {
				indicatorTypeTask = 1
				break outerLoop
			}
		}
	}

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

	return map[string]interface{}{"indicatorTypeTask": indicatorTypeTask}, nil
}
982
tangxvhui authored
983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
// 修复数据用
func (rs *EvaluationProjectService) FixEvaluationItemUsed(id int) error {

	transactionContext, err := factory.CreateTransactionContext(nil)
	if err != nil {
		return application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	if err := transactionContext.StartTransaction(); err != nil {
		return application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	defer func() {
		_ = transactionContext.RollbackTransaction()
	}()
	projectRepository := factory.CreateEvaluationProjectRepository(map[string]interface{}{"transactionContext": transactionContext})
	project, err := projectRepository.FindOne(map[string]interface{}{"id": id})
	if err != nil {
		return application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	err = rs.generateEvaluationItemUsed(transactionContext, project)
	if err != nil {
		return application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	if err := transactionContext.CommitTransaction(); err != nil {
		return application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	return nil
}