cooperation_contract.go 78.2 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 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 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 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 982 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 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734
package service

import (
	"crypto/md5"
	"encoding/hex"
	"encoding/json"
	"fmt"
	"github.com/linmadan/egglib-go/core/application"
	"github.com/linmadan/egglib-go/transaction/pg"
	"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/event/subscriber"
	"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 cooperationProjectRepository domain.CooperationProjectRepository
	if value, err := factory.CreateCooperationProjectRepository(map[string]interface{}{
		"transactionContext": transactionContext,
	}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		cooperationProjectRepository = value
	}

	// 共创确认消息推送领域服务初始化
	var informJoinCreationContractService service.InformJoinCreationContractService
	if value, err := factory.CreateInformJoinCreationContractService(map[string]interface{}{
		//"transactionContext": transactionContext,
	}); err != nil {
		return []interface{}{}, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		informJoinCreationContractService = value
		_ = informJoinCreationContractService.Subscribe(&subscriber.MessageServiceSubscriber{
			//TransactionContext: transactionContext.(*pgTransaction.TransactionContext),
		})
	}

	// 获取操作人
	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, "获取操作人失败")
	} 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, "获取发起人失败")
	} 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, "获取公司信息失败")
	} 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, "获取组织机构失败")
	} else {
		organization = data
	}

	// 部门REST服务初始化
	var departmentService service.DepartmentService
	if value, err := factory.CreateDepartmentService(map[string]interface{}{}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		departmentService = value
	}

	// 获取部门
	var department *domain.Department
	departmentId, err := strconv.ParseInt(createCooperationContractCommand.DepartmentId, 10, 64)
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "获取部门失败")
	}
	if data, err := departmentService.DepartmentFrom(createCooperationContractCommand.CompanyId, departmentId); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		department = 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(map[string]interface{}{
		"companyId": createCooperationContractCommand.CompanyId,
	})
	if err2 != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err2.Error())
	}

	// 校验共创合约编号是否唯一
	numberAvailable, _ := cooperationContractDao.CheckContractNumberAvailable(map[string]interface{}{
		"companyId":                 createCooperationContractCommand.CompanyId,
		"cooperationContractNumber": contractNumber,
	})
	if !numberAvailable {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, "新增共创合约异常")
	}

	// 获取共创项目
	cooperationProject, err := cooperationProjectRepository.FindOne(map[string]interface{}{
		"cooperationProjectNumber": createCooperationContractCommand.CooperationProjectNumber,
		"orgId":                    organization.OrgId,
		"companyId":                company.CompanyId,
	})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "共创项目不存在")
	}
	if cooperationProject == nil {
		return nil, application.ThrowError(application.RES_NO_FIND_ERROR, fmt.Sprintf("%s", createCooperationContractCommand.CooperationProjectNumber))
	}

	// 承接人
	var undertakers []*domain.Undertaker
	for _, undertaker := range createCooperationContractCommand.Undertakers {
		// 获取承接人
		var undertakerDomain *domain.Undertaker
		undertakerUid, err := strconv.ParseInt(undertaker.UserId, 10, 64)
		if err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "承接人UID错误")
		}
		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
		}

		// 校验承接人是否属于承接对象,1员工,2共创用户,4公开
		typeExist := false
		if !utils.IsContain(createCooperationContractCommand.CooperationContractUndertakerTypes, 3) {
			for _, userType := range createCooperationContractCommand.CooperationContractUndertakerTypes {
				if utils.IsContain(createCooperationContractCommand.CooperationContractUndertakerTypes, undertakerDomain.UserType&userType) {
					typeExist = true
				}
			}
			if !typeExist {
				return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "承接人"+undertakerDomain.UserName+"不属于承接对象")
			}
		}

		// 获取推荐人
		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
			}
		}

		// 解析附件
		var attachments []*domain.Attachment
		for _, attachment := range undertaker.ContractAttachment {
			attachments = append(attachments, &domain.Attachment{
				FileType: attachment.FileType,
				Name:     attachment.Name,
				Url:      attachment.Url,
				FileSize: attachment.FileSize,
			})
		}

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

	// 获取相关人
	var relevantPeople []*domain.Relevant
	for _, relevantPersonUid := range createCooperationContractCommand.RelevantIds {
		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:                       organization,
			Orgs:                      relevantDomain.Orgs,
			Department:                relevantDomain.Department,
			Roles:                     relevantDomain.Roles,
			UserInfo:                  relevantDomain.UserInfo,
			UserType:                  relevantDomain.UserType,
			Status:                    relevantDomain.Status,
			Company:                   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:      dividendsIncentivesRule.DividendsIncentivesStage,
			DividendsIncentivesStageCN:    utils.NumberToCNNumber(int(dividendsIncentivesRule.DividendsIncentivesStage)),
			DividendsIncentivesStageEnd:   dividendsIncentivesRule.DividendsIncentivesStageEnd,
			DividendsIncentivesStageStart: dividendsIncentivesRule.DividendsIncentivesStageStart,
			Org:                           organization,
			Company:                       company,
			UpdatedAt:                     time.Time{},
			DeletedAt:                     time.Time{},
			CreatedAt:                     time.Now(),
			Remarks:                       dividendsIncentivesRule.Remarks,
		})
	}

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

	// 查找共创模式
	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{}{
		"companyId":             createCooperationContractCommand.CompanyId,
		"orgId":                 createCooperationContractCommand.OrgId,
		"cooperationModeNumber": createCooperationContractCommand.CooperationModeNumber,
	})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "共创模式不存在")
	}
	if cooperationMode == nil {
		return nil, application.ThrowError(application.RES_NO_FIND_ERROR, fmt.Sprintf("%s", createCooperationContractCommand.CooperationModeNumber))
	} else {
		incentivesType := 0
		if len(dividendsIncentivesRules) > 0 {
			incentivesType = domain.TYPE_DIVIDNEDS_INCENTIVES
		} else if len(moneyIncentivesRules) > 0 {
			incentivesType = domain.TYPE_MONEY_INCENTIVES
		}
		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,
			Department:                         department,
			Operator:                           operator,
			DividendsIncentivesRules:           dividendsIncentivesRules,
			MoneyIncentivesRules:               moneyIncentivesRules,
			IncentivesType:                     int32(incentivesType),
			Undertakers:                        undertakers,
			RelevantPeople:                     relevantPeople,
			OperateTime:                        time.Now(),
			CreatedAt:                          time.Now(),
			DeletedAt:                          time.Time{},
			UpdatedAt:                          time.Time{},
			CooperationProjectId:               cooperationProject.CooperationProjectId,
		}

		// 共创合约仓储初始化
		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 = cooperationContractService.UpdateCooperationProjectStaticsInfo(transactionContext,
				cooperationContract.Company.CompanyId,
				cooperationContract.Org.OrgId,
				cooperationContract.CooperationProjectNumber); 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())
			}
			// 消息推送
			var jointDataSlices []service.JoinData
			for _, undertaker := range cooperationContract.Undertakers {
				jointDataSlices = append(jointDataSlices, service.JoinData{
					CreationContractId:     cooperationContract.CooperationContractId,
					CreationContractName:   cooperationContract.CooperationContractName,
					CreationContractNumber: cooperationContract.CooperationContractNumber,
					CreationProjectId:      cooperationProject.CooperationProjectId,
					CreationProjectNumber:  cooperationProject.CooperationProjectNumber,
					CreationProjectName:    cooperationProject.CooperationProjectName,
					UserId:                 undertaker.UserId,
					UserBaseId:             undertaker.UserBaseId,
					OrgId:                  undertaker.Org.OrgId,
					CompanyId:              undertaker.Company.CompanyId,
				})
			}

			if err3 := informJoinCreationContractService.Join(jointDataSlices); err3 != nil {
				return nil, application.ThrowError(application.TRANSACTION_ERROR, err3.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, "共创合约不存在")
	}
	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
		}

		// 可以去除勾选的承接人对象列表
		var undertakerTypesUncheckedAvailable []int32

		// 判断承接对象是否存在员工
		gotUser, err := cooperationContractDao.CheckUndertakerTypesUncheckedAvailable(map[string]interface{}{
			"cooperationContractNumber": cooperationContract.CooperationContractNumber,
			"user":                      true,
		})
		if err != nil {
			return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
		}
		if !gotUser {
			undertakerTypesUncheckedAvailable = append(undertakerTypesUncheckedAvailable, 1)
		}

		// 判断承接对象是否存在共创用户
		gotPartner, err := cooperationContractDao.CheckUndertakerTypesUncheckedAvailable(map[string]interface{}{
			"cooperationContractNumber": cooperationContract.CooperationContractNumber,
			"partner":                   true,
		})
		if err != nil {
			return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
		}
		if !gotPartner {
			undertakerTypesUncheckedAvailable = append(undertakerTypesUncheckedAvailable, 2)
		}

		// 判断承接人是否存在公开用户
		if !gotUser && !gotPartner {
			undertakerTypesUncheckedAvailable = append(undertakerTypesUncheckedAvailable, 3)
		}

		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, "共创合约不存在")
	}
	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,
		"offsetLimit":            false,
	}); 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()
	}()

	// 用户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(operateCooperationContractCommand.CompanyId, operateCooperationContractCommand.OrgId, operateCooperationContractCommand.UserId); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		operator = 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
	}

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

	// 获取共创合约
	cooperationContract, err := cooperationContractRepository.FindOne(map[string]interface{}{"cooperationContractId": operateCooperationContractCommand.CooperationContractId})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_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 cooperationContractUpdated, err := cooperationContractRepository.UpdateOne(cooperationContract); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		// 新增共创合约变更记录
		var operationType int32
		if operateCooperationContractCommand.Action == 2 {
			operationType = domain.PAUSE
		} else if operateCooperationContractCommand.Action == 1 {
			operationType = domain.RECOVER
		}
		newCooperationContractChangeLog := &domain.CooperationContractChangeLog{
			IncentivesRule:            "",
			IncentivesRuleDetail:      "",
			OperationType:             operationType,
			Undertakers:               "",
			CooperationContractNumber: cooperationContractUpdated.CooperationContractNumber,
			Company:                   cooperationContractUpdated.Company,
			Org:                       cooperationContract.Org,
			Operator:                  operator,
			CreatedAt:                 time.Now(),
		}

		// 保存共创合约变更记录
		if _, err20 := cooperationContractChangeLogRepository.Save(newCooperationContractChangeLog); err20 != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err20.Error())
		}
		if err := transactionContext.CommitTransaction(); err != nil {
			return nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
		}
		return cooperationContractUpdated, 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
	}

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

	// 用户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(batchOperateCooperationContractCommand.CompanyId, batchOperateCooperationContractCommand.OrgId, batchOperateCooperationContractCommand.UserId); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		operator = data
	}

	cooperationContractIds, err := utils.SliceAtoi(batchOperateCooperationContractCommand.CooperationContractIds)
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "转换共创合约ID列表错误")
	}
	if count, cooperationContracts, err := cooperationContractRepository.Find(map[string]interface{}{
		"cooperationContractIds": cooperationContractIds,
		"offsetLimit":            false,
	}); 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())
			}
			for _, cooperationContractOperated := range cooperationContracts {
				// 新增共创合约变更记录
				var operationType int32
				if batchOperateCooperationContractCommand.Action == 2 {
					operationType = domain.PAUSE
				} else if batchOperateCooperationContractCommand.Action == 1 {
					operationType = domain.RECOVER
				}
				newCooperationContractChangeLog := &domain.CooperationContractChangeLog{
					IncentivesRule:            "",
					IncentivesRuleDetail:      "",
					OperationType:             operationType,
					Undertakers:               "",
					CooperationContractNumber: cooperationContractOperated.CooperationContractNumber,
					Company:                   cooperationContractOperated.Company,
					Org:                       cooperationContractOperated.Org,
					Operator:                  operator,
					CreatedAt:                 time.Now(),
					OperatorTime:              time.Now(),
				}

				// 保存共创合约变更记录
				if _, err20 := cooperationContractChangeLogRepository.Save(newCooperationContractChangeLog); err20 != nil {
					return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err20.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()
	}()

	// 共创合约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
	}

	// 查询共创项目合约
	if count, cooperationContractByUndertakers, err := cooperationContractDao.SearchCooperationContractByUndertaker(tool_funs.SimpleStructToMap(searchCooperationContractByUndertakerQuery)); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		cooperationContractByUndertakerDtos := make([]*dto.CooperationContractByUndertakerDto, 0)
		for _, cooperationContractByUndertaker := range cooperationContractByUndertakers {
			cooperationContractByUndertakerDto := &dto.CooperationContractByUndertakerDto{}
			if err := cooperationContractByUndertakerDto.LoadDto(cooperationContractByUndertaker); err != nil {
				return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
			}
			cooperationContractByUndertakerDtos = append(cooperationContractByUndertakerDtos, cooperationContractByUndertakerDto)
		}
		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":  cooperationContractByUndertakerDtos,
			},
		}, 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, err1 := factory.CreateTransactionContext(nil)
	if err1 != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err1.Error())
	}
	if err2 := transactionContext.StartTransaction(); err2 != nil {
		return nil, application.ThrowError(application.TRANSACTION_ERROR, err2.Error())
	}
	defer func() {
		_ = transactionContext.RollbackTransaction()
	}()

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

	// 共创项目仓储初始化
	var cooperationProjectRepository domain.CooperationProjectRepository
	if value, err := factory.CreateCooperationProjectRepository(map[string]interface{}{
		"transactionContext": transactionContext,
	}); err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		cooperationProjectRepository = value
	}

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

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

	// 共创确认消息推送领域服务初始化
	var informJoinCreationContractService service.InformJoinCreationContractService
	if value, err := factory.CreateInformJoinCreationContractService(map[string]interface{}{
		//"transactionContext": transactionContext,
	}); err != nil {
		return []interface{}{}, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
	} else {
		informJoinCreationContractService = value
		_ = informJoinCreationContractService.Subscribe(&subscriber.MessageServiceSubscriber{
			//TransactionContext: transactionContext.(*pgTransaction.TransactionContext),
		})
	}

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

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

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

	// 获取待更新的共创合约
	cooperationContractFound, err8 := cooperationContractRepository.FindOne(map[string]interface{}{
		"cooperationContractId": updateCooperationContractCommand.CooperationContractId,
	})
	if err8 != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "共创合约不存在")
	}
	if cooperationContractFound == nil {
		return nil, application.ThrowError(application.RES_NO_FIND_ERROR, fmt.Sprintf("%s", string(updateCooperationContractCommand.CooperationContractId)))
	}

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

	// 获取发起人
	var sponsor *domain.User
	sponsorUid, err := strconv.ParseInt(updateCooperationContractCommand.SponsorUid, 10, 64)
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "发起人UID类型错误")
	}
	if data, err11 := userService.OperatorFrom(updateCooperationContractCommand.CompanyId, updateCooperationContractCommand.OrgId, sponsorUid); err11 != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "获取发起人失败")
	} else {
		sponsor = data
	}

	// 获取共创项目
	cooperationProject, err := cooperationProjectRepository.FindOne(map[string]interface{}{
		"cooperationProjectNumber": cooperationContractFound.CooperationProjectNumber,
		"orgId":                    organization.OrgId,
		"companyId":                company.CompanyId,
	})
	if err != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "共创项目不存在")
	}
	if cooperationProject == nil {
		return nil, application.ThrowError(application.RES_NO_FIND_ERROR, fmt.Sprintf("%s", cooperationContractFound.CooperationProjectNumber))
	}

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

	// 获取待更新的共创合约
	cooperationContract, err9 := cooperationContractRepository.FindOne(map[string]interface{}{
		"cooperationContractId": updateCooperationContractCommand.CooperationContractId,
	})
	if err9 != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "共创合约不存在")
	}
	if cooperationContract == nil {
		return nil, application.ThrowError(application.RES_NO_FIND_ERROR, fmt.Sprintf("%s", string(updateCooperationContractCommand.CooperationContractId)))
	}

	// 更新合约基础信息
	if err10 := cooperationContract.Update(tool_funs.SimpleStructToMap(updateCooperationContractCommand)); err10 != nil {
		return nil, application.ThrowError(application.BUSINESS_ERROR, err10.Error())
	}

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

	// 获取相关人
	var relevantPeople []*domain.Relevant
	for _, relevantPersonUid := range updateCooperationContractCommand.RelevantIds {
		var relevantDomain *domain.Relevant
		relevantUid, err := strconv.ParseInt(relevantPersonUid, 10, 64)
		if err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "相关人UID类型错误")
		}
		if data, err12 := userService.RelevantFrom(updateCooperationContractCommand.CompanyId, updateCooperationContractCommand.OrgId, relevantUid); err12 != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "获取相关人失败")
		} else {
			relevantDomain = data
		}
		relevantPeople = append(relevantPeople, &domain.Relevant{
			RelevantId:                relevantDomain.RelevantId,
			CooperationContractNumber: cooperationContract.CooperationContractNumber,
			UserId:                    relevantDomain.UserId,
			UserBaseId:                relevantDomain.UserBaseId,
			Org:                       organization,
			Orgs:                      relevantDomain.Orgs,
			Department:                relevantDomain.Department,
			Roles:                     relevantDomain.Roles,
			UserInfo:                  relevantDomain.UserInfo,
			UserType:                  relevantDomain.UserType,
			Status:                    relevantDomain.Status,
			Company:                   company,
		})
	}

	// 更新合约相关人
	cooperationContract.RelevantPeople = relevantPeople

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

		// 校验:判断用户类型是否属于承接对象
		typeExist := false
		if !utils.IsContain(cooperationContract.CooperationContractUndertakerTypes, 3) { // 非公开类型校验
			for _, userType := range cooperationContract.CooperationContractUndertakerTypes {
				if utils.IsContain(cooperationContract.CooperationContractUndertakerTypes, undertakerDomain.UserType&userType) {
					typeExist = true
				}
			}
			if !typeExist {
				return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "承接人"+undertakerDomain.UserName+"不属于承接对象")
			}
		}

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

		// 获取业务员
		var salesmanDomain *domain.Salesman
		if undertaker.SalesmanId != "" {
			salesmanUid, err22 := strconv.ParseInt(undertaker.SalesmanId, 10, 64)
			if err22 != nil {
				return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "业务员UID类型错误")
			}
			if salesmanUid > 0 {
				if data, err15 := userService.SalesmanFrom(updateCooperationContractCommand.CompanyId, updateCooperationContractCommand.OrgId, salesmanUid); err15 != nil {
					return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "获取业务员失败")
				} else {
					salesmanDomain = data
				}
			}
		}

		// 承接人ID类型转换
		undertakerId, err16 := strconv.ParseInt(undertaker.UndertakerId, 10, 64)
		if err16 != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err16.Error())
		}

		var contractAttachments []*domain.Attachment
		for _, attachment := range undertaker.ContractAttachment {
			contractAttachments = append(contractAttachments, &domain.Attachment{
				FileType: attachment.FileType,
				Name:     attachment.Name,
				Url:      attachment.Url,
				FileSize: attachment.FileSize,
			})
		}

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

	// 获取待添加的承接人
	var undertakersToAdd []*domain.Undertaker
	for _, undertaker := range undertakers {
		if undertaker.UndertakerId == 0 {
			undertakersToAdd = append(undertakersToAdd, undertaker)
		}
	}

	// 更新承接人
	cooperationContract.Undertakers = undertakers

	// 获取分红规则列表
	var dividendsIncentivesRules []*domain.DividendsIncentivesRule
	for _, dividendsIncentivesRule := range updateCooperationContractCommand.DividendsIncentivesRules {
		dividendsIncentivesRuleId, err17 := strconv.ParseInt(dividendsIncentivesRule.DividendsIncentivesRuleId, 10, 64)
		if err17 != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err17.Error())
		}
		dividendsIncentivesRules = append(dividendsIncentivesRules, &domain.DividendsIncentivesRule{
			DividendsIncentivesRuleId:     dividendsIncentivesRuleId,
			CooperationContractNumber:     cooperationContract.CooperationContractNumber,
			ReferrerPercentage:            dividendsIncentivesRule.ReferrerPercentage,
			SalesmanPercentage:            dividendsIncentivesRule.SalesmanPercentage,
			DividendsIncentivesPercentage: dividendsIncentivesRule.DividendsIncentivesPercentage,
			DividendsIncentivesStage:      dividendsIncentivesRule.DividendsIncentivesStage,
			DividendsIncentivesStageCN:    utils.NumberToCNNumber(int(dividendsIncentivesRule.DividendsIncentivesStage)),
			DividendsIncentivesStageEnd:   dividendsIncentivesRule.DividendsIncentivesStageEnd,
			DividendsIncentivesStageStart: dividendsIncentivesRule.DividendsIncentivesStageStart,
			Org:                           organization,
			Company:                       company,
			UpdatedAt:                     time.Time{},
			DeletedAt:                     time.Time{},
			CreatedAt:                     time.Now(),
			Remarks:                       dividendsIncentivesRule.Remarks,
		})
	}

	// 更新分红规则列表
	cooperationContract.DividendsIncentivesRules = dividendsIncentivesRules

	// 获取金额激励规则列表
	var moneyIncentivesRules []*domain.MoneyIncentivesRule
	for _, moneyIncentivesRule := range updateCooperationContractCommand.MoneyIncentivesRules {
		moneyIncentivesRuleId, err18 := strconv.ParseInt(moneyIncentivesRule.MoneyIncentivesRuleId, 10, 64)
		if err18 != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err18.Error())
		}
		moneyIncentivesRules = append(moneyIncentivesRules, &domain.MoneyIncentivesRule{
			MoneyIncentivesRuleId:     moneyIncentivesRuleId,
			CooperationContractNumber: cooperationContract.CooperationContractNumber,
			MoneyIncentivesAmount:     moneyIncentivesRule.MoneyIncentivesAmount,
			MoneyIncentivesStage:      moneyIncentivesRule.MoneyIncentivesStage,
			MoneyIncentivesStageCN:    utils.NumberToCNNumber(int(moneyIncentivesRule.MoneyIncentivesStage)),
			MoneyIncentivesStageEnd:   moneyIncentivesRule.MoneyIncentivesStageEnd,
			MoneyIncentivesStageStart: moneyIncentivesRule.MoneyIncentivesStageStart,
			MoneyIncentivesTime:       moneyIncentivesRule.MoneyIncentivesTime,
			ReferrerPercentage:        moneyIncentivesRule.ReferrerPercentage,
			SalesmanPercentage:        moneyIncentivesRule.SalesmanPercentage,
			Org:                       organization,
			Company:                   company,
			UpdatedAt:                 time.Time{},
			DeletedAt:                 time.Time{},
			CreatedAt:                 time.Now(),
			Remarks:                   moneyIncentivesRule.Remarks,
		})
	}

	// 更新金额激励规则列表
	cooperationContract.MoneyIncentivesRules = moneyIncentivesRules

	// 判断激励规则变更
	incentivesType := 0
	if len(dividendsIncentivesRules) > 0 {
		incentivesType = domain.TYPE_DIVIDNEDS_INCENTIVES
	} else if len(moneyIncentivesRules) > 0 {
		incentivesType = domain.TYPE_MONEY_INCENTIVES
	}
	cooperationContract.IncentivesType = int32(incentivesType)

	// 保存共创合约变更
	if cooperationContractSaved, err19 := cooperationContractRepository.Save(cooperationContract); err19 != nil {
		return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err19.Error())
	} else {
		// 保存共创合约变更记录
		var incentivesRuleChange string
		var incentivesRuleChangeDetail string

		// 规则变更,原【(激励阶段:激励百分点,阶段有效期,推荐人抽点,关联业务员抽点),(激励阶段:激励百分点,阶段有效期,推荐人抽点,关联业务员抽点)】-->更新后【(激励阶段:激励百分点,阶段有效期,推荐人抽点,关联业务员抽点)】
		if cooperationContractFound.IncentivesType != cooperationContract.IncentivesType { // 1.激励规则类型变更
			if cooperationContractFound.IncentivesType == domain.TYPE_DIVIDNEDS_INCENTIVES && cooperationContract.IncentivesType == domain.TYPE_MONEY_INCENTIVES { // 业绩分红变更为金额激励
				// 业绩分红-->金额激励
				incentivesRuleChange = cooperationContract.ReturnIncentivesName(domain.IncentivesType(cooperationContractFound.IncentivesType)) + "-->" + cooperationContract.ReturnIncentivesName(domain.IncentivesType(cooperationContract.IncentivesType))
				//【第一阶段:20,2021-01-01~2021-12-31,,,;第二阶段:20,2021-01-01~2021-12-31,30,10】变更为【第一阶段:20,2021-01-01~2021-12-31,,,;】
				// 原业绩分红激励规则
				var dividendsIncentivesRuleOriginal string
				for _, dividendsIncentivesRule := range cooperationContractFound.DividendsIncentivesRules {
					dividendsIncentivesRuleOriginal = dividendsIncentivesRuleOriginal + dividendsIncentivesRule.DividendsIncentivesStageCN +
						":" + fmt.Sprint(dividendsIncentivesRule.DividendsIncentivesPercentage) +
						"," + dividendsIncentivesRule.DividendsIncentivesStageStart.Format("2006-01-02") +
						"~" + dividendsIncentivesRule.DividendsIncentivesStageEnd.Format("2006-01-02") +
						"," + fmt.Sprint(dividendsIncentivesRule.ReferrerPercentage) +
						"," + fmt.Sprint(dividendsIncentivesRule.SalesmanPercentage) + ";"
				}
				dividendsIncentivesRuleOriginalTmp := "【" + dividendsIncentivesRuleOriginal + "】"

				// 变更后的金额激励规则
				var moneyIncentivesRuleChanged string
				for _, moneyIncentivesRule := range cooperationContract.MoneyIncentivesRules {
					moneyIncentivesRuleChanged = moneyIncentivesRuleChanged + moneyIncentivesRule.MoneyIncentivesStageCN +
						":" +
						"," + moneyIncentivesRule.MoneyIncentivesTime.Format("2006-01-02") +
						"," + fmt.Sprint(moneyIncentivesRule.ReferrerPercentage) +
						"," + fmt.Sprint(moneyIncentivesRule.SalesmanPercentage) + ";"
				}
				moneyIncentivesRuleOriginalTmp := "【" + moneyIncentivesRuleChanged + "】"

				// 拼接规则变更
				incentivesRuleChangeDetail = dividendsIncentivesRuleOriginalTmp + " 变更为 " + moneyIncentivesRuleOriginalTmp
			} else if cooperationContractFound.IncentivesType == domain.TYPE_MONEY_INCENTIVES && cooperationContract.IncentivesType == domain.TYPE_DIVIDNEDS_INCENTIVES { // 金额激励变更为业绩分红
				//	金额激励-->业绩分红
				incentivesRuleChange = cooperationContract.ReturnIncentivesName(domain.IncentivesType(cooperationContractFound.IncentivesType)) + "-->" + cooperationContract.ReturnIncentivesName(domain.IncentivesType(cooperationContract.IncentivesType))
				//【第一阶段:20,2021-01-01~2021-12-31,,,;第二阶段:20,2021-01-01~2021-12-31,30,10】变更为【第一阶段:20,2021-01-01~2021-12-31,,,;】
				// 原金额激励规则
				var moneyIncentivesRuleOriginal string
				for _, moneyIncentivesRule := range cooperationContractFound.MoneyIncentivesRules {
					moneyIncentivesRuleOriginal = moneyIncentivesRuleOriginal + moneyIncentivesRule.MoneyIncentivesStageCN +
						":" +
						"," + moneyIncentivesRule.MoneyIncentivesTime.Format("2006-01-02") +
						"," + fmt.Sprint(moneyIncentivesRule.ReferrerPercentage) +
						"," + fmt.Sprint(moneyIncentivesRule.SalesmanPercentage) + ";"
				}
				moneyIncentivesRuleOriginalTmp := "【" + moneyIncentivesRuleOriginal + "】"

				// 变更后的业绩分红激励规则
				var dividendsIncentivesRuleChanged string
				for _, dividendsIncentivesRule := range cooperationContract.DividendsIncentivesRules {
					dividendsIncentivesRuleChanged = dividendsIncentivesRuleChanged + dividendsIncentivesRule.DividendsIncentivesStageCN +
						":" + fmt.Sprint(dividendsIncentivesRule.DividendsIncentivesPercentage) +
						"," + dividendsIncentivesRule.DividendsIncentivesStageStart.Format("2006-01-02") +
						"~" + dividendsIncentivesRule.DividendsIncentivesStageEnd.Format("2006-01-02") +
						"," + fmt.Sprint(dividendsIncentivesRule.ReferrerPercentage) +
						"," + fmt.Sprint(dividendsIncentivesRule.SalesmanPercentage) + ";"
				}
				dividendsIncentivesRuleOriginalTmp := "【" + dividendsIncentivesRuleChanged + "】"

				// 拼接规则变更
				incentivesRuleChangeDetail = moneyIncentivesRuleOriginalTmp + " 变更为 " + dividendsIncentivesRuleOriginalTmp
			}
		} else if cooperationContractFound.IncentivesType == cooperationContract.IncentivesType { // 2.激励规则内容变更
			if cooperationContractFound.IncentivesType == domain.TYPE_DIVIDNEDS_INCENTIVES { // 业绩分红规则内容变更
				// 计算原合约哈希值
				// cooperationContractFoundByte := *(*[]byte)(unsafe.Pointer(&cooperationContractFound.DividendsIncentivesRules))
				var cooperationContractFoundBytes []byte
				for _, rule := range cooperationContractFound.DividendsIncentivesRules {
					jsons, errs := json.Marshal(rule)
					if errs != nil {
						fmt.Printf(errs.Error())
					}
					cooperationContractFoundBytes = append(cooperationContractFoundBytes, jsons...)
				}
				cooperationContractFoundHashValue := md5.Sum(cooperationContractFoundBytes)
				cooperationContractFoundHashString := hex.EncodeToString(cooperationContractFoundHashValue[:])

				// 计算更新后的合约哈希值
				// cooperationContractByte := *(*[]byte)(unsafe.Pointer(&cooperationContract.DividendsIncentivesRules))
				var cooperationContractBytes []byte
				for _, rule := range cooperationContract.DividendsIncentivesRules {
					jsons, errs := json.Marshal(rule)
					if errs != nil {
						fmt.Printf(errs.Error())
					}
					cooperationContractBytes = append(cooperationContractBytes, jsons...)
				}
				cooperationContractHashValue := md5.Sum(cooperationContractBytes)
				cooperationContractHashString := hex.EncodeToString(cooperationContractHashValue[:])

				if cooperationContractFoundHashString != cooperationContractHashString {
					//	业绩分红-->业绩分红
					incentivesRuleChange = cooperationContract.ReturnIncentivesName(domain.IncentivesType(cooperationContractFound.IncentivesType)) + "-->" + cooperationContract.ReturnIncentivesName(domain.IncentivesType(cooperationContract.IncentivesType))
					//【第一阶段:20,2021-01-01~2021-12-31,,,;第二阶段:20,2021-01-01~2021-12-31,30,10】变更为【第一阶段:20,2021-01-01~2021-12-31,,,;】
					// 原业绩分红激励规则
					var dividendsIncentivesRuleOriginal string
					for _, dividendsIncentivesRule := range cooperationContractFound.DividendsIncentivesRules {
						dividendsIncentivesRuleOriginal = dividendsIncentivesRuleOriginal + dividendsIncentivesRule.DividendsIncentivesStageCN +
							":" + fmt.Sprint(dividendsIncentivesRule.DividendsIncentivesPercentage) +
							"," + dividendsIncentivesRule.DividendsIncentivesStageStart.Format("2006-01-02") +
							"~" + dividendsIncentivesRule.DividendsIncentivesStageEnd.Format("2006-01-02") +
							"," + fmt.Sprint(dividendsIncentivesRule.ReferrerPercentage) +
							"," + fmt.Sprint(dividendsIncentivesRule.SalesmanPercentage) + ";"
					}
					dividendsIncentivesRuleOriginalTmp := "【" + dividendsIncentivesRuleOriginal + "】"
					// 变更后的业绩分红激励规则
					var dividendsIncentivesRuleChanged string
					for _, dividendsIncentivesRule := range cooperationContract.DividendsIncentivesRules {
						dividendsIncentivesRuleChanged = dividendsIncentivesRuleChanged + dividendsIncentivesRule.DividendsIncentivesStageCN +
							":" + fmt.Sprint(dividendsIncentivesRule.DividendsIncentivesPercentage) +
							"," + dividendsIncentivesRule.DividendsIncentivesStageStart.Format("2006-01-02") +
							"~" + dividendsIncentivesRule.DividendsIncentivesStageEnd.Format("2006-01-02") +
							"," + fmt.Sprint(dividendsIncentivesRule.ReferrerPercentage) +
							"," + fmt.Sprint(dividendsIncentivesRule.SalesmanPercentage) + ";"
					}
					dividendsIncentivesRuleChangedTmp := "【" + dividendsIncentivesRuleChanged + "】"
					// 拼接规则变更
					incentivesRuleChangeDetail = dividendsIncentivesRuleOriginalTmp + " 变更为 " + dividendsIncentivesRuleChangedTmp
				}
			} else if cooperationContractFound.IncentivesType == domain.TYPE_MONEY_INCENTIVES { // 金额激励规则内容变更
				// 计算原合约哈希值
				//cooperationContractFoundByte := *(*[]byte)(unsafe.Pointer(&cooperationContractFound.MoneyIncentivesRules))
				var cooperationContractFoundBytes []byte
				for _, rule := range cooperationContractFound.MoneyIncentivesRules {
					jsons, errs := json.Marshal(rule)
					if errs != nil {
						fmt.Printf(errs.Error())
					}
					cooperationContractFoundBytes = append(cooperationContractFoundBytes, jsons...)
				}
				cooperationContractFoundHashValue := md5.Sum(cooperationContractFoundBytes)
				cooperationContractFoundHashString := hex.EncodeToString(cooperationContractFoundHashValue[:])

				// 计算更新后的合约哈希值
				//cooperationContractByte := *(*[]byte)(unsafe.Pointer(&cooperationContract.MoneyIncentivesRules))
				var cooperationContractBytes []byte
				for _, rule := range cooperationContract.MoneyIncentivesRules {
					jsons, errs := json.Marshal(rule)
					if errs != nil {
						fmt.Printf(errs.Error())
					}
					cooperationContractBytes = append(cooperationContractBytes, jsons...)
				}
				cooperationContractHashValue := md5.Sum(cooperationContractBytes)
				cooperationContractHashString := hex.EncodeToString(cooperationContractHashValue[:])

				if cooperationContractFoundHashString != cooperationContractHashString {
					incentivesRuleChange = cooperationContract.ReturnIncentivesName(domain.IncentivesType(cooperationContractFound.IncentivesType)) + "-->" + cooperationContract.ReturnIncentivesName(domain.IncentivesType(cooperationContract.IncentivesType))
					//【第一阶段:20,2021-01-01~2021-12-31,,,;第二阶段:20,2021-01-01~2021-12-31,30,10】变更为【第一阶段:20,2021-01-01~2021-12-31,,,;】
					// 原金额激励规则
					var moneyIncentivesRuleOriginal string
					for _, moneyIncentivesRule := range cooperationContractFound.MoneyIncentivesRules {
						moneyIncentivesRuleOriginal = moneyIncentivesRuleOriginal + moneyIncentivesRule.MoneyIncentivesStageCN +
							":" + fmt.Sprint(moneyIncentivesRule.MoneyIncentivesAmount) +
							"," + moneyIncentivesRule.MoneyIncentivesTime.Format("2006-01-02") +
							"," + fmt.Sprint(moneyIncentivesRule.ReferrerPercentage) +
							"," + fmt.Sprint(moneyIncentivesRule.SalesmanPercentage) + ";"
					}
					moneyIncentivesRuleOriginalTmp := "【" + moneyIncentivesRuleOriginal + "】"
					// 变更后的激励规则
					var moneyIncentivesRuleChanged string
					for _, moneyIncentivesRule := range cooperationContract.MoneyIncentivesRules {
						moneyIncentivesRuleChanged = moneyIncentivesRuleChanged + moneyIncentivesRule.MoneyIncentivesStageCN +
							":" + fmt.Sprint(moneyIncentivesRule.MoneyIncentivesAmount) +
							"," + moneyIncentivesRule.MoneyIncentivesTime.Format("2006-01-02") +
							"," + fmt.Sprint(moneyIncentivesRule.ReferrerPercentage) +
							"," + fmt.Sprint(moneyIncentivesRule.SalesmanPercentage) + ";"
					}
					moneyIncentivesRuleChangedTmp := "【" + moneyIncentivesRuleChanged + "】"
					// 拼接规则变更
					incentivesRuleChangeDetail = moneyIncentivesRuleOriginalTmp + " 变更为 " + moneyIncentivesRuleChangedTmp
				}
			}
		}

		/*********************************************** 承接人变更 *****************************************************/
		var undertakerChange string
		// 计算原合约哈希值
		//cooperationContractFoundByte := *(*[]byte)(unsafe.Pointer(&cooperationContractFound.Undertakers))
		var cooperationContractFoundBytes []byte
		for _, undertaker := range cooperationContractFound.Undertakers {
			jsons, errs := json.Marshal(undertaker)
			if errs != nil {
				fmt.Printf(errs.Error())
			}
			cooperationContractFoundBytes = append(cooperationContractFoundBytes, jsons...)
		}
		cooperationContractFoundHashValue := md5.Sum(cooperationContractFoundBytes)
		cooperationContractFoundHashString := hex.EncodeToString(cooperationContractFoundHashValue[:])

		// 计算更新后的合约哈希值
		var cooperationContractBytes []byte
		for _, undertaker := range cooperationContract.Undertakers {
			jsons, errs := json.Marshal(undertaker) //转换成JSON返回的是byte[]
			if errs != nil {
				fmt.Printf(errs.Error())
			}
			cooperationContractBytes = append(cooperationContractBytes, jsons...)
		}
		cooperationContractHashValue := md5.Sum(cooperationContractBytes)
		cooperationContractHashString := hex.EncodeToString(cooperationContractHashValue[:])

		if cooperationContractFoundHashString != cooperationContractHashString { // 【1(张三,李四,王五)2(买买买,,)】变更为【1(张三,,)】
			// 原承接人
			var undertakersOriginal string
			for i, undertaker := range cooperationContractFound.Undertakers {
				if undertaker.Referrer == nil {
					undertaker.Referrer = &domain.Referrer{
						UserId:     0,
						UserBaseId: 0,
						Roles:      nil,
						Orgs:       nil,
						Org:        nil,
						Department: nil,
						Company:    nil,
						UserInfo:   nil,
						UserType:   0,
						UserName:   "",
						UserPhone:  "",
					}
				}
				if undertaker.Salesman == nil {
					undertaker.Salesman = &domain.Salesman{
						UserId:     0,
						UserBaseId: 0,
						Roles:      nil,
						Orgs:       nil,
						Org:        nil,
						Department: nil,
						Company:    nil,
						UserInfo:   nil,
						UserType:   0,
						UserName:   "",
						UserPhone:  "",
					}
				}
				undertakersOriginal = undertakersOriginal + strconv.FormatInt(int64(i+1), 10) + "(" + undertaker.UserInfo.UserName + "," + undertaker.Referrer.UserName + "," + undertaker.Salesman.UserName + ")"
			}
			undertakerChangeTmp1 := "【" + undertakersOriginal + "】"

			// 变更承接人
			var undertakersChanged string
			for i, undertaker := range cooperationContract.Undertakers {
				if undertaker.Referrer == nil {
					undertaker.Referrer = &domain.Referrer{
						UserId:     0,
						UserBaseId: 0,
						Roles:      nil,
						Orgs:       nil,
						Org:        nil,
						Department: nil,
						Company:    nil,
						UserInfo:   nil,
						UserType:   0,
						UserName:   "",
						UserPhone:  "",
					}
				}
				if undertaker.Salesman == nil {
					undertaker.Salesman = &domain.Salesman{
						UserId:     0,
						UserBaseId: 0,
						Roles:      nil,
						Orgs:       nil,
						Org:        nil,
						Department: nil,
						Company:    nil,
						UserInfo:   nil,
						UserType:   0,
						UserName:   "",
						UserPhone:  "",
					}
				}
				undertakersChanged = undertakersChanged + strconv.FormatInt(int64(i+1), 10) + "(" + undertaker.UserInfo.UserName + "," + undertaker.Referrer.UserName + "," + undertaker.Salesman.UserName + ")"
			}
			undertakerChangeTemp2 := "【" + undertakersChanged + "】"
			// 拼接承接人变更记录
			undertakerChange = undertakerChangeTmp1 + " 变更为 " + undertakerChangeTemp2
		}

		// 新增共创合约变更记录
		newCooperationContractChangeLog := &domain.CooperationContractChangeLog{
			IncentivesRule:            incentivesRuleChange,
			IncentivesRuleDetail:      incentivesRuleChangeDetail,
			OperationType:             domain.EDIT,
			Undertakers:               undertakerChange,
			CooperationContractNumber: cooperationContract.CooperationContractNumber,
			Company:                   company,
			Org:                       organization,
			Operator:                  operator,
			OperatorTime:              time.Now(),
			UpdatedAt:                 time.Time{},
			CreatedAt:                 time.Now(),
		}

		// 保存共创合约变更记录
		if newCooperationContractChangeLog.IncentivesRule != "" || newCooperationContractChangeLog.IncentivesRuleDetail != "" || newCooperationContractChangeLog.Undertakers != "" {
			if _, err20 := cooperationContractChangeLogRepository.Save(newCooperationContractChangeLog); err20 != nil {
				return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err20.Error())
			}
		}

		if err = cooperationContractService.UpdateCooperationProjectStaticsInfo(transactionContext,
			updateCooperationContractCommand.CompanyId,
			updateCooperationContractCommand.OrgId,
			updateCooperationContractCommand.CooperationProjectNumber); err != nil {
			return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
		}

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

		// 推送消息
		if len(undertakersToAdd) > 0 {
			var jointDataSlices []service.JoinData
			for _, undertakerToAdd := range undertakersToAdd {
				jointDataSlices = append(jointDataSlices, service.JoinData{
					CreationContractId:     cooperationContract.CooperationContractId,
					CreationContractName:   cooperationContract.CooperationContractName,
					CreationContractNumber: cooperationContract.CooperationContractNumber,
					CreationProjectId:      cooperationProject.CooperationProjectId,
					CreationProjectNumber:  cooperationProject.CooperationProjectNumber,
					CreationProjectName:    cooperationProject.CooperationProjectName,
					UserId:                 undertakerToAdd.UserId,
					UserBaseId:             undertakerToAdd.UserBaseId,
					OrgId:                  undertakerToAdd.Org.OrgId,
					CompanyId:              undertakerToAdd.Company.CompanyId,
				})
			}
			if err14 := informJoinCreationContractService.Join(jointDataSlices); err14 != nil {
				return nil, application.ThrowError(application.TRANSACTION_ERROR, err14.Error())
			}
		}

		return cooperationContractSaved, nil
	}
}

// 更新共创项目统计数据(申请人数 、 合约数)
func (cooperationContractService *CooperationContractService) UpdateCooperationProjectStaticsInfo(transactionContext application.TransactionContext,
	companyId, orgId int64,
	cooperationProjectNumber string) error {
	cooperationProjectRepository, _ := factory.CreateCooperationProjectRepository(map[string]interface{}{
		"transactionContext": transactionContext,
	})
	project, err := cooperationProjectRepository.FindOne(map[string]interface{}{
		"companyId":                companyId,
		"orgId":                    orgId,
		"cooperationProjectNumber": cooperationProjectNumber,
	})
	if err != nil {
		return err
	}

	cooperationContractDao, _ := dao.NewCooperationContractDao(transactionContext.(*pg.TransactionContext))
	total, contracts, err := cooperationContractDao.Find(map[string]interface{}{
		"companyId":                companyId,
		"orgId":                    orgId,
		"cooperationProjectNumber": cooperationProjectNumber,
		"offsetLimit":              false,
	})
	if err != nil {
		return err
	}
	project.ContractCount = int32(total)

	// 共创合约数量
	cooperationContractIds := make([]int64, 0)
	for i := range contracts {
		cooperationContractIds = append(cooperationContractIds, contracts[i].CooperationContractId)
	}

	// 承接人数量
	cooperationContractUndertakerRepository, _ := dao.NewCooperationContractUndertakerDao(transactionContext.(*pg.TransactionContext))
	_, underTakers, err := cooperationContractUndertakerRepository.Find(map[string]interface{}{
		"companyId":                companyId,
		"orgId":                    orgId,
		"cooperationProjectNumber": cooperationProjectNumber,
		"cooperationContractIds":   cooperationContractIds,
		"offsetLimit":              false,
	})
	if err != nil {
		return err
	}
	var count = 0
	var mapDupUser = make(map[int64]int64)
	var funcRemoveDuplicate = func(userBaseId int64) {
		if _, ok := mapDupUser[userBaseId]; !ok {
			mapDupUser[userBaseId] = userBaseId
			count += 1 // 默认承接人
		}
	}
	for i := range underTakers {
		item := underTakers[i]
		funcRemoveDuplicate(item.Undertaker.UserBaseId)
		//if item.Undertaker.Referrer != nil && item.Undertaker.Referrer.UserBaseId != 0 {
		//	funcRemoveDuplicate(item.Undertaker.Referrer.UserBaseId)
		//}
		//if item.Undertaker.Salesman != nil && item.Undertaker.Salesman.UserBaseId != 0 {
		//	funcRemoveDuplicate(item.Undertaker.Salesman.UserBaseId)
		//}
	}
	project.ApplicantCount = int32(count)
	if _, err := cooperationProjectRepository.Save(project); err != nil {
		return err
	}
	return nil
}

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