cooperation_contract.go 39.1 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 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 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 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 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 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 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 255 256 257 258 259 260 261 262 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 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 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 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 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 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 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 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 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863
package service

import (
	"fmt"
	"github.com/linmadan/egglib-go/core/application"
	"github.com/linmadan/egglib-go/utils/tool_funs"
	"gitlab.fjmaimaimai.com/allied-creation/allied-creation-cooperation/pkg/application/cooperationContract/command"
	"gitlab.fjmaimaimai.com/allied-creation/allied-creation-cooperation/pkg/application/cooperationContract/dto"
	"gitlab.fjmaimaimai.com/allied-creation/allied-creation-cooperation/pkg/application/cooperationContract/query"
	"gitlab.fjmaimaimai.com/allied-creation/allied-creation-cooperation/pkg/application/factory"
	"gitlab.fjmaimaimai.com/allied-creation/allied-creation-cooperation/pkg/domain"
	"gitlab.fjmaimaimai.com/allied-creation/allied-creation-cooperation/pkg/domain/service"
	"gitlab.fjmaimaimai.com/allied-creation/allied-creation-cooperation/pkg/infrastructure/dao"
	"gitlab.fjmaimaimai.com/allied-creation/allied-creation-cooperation/pkg/infrastructure/utils"
	"gitlab.fjmaimaimai.com/allied-creation/allied-creation-cooperation/pkg/log"
	"strconv"
	"time"
)

// CooperationContractService 共创合约服务
type CooperationContractService struct {
}

// CreateCooperationContract 创建共创合约服务
func (cooperationContractService *CooperationContractService) CreateCooperationContract(createCooperationContractCommand *command.CreateCooperationContractCommand) (interface{}, error) {
	if err := createCooperationContractCommand.ValidateCommand(); err != nil {
		return nil, application.ThrowError(application.ARG_ERROR, err.Error())
	}
	transactionContext, err := factory.CreateTransactionContext(nil)
	if err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	if err := transactionContext.StartTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	defer func() {
		_ = transactionContext.RollbackTransaction()
	}()

	// 用户REST服务初始化
	var userService service.UserService
	if value, err := factory.CreateUserService(map[string]interface{}{}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		userService = value
	}

	// 获取操作人
	var operator *domain.User
	if data, err := userService.OperatorFrom(createCooperationContractCommand.CompanyId, createCooperationContractCommand.OrgId, createCooperationContractCommand.UserId); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		operator = data
	}

	// 获取发起人
	var sponsor *domain.User
	sponsorUid, _ := strconv.ParseInt(createCooperationContractCommand.SponsorUid, 10, 64)
	if data, err := userService.OperatorFrom(createCooperationContractCommand.CompanyId, createCooperationContractCommand.OrgId, sponsorUid); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		sponsor = data
	}

	// 公司REST服务初始化
	var companyService service.CompanyService
	if value, err := factory.CreateCompanyService(map[string]interface{}{}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		companyService = value
	}

	// 获取公司信息
	var company *domain.Company
	if data, err := companyService.CompanyFrom(createCooperationContractCommand.CompanyId); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		company = data
	}

	// 组织机构REST服务初始化
	var organizationService service.OrgService
	if value, err := factory.CreateOrganizationService(map[string]interface{}{}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		organizationService = value
	}

	// 获取组织机构信息
	var organization *domain.Org
	if data, err := organizationService.OrgFrom(createCooperationContractCommand.CompanyId, createCooperationContractCommand.OrgId); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		organization = data
	}

	// 共创合约DAO初始化
	var cooperationContractDao *dao.CooperationContractDao
	if value, err := factory.CreateCooperationContractDao(map[string]interface{}{
		"transactionContext": transactionContext,
	}); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	} else {
		cooperationContractDao = value
	}
	// 生成共创合约编号
	contractNumber, err2 := cooperationContractDao.GenerateContractNumber()
	if err2 != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	// 校验共创合约编号是否唯一
	numberAvailable, _ := cooperationContractDao.CheckContractNumberAvailable(map[string]interface{}{
		"companyId":                 createCooperationContractCommand.CompanyId,
		"orgId":                     createCooperationContractCommand.OrgId,
		"cooperationContractNumber": contractNumber,
	})
	if !numberAvailable {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, "新增共创合约异常")
	}

	// 获取承接人
	var undertakers []*domain.Undertaker
	for _, undertaker := range createCooperationContractCommand.Undertakers {
		var undertakerDomain *domain.Undertaker
		undertakerUid, _ := strconv.ParseInt(undertaker.UserId, 10, 64)
		if data, err := userService.UndertakerFrom(createCooperationContractCommand.CompanyId, createCooperationContractCommand.OrgId, undertakerUid); err != nil {
			log.Logger.Error(err.Error())
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		} else {
			undertakerDomain = data
		}

		// 获取推荐人
		var referrerDomain *domain.Referrer
		referrerUid, _ := strconv.ParseInt(undertaker.ReferrerId, 10, 64)
		if referrerUid > 0 {
			if data, err := userService.ReferrerFrom(createCooperationContractCommand.CompanyId, createCooperationContractCommand.OrgId, referrerUid); err != nil {
				log.Logger.Error(err.Error())
				return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
			} else {
				referrerDomain = data
			}
		}

		// 获取业务员
		var salesmanDomain *domain.Salesman
		salesmanUid, _ := strconv.ParseInt(undertaker.SalesmanId, 10, 64)
		if salesmanUid > 0 {
			if data, err := userService.SalesmanFrom(createCooperationContractCommand.CompanyId, createCooperationContractCommand.OrgId, salesmanUid); err != nil {
				log.Logger.Error(err.Error())
				return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
			} else {
				salesmanDomain = data
			}
		}

		undertakers = append(undertakers, &domain.Undertaker{
			UndertakerId:              0,
			UserId:                    undertakerDomain.UserId,
			CooperationContractNumber: contractNumber,
			UserBaseId:                undertakerDomain.UserBaseId,
			Org:                       undertakerDomain.Org,
			Orgs:                      undertakerDomain.Orgs,
			Department:                undertakerDomain.Department,
			Roles:                     undertakerDomain.Roles,
			UserInfo:                  undertakerDomain.UserInfo,
			UserType:                  undertakerDomain.UserType,
			Referrer:                  referrerDomain,
			Salesman:                  salesmanDomain,
			Status:                    0,
			Company:                   company,
			ContractAttachment:        nil,
		})
	}

	// 获取相关人
	var relevantPeople []*domain.Relevant
	for _, relevantPersonUid := range createCooperationContractCommand.RelevantPeople {
		var relevantDomain *domain.Relevant
		relevantUid, _ := strconv.ParseInt(relevantPersonUid, 10, 64)
		if data, err := userService.RelevantFrom(createCooperationContractCommand.CompanyId, createCooperationContractCommand.OrgId, relevantUid); err != nil {
			log.Logger.Error(err.Error())
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		} else {
			relevantDomain = data
		}
		relevantPeople = append(relevantPeople, &domain.Relevant{
			RelevantId:                0,
			CooperationContractNumber: contractNumber,
			UserId:                    relevantDomain.UserId,
			UserBaseId:                relevantDomain.UserBaseId,
			Org:                       relevantDomain.Org,
			Orgs:                      relevantDomain.Orgs,
			Department:                relevantDomain.Department,
			Roles:                     relevantDomain.Roles,
			UserInfo:                  relevantDomain.UserInfo,
			UserType:                  relevantDomain.UserType,
			Status:                    relevantDomain.Status,
			Company:                   relevantDomain.Company,
		})
	}

	// 获取分红激励规则列表
	var dividendsIncentivesRules []*domain.DividendsIncentivesRule
	for _, dividendsIncentivesRule := range createCooperationContractCommand.DividendsIncentivesRules {
		dividendsIncentivesRules = append(dividendsIncentivesRules, &domain.DividendsIncentivesRule{
			DividendsIncentivesRuleId:     0,
			CooperationContractNumber:     contractNumber,
			ReferrerPercentage:            dividendsIncentivesRule.ReferrerPercentage,
			SalesmanPercentage:            dividendsIncentivesRule.SalesmanPercentage,
			DividendsIncentivesPercentage: dividendsIncentivesRule.DividendsIncentivesPercentage,
			DividendsIncentivesStage:      int64(dividendsIncentivesRule.DividendsIncentivesStage),
			DividendsIncentivesStageEnd:   dividendsIncentivesRule.DividendsIncentivesStageEnd,
			DividendsIncentivesStageStart: dividendsIncentivesRule.DividendsIncentivesStageStart,
			Org:                           organization,
			Company:                       company,
			UpdatedAt:                     time.Time{},
			DeletedAt:                     time.Time{},
			CreatedAt:                     time.Now(),
		})
	}

	// 获取金额激励规则
	var moneyIncentivesRules []*domain.MoneyIncentivesRule
	for _, moneyIncentivesRule := range createCooperationContractCommand.MoneyIncentivesRules {
		moneyIncentivesRules = append(moneyIncentivesRules, &domain.MoneyIncentivesRule{
			MoneyIncentivesRuleId:     0,
			CooperationContractNumber: contractNumber,
			MoneyIncentivesAmount:     float64(moneyIncentivesRule.MoneyIncentivesAmount),
			MoneyIncentivesStage:      int64(moneyIncentivesRule.MoneyIncentivesStage),
			MoneyIncentivesStageEnd:   moneyIncentivesRule.MoneyIncentivesStageEnd,
			MoneyIncentivesStageStart: moneyIncentivesRule.MoneyIncentivesStageStart,
			MoneyIncentivesTime:       time.Now(),
			ReferrerPercentage:        moneyIncentivesRule.ReferrerPercentage,
			SalesmanPercentage:        moneyIncentivesRule.SalesmanPercentage,
			Org:                       organization,
			Company:                   company,
			UpdatedAt:                 time.Time{},
			DeletedAt:                 time.Time{},
			CreatedAt:                 time.Now(),
		})
	}

	// 查找共创模式
	var cooperationModeRepository domain.CooperationModeRepository
	if value, err := factory.CreateCooperationModeRepository(map[string]interface{}{
		"transactionContext": transactionContext,
	}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		cooperationModeRepository = value
	}
	cooperationMode, err := cooperationModeRepository.FindOne(map[string]interface{}{"cooperationModeNumber": createCooperationContractCommand.CooperationModeNumber})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	if cooperationMode == nil {
		return nil, application.ThrowError(application.RES_NO_FIND_ERROR, fmt.Sprintf("%s", createCooperationContractCommand.CooperationModeNumber))
	} else {
		newCooperationContract := &domain.CooperationContract{
			CooperationContractDescription:     createCooperationContractCommand.CooperationContractDescription,
			CooperationContractName:            createCooperationContractCommand.CooperationContractName,
			CooperationContractNumber:          contractNumber,
			CooperationProjectNumber:           createCooperationContractCommand.CooperationProjectNumber,
			CooperationContractUndertakerTypes: createCooperationContractCommand.CooperationContractUndertakerTypes,
			CooperationContractSponsor:         sponsor,
			CooperationMode:                    cooperationMode,
			Status:                             1,
			Org:                                organization,
			Company:                            company,
			Operator:                           operator,
			DividendsIncentivesRules:           dividendsIncentivesRules,
			MoneyIncentivesRules:               moneyIncentivesRules,
			Undertakers:                        undertakers,
			RelevantPeople:                     relevantPeople,
			OperateTime:                        time.Now(),
			CreatedAt:                          time.Now(),
			DeletedAt:                          time.Time{},
			UpdatedAt:                          time.Time{},
		}

		// 共创合约仓储初始化
		var cooperationContractRepository domain.CooperationContractRepository
		if value, err := factory.CreateCooperationContractRepository(map[string]interface{}{
			"transactionContext": transactionContext,
		}); err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		} else {
			cooperationContractRepository = value
		}

		if cooperationContract, err := cooperationContractRepository.Save(newCooperationContract); err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		} else {
			if err := transactionContext.CommitTransaction(); err != nil {
				return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
			}
			return cooperationContract, nil
		}
	}
}

// GetCooperationContract 返回共创合约服务
func (cooperationContractService *CooperationContractService) GetCooperationContract(getCooperationContractQuery *query.GetCooperationContractQuery) (interface{}, error) {
	if err := getCooperationContractQuery.ValidateQuery(); err != nil {
		return nil, application.ThrowError(application.ARG_ERROR, err.Error())
	}
	transactionContext, err := factory.CreateTransactionContext(nil)
	if err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	if err := transactionContext.StartTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	defer func() {
		_ = transactionContext.RollbackTransaction()
	}()
	var cooperationContractRepository domain.CooperationContractRepository
	if value, err := factory.CreateCooperationContractRepository(map[string]interface{}{
		"transactionContext": transactionContext,
	}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		cooperationContractRepository = value
	}
	cooperationContract, err := cooperationContractRepository.FindOne(map[string]interface{}{"cooperationContractId": getCooperationContractQuery.CooperationContractId})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	if cooperationContract == nil {
		return nil, application.ThrowError(application.RES_NO_FIND_ERROR, fmt.Sprintf("%s", strconv.FormatInt(getCooperationContractQuery.CooperationContractId, 10)))
	} else {
		// 共创合约DAO初始化
		var cooperationContractDao *dao.CooperationContractDao
		if value, err := factory.CreateCooperationContractDao(map[string]interface{}{
			"transactionContext": transactionContext,
		}); err != nil {
			return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
		} else {
			cooperationContractDao = value
		}
		// 获取可删除的承接对象类型
		undertakerTypesUncheckedAvailable, err := cooperationContractDao.CheckUndertakerTypesUncheckedAvailable(map[string]interface{}{
			"cooperationContractNumber":          cooperationContract.CooperationContractNumber,
			"cooperationContractUndertakerTypes": cooperationContract.CooperationContractUndertakerTypes,
		})
		if err != nil {
			return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
		}
		cooperationContractDto := &dto.CooperationContractDto{}
		if err := cooperationContractDto.LoadDto(cooperationContract, undertakerTypesUncheckedAvailable); 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 cooperationContractDto, nil
	}
}

// ListCooperationContract 返回共创合约服务列表
func (cooperationContractService *CooperationContractService) ListCooperationContract(listCooperationContractQuery *query.ListCooperationContractQuery) (interface{}, error) {
	if err := listCooperationContractQuery.ValidateQuery(); err != nil {
		return nil, application.ThrowError(application.ARG_ERROR, err.Error())
	}
	transactionContext, err := factory.CreateTransactionContext(nil)
	if err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	if err := transactionContext.StartTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	defer func() {
		_ = transactionContext.RollbackTransaction()
	}()
	var cooperationContractRepository domain.CooperationContractRepository
	if value, err := factory.CreateCooperationContractRepository(map[string]interface{}{
		"transactionContext": transactionContext,
	}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		cooperationContractRepository = value
	}
	if count, cooperationContracts, err := cooperationContractRepository.Find(tool_funs.SimpleStructToMap(listCooperationContractQuery)); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		if err := transactionContext.CommitTransaction(); err != nil {
			return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
		}
		return map[string]interface{}{
			"grid": map[string]interface{}{
				"total": count,
				"list":  cooperationContracts,
			},
		}, nil
	}
}

// RemoveCooperationContract 移除共创合约服务
func (cooperationContractService *CooperationContractService) RemoveCooperationContract(removeCooperationContractCommand *command.RemoveCooperationContractCommand) (interface{}, error) {
	if err := removeCooperationContractCommand.ValidateCommand(); err != nil {
		return nil, application.ThrowError(application.ARG_ERROR, err.Error())
	}
	transactionContext, err := factory.CreateTransactionContext(nil)
	if err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	if err := transactionContext.StartTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	defer func() {
		_ = transactionContext.RollbackTransaction()
	}()
	var cooperationContractRepository domain.CooperationContractRepository
	if value, err := factory.CreateCooperationContractRepository(map[string]interface{}{
		"transactionContext": transactionContext,
	}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		cooperationContractRepository = value
	}
	cooperationContract, err := cooperationContractRepository.FindOne(map[string]interface{}{"cooperationContractId": removeCooperationContractCommand.CooperationContractId})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	if cooperationContract == nil {
		return nil, application.ThrowError(application.RES_NO_FIND_ERROR, fmt.Sprintf("%s", strconv.FormatInt(removeCooperationContractCommand.CooperationContractId, 10)))
	}
	if cooperationContract, err := cooperationContractRepository.Remove(cooperationContract); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		if err := transactionContext.CommitTransaction(); err != nil {
			return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
		}
		return cooperationContract, nil
	}
}

// BatchRemoveCooperationContract 批量移除共创合约
func (cooperationContractService *CooperationContractService) BatchRemoveCooperationContract(batchRemoveCooperationContractCommand *command.BatchRemoveCooperationContractCommand) (interface{}, error) {
	if err := batchRemoveCooperationContractCommand.ValidateCommand(); err != nil {
		return nil, application.ThrowError(application.ARG_ERROR, err.Error())
	}
	transactionContext, err := factory.CreateTransactionContext(nil)
	if err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	if err := transactionContext.StartTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	defer func() {
		_ = transactionContext.RollbackTransaction()
	}()
	var cooperationContractRepository domain.CooperationContractRepository
	if value, err := factory.CreateCooperationContractRepository(map[string]interface{}{
		"transactionContext": transactionContext,
	}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		cooperationContractRepository = value
	}
	cooperationContractIds, _ := utils.SliceAtoi(batchRemoveCooperationContractCommand.CooperationContractIds)
	if count, cooperationContracts, err := cooperationContractRepository.Find(map[string]interface{}{
		"cooperationContractIds": cooperationContractIds,
	}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		if count > 0 {
			cooperationContractsRemoved, err := cooperationContractRepository.BatchRemove(cooperationContracts)
			if 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 cooperationContractsRemoved, nil
		} else {
			return map[string]interface{}{}, nil
		}
	}
}

// OperateCooperationContract 暂停或恢复共创合约
func (cooperationContractService *CooperationContractService) OperateCooperationContract(operateCooperationContractCommand *command.OperateCooperationContractCommand) (interface{}, error) {
	if err := operateCooperationContractCommand.ValidateCommand(); err != nil {
		return nil, application.ThrowError(application.ARG_ERROR, err.Error())
	}
	transactionContext, err := factory.CreateTransactionContext(nil)
	if err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	if err := transactionContext.StartTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	defer func() {
		_ = transactionContext.RollbackTransaction()
	}()
	var cooperationContractRepository domain.CooperationContractRepository
	if value, err := factory.CreateCooperationContractRepository(map[string]interface{}{
		"transactionContext": transactionContext,
	}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		cooperationContractRepository = value
	}
	cooperationContract, err := cooperationContractRepository.FindOne(map[string]interface{}{"cooperationContractId": operateCooperationContractCommand.CooperationContractId})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	if cooperationContract == nil {
		return nil, application.ThrowError(application.RES_NO_FIND_ERROR, fmt.Sprintf("%s", string(operateCooperationContractCommand.CooperationContractId)))
	}
	if err := cooperationContract.Update(map[string]interface{}{
		"action": operateCooperationContractCommand.Action,
	}); err != nil {
		return nil, application.ThrowError(application.BUSINESS_ERROR, err.Error())
	}
	if cooperationContract, err := cooperationContractRepository.UpdateOne(cooperationContract); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		if err := transactionContext.CommitTransaction(); err != nil {
			return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
		}
		return cooperationContract, nil
	}
}

// BatchOperateCooperationContract 批量暂停或恢复共创合约
func (cooperationContractService *CooperationContractService) BatchOperateCooperationContract(batchOperateCooperationContractCommand *command.BatchOperateCooperationContractCommand) (interface{}, error) {
	if err := batchOperateCooperationContractCommand.ValidateCommand(); err != nil {
		return nil, application.ThrowError(application.ARG_ERROR, err.Error())
	}
	transactionContext, err := factory.CreateTransactionContext(nil)
	if err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	if err := transactionContext.StartTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	defer func() {
		_ = transactionContext.RollbackTransaction()
	}()
	var cooperationContractRepository domain.CooperationContractRepository
	if value, err := factory.CreateCooperationContractRepository(map[string]interface{}{
		"transactionContext": transactionContext,
	}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		cooperationContractRepository = value
	}
	cooperationContractIds, _ := utils.SliceAtoi(batchOperateCooperationContractCommand.CooperationContractIds)
	if count, cooperationContracts, err := cooperationContractRepository.Find(map[string]interface{}{
		"cooperationContractIds": cooperationContractIds,
	}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		if count > 0 {
			for i, _ := range cooperationContracts {
				cooperationContracts[i].Status = batchOperateCooperationContractCommand.Action
			}
			cooperationContractsOperated, err := cooperationContractRepository.UpdateMany(cooperationContracts)
			if 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 cooperationContractsOperated, nil
		} else {
			return map[string]interface{}{}, nil
		}
	}
}

// SearchCooperationContract 查询共创合约
func (cooperationContractService *CooperationContractService) SearchCooperationContract(searchCooperationContractQuery *query.SearchCooperationContractQuery) (interface{}, error) {
	if err := searchCooperationContractQuery.ValidateQuery(); err != nil {
		return nil, application.ThrowError(application.ARG_ERROR, err.Error())
	}
	transactionContext, err := factory.CreateTransactionContext(nil)
	if err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	if err := transactionContext.StartTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	defer func() {
		_ = transactionContext.RollbackTransaction()
	}()
	var cooperationContractRepository domain.CooperationContractRepository
	if value, err := factory.CreateCooperationContractRepository(map[string]interface{}{
		"transactionContext": transactionContext,
	}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		cooperationContractRepository = value
	}
	if count, cooperationContracts, err := cooperationContractRepository.Find(tool_funs.SimpleStructToMap(searchCooperationContractQuery)); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		if err := transactionContext.CommitTransaction(); err != nil {
			return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
		}
		return map[string]interface{}{
			"grid": map[string]interface{}{
				"total": count,
				"list":  cooperationContracts,
			},
		}, nil
	}
}

// SearchCooperationContractByUndertaker 根据承接人返回共创项目合约
func (cooperationContractService *CooperationContractService) SearchCooperationContractByUndertaker(searchCooperationContractByUndertakerQuery *query.SearchCooperationContractByUndertakerQuery) (interface{}, error) {
	if err := searchCooperationContractByUndertakerQuery.ValidateQuery(); err != nil {
		return nil, application.ThrowError(application.ARG_ERROR, err.Error())
	}
	transactionContext, err := factory.CreateTransactionContext(nil)
	if err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	if err := transactionContext.StartTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	defer func() {
		_ = transactionContext.RollbackTransaction()
	}()
	if err := transactionContext.CommitTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	return nil, nil
}

// UpdateCooperationContract 更新共创合约服务
func (cooperationContractService *CooperationContractService) UpdateCooperationContract(updateCooperationContractCommand *command.UpdateCooperationContractCommand) (interface{}, error) {
	if err := updateCooperationContractCommand.ValidateCommand(); err != nil {
		return nil, application.ThrowError(application.ARG_ERROR, err.Error())
	}
	transactionContext, err := factory.CreateTransactionContext(nil)
	if err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	if err := transactionContext.StartTransaction(); err != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
	}
	defer func() {
		_ = transactionContext.RollbackTransaction()
	}()

	// 公司REST服务初始化
	var companyService service.CompanyService
	if value, err := factory.CreateCompanyService(map[string]interface{}{}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		companyService = value
	}

	// 获取公司信息
	var company *domain.Company
	if data, err := companyService.CompanyFrom(updateCooperationContractCommand.CompanyId); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		company = data
	}

	// 组织机构REST服务初始化
	var organizationService service.OrgService
	if value, err := factory.CreateOrganizationService(map[string]interface{}{}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		organizationService = value
	}

	// 获取组织机构信息
	var organization *domain.Org
	if data, err := organizationService.OrgFrom(updateCooperationContractCommand.CompanyId, updateCooperationContractCommand.OrgId); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		organization = data
	}

	var cooperationContractRepository domain.CooperationContractRepository
	if value, err := factory.CreateCooperationContractRepository(map[string]interface{}{
		"transactionContext": transactionContext,
	}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		cooperationContractRepository = value
	}
	cooperationContract, err := cooperationContractRepository.FindOne(map[string]interface{}{"cooperationContractId": updateCooperationContractCommand.CooperationContractId})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	}
	if cooperationContract == nil {
		return nil, application.ThrowError(application.RES_NO_FIND_ERROR, fmt.Sprintf("%s", string(updateCooperationContractCommand.CooperationContractId)))
	}
	// 更新合约基础信息
	if err := cooperationContract.Update(tool_funs.SimpleStructToMap(updateCooperationContractCommand)); err != nil {
		return nil, application.ThrowError(application.BUSINESS_ERROR, err.Error())
	}
	// 用户REST服务初始化
	var userService service.UserService
	if value, err := factory.CreateUserService(map[string]interface{}{}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		userService = value
	}

	// 获取发起人
	var sponsor *domain.User
	sponsorUid, _ := strconv.ParseInt(updateCooperationContractCommand.SponsorUid, 10, 64)
	if data, err := userService.OperatorFrom(updateCooperationContractCommand.CompanyId, updateCooperationContractCommand.OrgId, sponsorUid); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		sponsor = data
	}

	// 更新发起人
	cooperationContract.CooperationContractSponsor = sponsor

	// 获取相关人
	var relevantPeople []*domain.Relevant
	for _, relevantPersonUid := range updateCooperationContractCommand.RelevantPeople {
		var relevantDomain *domain.Relevant
		relevantUid, _ := strconv.ParseInt(relevantPersonUid, 10, 64)
		if data, err := userService.RelevantFrom(updateCooperationContractCommand.CompanyId, updateCooperationContractCommand.OrgId, relevantUid); err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		} else {
			relevantDomain = data
		}
		relevantPeople = append(relevantPeople, &domain.Relevant{
			RelevantId:                relevantDomain.RelevantId,
			CooperationContractNumber: cooperationContract.CooperationContractNumber,
			UserId:                    relevantDomain.UserId,
			UserBaseId:                relevantDomain.UserBaseId,
			Org:                       relevantDomain.Org,
			Orgs:                      relevantDomain.Orgs,
			Department:                relevantDomain.Department,
			Roles:                     relevantDomain.Roles,
			UserInfo:                  relevantDomain.UserInfo,
			UserType:                  relevantDomain.UserType,
			Status:                    relevantDomain.Status,
			Company:                   relevantDomain.Company,
		})
	}
	// 更新合约相关人
	cooperationContract.RelevantPeople = relevantPeople

	// 获取承接人
	var undertakers []*domain.Undertaker
	for _, undertaker := range updateCooperationContractCommand.Undertakers {
		var undertakerDomain *domain.Undertaker
		undertakerUid, _ := strconv.ParseInt(undertaker.UserId, 10, 64)
		if data, err := userService.UndertakerFrom(updateCooperationContractCommand.CompanyId, updateCooperationContractCommand.OrgId, undertakerUid); err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		} else {
			undertakerDomain = data
		}

		// 获取推荐人
		var referrerDomain *domain.Referrer
		referrerUid, _ := strconv.ParseInt(undertaker.ReferrerId, 10, 64)
		if referrerUid > 0 {
			if data, err := userService.ReferrerFrom(updateCooperationContractCommand.CompanyId, updateCooperationContractCommand.OrgId, referrerUid); err != nil {
				return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
			} else {
				referrerDomain = data
			}
		}

		// 获取业务员
		var salesmanDomain *domain.Salesman
		salesmanUid, _ := strconv.ParseInt(undertaker.SalesmanId, 10, 64)
		if salesmanUid > 0 {
			if data, err := userService.SalesmanFrom(updateCooperationContractCommand.CompanyId, updateCooperationContractCommand.OrgId, salesmanUid); err != nil {
				return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
			} else {
				salesmanDomain = data
			}
		}

		undertakers = append(undertakers, &domain.Undertaker{
			UndertakerId:              undertaker.UndertakerId,
			UserId:                    undertakerDomain.UserId,
			CooperationContractNumber: cooperationContract.CooperationContractNumber,
			UserBaseId:                undertakerDomain.UserBaseId,
			Org:                       undertakerDomain.Org,
			Orgs:                      undertakerDomain.Orgs,
			Department:                undertakerDomain.Department,
			Roles:                     undertakerDomain.Roles,
			UserInfo:                  undertakerDomain.UserInfo,
			UserType:                  undertakerDomain.UserType,
			Referrer:                  referrerDomain,
			Salesman:                  salesmanDomain,
			Status:                    undertakerDomain.Status,
			Company:                   undertakerDomain.Company,
			ContractAttachment:        nil,
		})
	}
	// 更新承接人
	cooperationContract.Undertakers = undertakers

	// 获取分红规则列表
	var dividendsIncentivesRules []*domain.DividendsIncentivesRule
	for _, dividendsIncentivesRule := range updateCooperationContractCommand.DividendsIncentivesRules {
		dividendsIncentivesRuleId, _ := strconv.ParseInt(dividendsIncentivesRule.DividendsIncentivesRuleId, 10, 64)
		dividendsIncentivesRules = append(dividendsIncentivesRules, &domain.DividendsIncentivesRule{
			DividendsIncentivesRuleId:     dividendsIncentivesRuleId,
			CooperationContractNumber:     cooperationContract.CooperationContractNumber,
			ReferrerPercentage:            dividendsIncentivesRule.ReferrerPercentage,
			SalesmanPercentage:            dividendsIncentivesRule.SalesmanPercentage,
			DividendsIncentivesPercentage: dividendsIncentivesRule.DividendsIncentivesPercentage,
			DividendsIncentivesStage:      int64(dividendsIncentivesRule.DividendsIncentivesStage),
			DividendsIncentivesStageEnd:   dividendsIncentivesRule.DividendsIncentivesStageEnd,
			DividendsIncentivesStageStart: dividendsIncentivesRule.DividendsIncentivesStageStart,
			Org:                           organization,
			Company:                       company,
			UpdatedAt:                     time.Time{},
			DeletedAt:                     time.Time{},
			CreatedAt:                     time.Now(),
		})
	}
	// 更新分红规则列表
	cooperationContract.DividendsIncentivesRules = dividendsIncentivesRules

	// 获取金额激励规则列表
	var moneyIncentivesRules []*domain.MoneyIncentivesRule
	for _, moneyIncentivesRule := range updateCooperationContractCommand.MoneyIncentivesRules {
		moneyIncentivesRuleId, _ := strconv.ParseInt(moneyIncentivesRule.MoneyIncentivesRuleId, 10, 64)
		moneyIncentivesRules = append(moneyIncentivesRules, &domain.MoneyIncentivesRule{
			MoneyIncentivesRuleId:     moneyIncentivesRuleId,
			CooperationContractNumber: cooperationContract.CooperationContractNumber,
			MoneyIncentivesAmount:     float64(moneyIncentivesRule.MoneyIncentivesAmount),
			MoneyIncentivesStage:      int64(moneyIncentivesRule.MoneyIncentivesStage),
			MoneyIncentivesStageEnd:   moneyIncentivesRule.MoneyIncentivesStageEnd,
			MoneyIncentivesStageStart: moneyIncentivesRule.MoneyIncentivesStageStart,
			MoneyIncentivesTime:       time.Now(),
			ReferrerPercentage:        moneyIncentivesRule.ReferrerPercentage,
			SalesmanPercentage:        moneyIncentivesRule.SalesmanPercentage,
			Org:                       organization,
			Company:                   company,
			UpdatedAt:                 time.Time{},
			DeletedAt:                 time.Time{},
			CreatedAt:                 time.Now(),
		})
	}
	// 更新金额激励规则列表
	cooperationContract.MoneyIncentivesRules = moneyIncentivesRules

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

func NewCooperationContractService(options map[string]interface{}) *CooperationContractService {
	newCooperationContractService := &CooperationContractService{}
	return newCooperationContractService
}