审查视图

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

import (
郑周 authored
4
	"fmt"
tangxvhui authored
5 6 7 8
	"strconv"
	"strings"
	"time"
郑周 authored
9 10 11 12 13
	"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"
14 15
	taskCommand "gitlab.fjmaimaimai.com/allied-creation/performance/pkg/application/task/command"
	taskService "gitlab.fjmaimaimai.com/allied-creation/performance/pkg/application/task/service"
郑周 authored
16
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/domain"
郑周 authored
17
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/utils"
郑周 authored
18 19 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
)

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
53
		CycleId:   in.CycleId,
郑周 authored
54 55 56 57 58 59 60 61 62 63
		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
64 65 66 67 68 69 70 71 72

	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
73 74 75
	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
郑周 authored
76
	return projectAdapter, nil
郑周 authored
77 78 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

}

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
114 115 116 117 118 119 120 121 122

	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
123 124 125
	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
郑周 authored
126
	return projectAdapter, nil
郑周 authored
127 128 129 130 131 132 133 134 135 136 137 138
}

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
139
	cycleRepository := factory.CreateEvaluationCycleRepository(map[string]interface{}{"transactionContext": transactionContext})
郑周 authored
140 141
	cycleTemplateRepository := factory.CreateEvaluationCycleTemplateRepository(map[string]interface{}{"transactionContext": transactionContext})
郑周 authored
142
	project, err := projectRepository.FindOne(map[string]interface{}{"id": in.Id})
郑周 authored
143 144 145 146
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
郑周 authored
147 148 149 150 151 152
	// 如果是已经启用的项目,只能编辑环节的截至时间
	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
153
郑周 authored
154 155 156 157 158 159 160 161
		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, "评估截至时间不能超出周期截至时间")
		}
162
		// 更新项目模板中的环节时间
郑周 authored
163 164 165 166
		if project.Template != nil {
			for i := range project.Template.LinkNodes {
				node := project.Template.LinkNodes[i]
				node.TimeEnd = &end
郑周 authored
167 168
			}
		}
169
		// 更新项目截止时间(暂时环节中的时间未分开)
郑周 authored
170 171 172 173
		project.EndTime = end
		project, err = projectRepository.Insert(project)
		if err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
郑周 authored
174
		}
175
		// 项目调整截止时间,同步更新任务时间
郑周 authored
176
		if err := rs.updateTaskTime(transactionContext, in.Id, &end); err != nil {
177
			return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
郑周 authored
178
		}
郑周 authored
179
郑周 authored
180 181 182 183 184
		if err := transactionContext.CommitTransaction(); err != nil {
			return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
		}
		return project, nil
	} else {
郑周 authored
185 186 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
		//_, 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
214
郑周 authored
215 216 217 218 219 220 221
		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
222
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
		// 指标任务的项目(存在一项类型为任务指标),必须添加项目负责人
		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
239 240 241 242 243 244 245 246
		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
247
郑周 authored
248 249 250 251 252 253
		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
254
郑周 authored
255 256 257
		if start.Before(minTime) {
			return nil, application.ThrowError(application.BUSINESS_ERROR, "评估起始时间不能超出周期起始时间")
		}
郑周 authored
258
郑周 authored
259 260 261
		if end.After(maxTime) {
			return nil, application.ThrowError(application.BUSINESS_ERROR, "评估截至时间不能超出周期截至时间")
		}
郑周 authored
262
郑周 authored
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
		// 判断起始时间,是否有被评估人的任务
		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
289 290 291 292
		if project.State == domain.ProjectStateWaitConfig {
			project.State = domain.ProjectStateWaitActive
		}
		project.Recipients = in.Recipients
293
		project.PrincipalId = in.PrincipalId
郑周 authored
294 295 296 297 298 299 300 301
		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
302 303
			node.TimeStart = &start
			node.TimeEnd = &end
郑周 authored
304
		}
郑周 authored
305 306 307 308 309 310 311 312
		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
313 314 315
	}
}
316
// 更新项目截止时间,同步任务截止时间
郑周 authored
317
func (rs *EvaluationProjectService) updateTaskTime(context application.TransactionContext, projectId int64, end *time.Time) error {
318 319 320 321 322 323 324 325 326 327 328 329 330
	// 查看任务过程,重新日计算任务截至期
	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
331 332 333 334

		if end != nil {
			task.TimeEnd = end // 先赋值
		}
335 336 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

		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
375
func (rs *EvaluationProjectService) Get(in *command.GetProjectCommand) (interface{}, error) {
376
	transactionContext, err := factory.ValidateStartTransaction(in)
郑周 authored
377
	if err != nil {
378
		return nil, err
郑周 authored
379
	}
380 381 382
	defer func() {
		transactionContext.RollbackTransaction()
	}()
郑周 authored
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
	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)})
400
		projectAdapter.TransformRecipientAdapter(users, project.PrincipalId)
郑周 authored
401 402
	}
403 404 405
	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
郑周 authored
406 407 408 409 410 411 412 413 414 415 416 417 418
	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
419
	taskRepository := factory.CreateNodeTaskRepository(map[string]interface{}{"transactionContext": transactionContext})
420
	staffRepository := factory.CreateStaffAssessTaskRepository(map[string]interface{}{"transactionContext": transactionContext})
421
	summaryRepository := factory.CreateSummaryEvaluationRepository(map[string]interface{}{"transactionContext": transactionContext})
郑周 authored
422 423 424 425 426 427 428 429
	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())
	}
430 431 432 433
	// 删除项目已生成的周期评估数据
	if err := staffRepository.RemoveByProjectId(int(project.Id)); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
434 435 436 437
	// 删除项目已生成的周期评估数据
	if err := summaryRepository.RemoveByProjectId(int(project.Id)); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
438 439
	// 移除项目关联的所有定时任务
	tasks, err := taskRepository.Find(map[string]interface{}{"projectId": project.Id})
郑周 authored
440 441 442 443 444 445 446 447 448
	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
449 450 451 452 453 454 455
	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
456
	transactionContext, err := factory.ValidateStartTransaction(in)
郑周 authored
457 458 459 460 461 462 463 464
	if err != nil {
		return nil, err
	}
	defer func() {
		transactionContext.RollbackTransaction()
	}()

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

	now := time.Now().Unix()
郑周 authored
471 472 473 474 475 476 477 478
	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
479
郑周 authored
480 481
		// 如果是已启用状态时,当前时间超过截至时间显示【已结束】
		if project.State == domain.ProjectStateEnable {
郑周 authored
482 483 484
			if now > project.EndTime.Unix() {
				project.State = domain.ProjectStateDisable
			}
郑周 authored
485
		}
郑周 authored
486
郑周 authored
487
	}
郑周 authored
488
郑周 authored
489 490 491 492 493
	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
494 495 496 497 498

	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
郑周 authored
499
	projectAdapters := adapter.TransformProjectListAdapter(projects, pmpUsers)
郑周 authored
500
	return tool_funs.SimpleWrapGridMap(total, projectAdapters), nil
郑周 authored
501 502
}
郑周 authored
503
func (rs *EvaluationProjectService) Activate(in *command.ActivateProjectCommand) (interface{}, error) {
郑周 authored
504 505 506 507 508 509 510 511 512
	transactionContext, err := factory.ValidateStartTransaction(in)
	if err != nil {
		return nil, err
	}
	defer func() {
		transactionContext.RollbackTransaction()
	}()

	projectRepository := factory.CreateEvaluationProjectRepository(map[string]interface{}{"transactionContext": transactionContext})
513
	taskRepository := factory.CreateNodeTaskRepository(map[string]interface{}{"transactionContext": transactionContext})
郑周 authored
514
郑周 authored
515 516 517 518
	project, err := projectRepository.FindOne(map[string]interface{}{"id": in.Id})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
郑周 authored
519 520 521 522 523 524
	if project.Template == nil {
		return nil, application.ThrowError(application.BUSINESS_ERROR, "请添加评估模板")
	}
	if len(project.Recipients) == 0 {
		return nil, application.ThrowError(application.BUSINESS_ERROR, "请添加被评估人")
	}
郑周 authored
525
	if project.State == domain.ProjectStateEnable {
郑周 authored
526 527
		return nil, application.ThrowError(application.BUSINESS_ERROR, "项目已启动")
	}
郑周 authored
528
郑周 authored
529 530 531 532 533 534 535 536 537 538 539 540 541 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
	// 周期内的所有项目,已启用的员工不能重复被评估
	_, 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
577 578 579 580
	project, err = projectRepository.Insert(project)
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
郑周 authored
581
582 583 584 585 586 587 588 589
	// 项目中指标任务负责人
	var principalId = 0
	var projectTaskService = taskService.NewTaskService()
	if len(project.PrincipalId) > 0 {
		intId, _ := strconv.Atoi(project.PrincipalId)
		principalId = intId
	}
郑周 authored
590
	now := time.Now().Local()
郑周 authored
591 592
	year, month, day := now.Date()
	nowO := time.Date(year, month, day, 0, 0, 0, 0, time.Local) // 当前时间0点0分0秒时刻
郑周 authored
593 594 595
	for i := range project.Template.LinkNodes {
		node := project.Template.LinkNodes[i]
		task := &domain.NodeTask{
郑周 authored
596 597 598 599 600 601 602 603
			Id:           0,
			CompanyId:    project.CompanyId,
			CycleId:      project.CycleId,
			ProjectId:    project.Id,
			NodeId:       node.Id,
			NodeType:     node.Type,
			NodeName:     node.Name,
			NodeDescribe: node.Describe,
郑周 authored
604
			NodeSort:     i + 1,
郑周 authored
605 606 607
			TimeStart:    node.TimeStart,
			TimeEnd:      node.TimeEnd,
			KpiCycle:     node.KpiCycle,
郑周 authored
608
		}
郑周 authored
609 610

		// 环节起始和截止本地时间
611
		startLocal := task.TimeStart.Local()
612 613
		sY, sM, sD := startLocal.Date()
		startLocal = time.Date(sY, sM, sD, 0, 0, 0, 0, time.Local) // 开始时间以0点开始计算
614
		endLocal := task.TimeEnd.Local()
郑周 authored
615
郑周 authored
616
		// 在当前时间之前,则计算下一个周期时间
郑周 authored
617
		if startLocal.Before(nowO) {
郑周 authored
618
			nextTime := utils.NextTime(nowO, startLocal, node.KpiCycle)
郑周 authored
619 620
			task.NextSentAt = &nextTime
		} else {
621
			task.NextSentAt = &startLocal
郑周 authored
622 623
		}
		// 如果超出截至时间,则周期置空
624
		if task.NextSentAt.After(endLocal) {
郑周 authored
625 626 627 628 629 630 631
			task.NextSentAt = nil
		}

		task, err := taskRepository.Insert(task)
		if err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		}
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648

		// 任务指标生成任务
		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())
				}
			}
		}
郑周 authored
649 650
	}
651 652 653 654 655
	err = rs.generateEvaluationItemUsed(transactionContext, project)
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
郑周 authored
656 657 658 659 660 661
	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	return project, nil
}
郑周 authored
662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 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 750 751 752 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
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, "项目已启动")
	}

	// 周期内的所有项目,已启用的员工不能重复被评估
	_, 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
795 796 797 798 799 800 801 802 803 804 805 806 807 808 809
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
810 811 812
	project.Name = project.Name + " 副本"
	project.CreatorId = in.CreatorId
	project.Recipients = make([]string, 0) // 重置被评估人
813
	project.PrincipalId = ""               // 重置任务负责人
郑周 authored
814
郑周 authored
815
	// 如果拷贝已经启用的模板,默认先设置为待启用
郑周 authored
816
	if project.State == domain.ProjectStateEnable || project.State == domain.ProjectStatePause {
郑周 authored
817 818 819 820 821 822 823 824 825 826 827
		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
}
828
郑周 authored
829
func (rs *EvaluationProjectService) CheckRecipients(in *command.CheckRecipientCommand) (interface{}, error) {
830 831 832 833 834 835 836
	transactionContext, err := factory.ValidateStartTransaction(in)
	if err != nil {
		return nil, err
	}
	defer func() {
		transactionContext.RollbackTransaction()
	}()
郑周 authored
837
838
	projectRepository := factory.CreateEvaluationProjectRepository(map[string]interface{}{"transactionContext": transactionContext})
郑周 authored
839
郑周 authored
840
	_, projects, err := projectRepository.Find(map[string]interface{}{"companyId": in.CompanyId, "cycleId": in.CycleId}, "template")
841 842 843 844
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
郑周 authored
845 846
	// 周期内的所有项目,员工不能重复被评估
	rids := map[string]bool{}
847
	for i := range projects {
郑周 authored
848
		it := projects[i]
郑周 authored
849
		// 排除当前项目
郑周 authored
850 851 852 853 854 855
		if in.Id == it.Id {
			continue
		}
		if it.State == domain.ProjectStateEnable {
			for j := range it.Recipients {
				rids[it.Recipients[j]] = true
郑周 authored
856
			}
857 858
		}
	}
郑周 authored
859 860 861 862 863
	repeatNum := 0
	for i := range in.Recipients {
		id := in.Recipients[i]
		if _, ok := rids[id]; ok {
			repeatNum++
864 865 866 867 868 869
		}
	}

	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
郑周 authored
870
	return map[string]interface{}{"repeatNum": repeatNum}, nil
871
}
tangxvhui authored
872 873

func (rs *EvaluationProjectService) generateEvaluationItemUsed(transactionContext application.TransactionContext, project *domain.EvaluationProject) error {
tangxvhui authored
874 875 876 877 878 879 880 881 882 883
	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
884
				SortBy:              i2 + 1,
tangxvhui authored
885 886 887 888 889 890 891 892
				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),
893
				IndicatorType:       v2.IndicatorType,
tangxvhui authored
894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910
				CreatedAt:           nowTime,
				UpdatedAt:           nowTime,
			}
			if v2.Rule != nil {
				item.RuleType = v2.Rule.Type
				item.Rule = *v2.Rule
			}
			itemUsedList = append(itemUsedList, &item)
		}
	}
	itemUsedRepo := factory.CreateEvaluationItemUsedRepository(map[string]interface{}{
		"transactionContext": transactionContext,
	})
	err := itemUsedRepo.BatchInsert(itemUsedList)
	if err != nil {
		return application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
tangxvhui authored
911 912
	return nil
}
913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950

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
}