BpmTaskMapper.xml 77.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 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.hotent.bpm.persistence.dao.BpmTaskDao">
	<resultMap id="BpmTask" type="com.hotent.bpm.persistence.model.DefaultBpmTask">
		<id property="id" column="id_" jdbcType="VARCHAR"/>
		<result property="name" column="name_" jdbcType="VARCHAR"/>
		<result property="subject" column="subject_" jdbcType="VARCHAR"/>
		<result property="taskId" column="task_id_" jdbcType="VARCHAR"/>
		<result property="execId" column="exec_id_" jdbcType="VARCHAR"/>
		<result property="nodeId" column="node_id_" jdbcType="VARCHAR"/>
		<result property="procInstId" column="proc_inst_id_" jdbcType="VARCHAR"/>
		<result property="procDefId" column="proc_def_id_" jdbcType="VARCHAR"/>
		<result property="procDefKey" column="proc_def_key_" jdbcType="VARCHAR"/>
		<result property="procDefName" column="proc_def_name_" jdbcType="VARCHAR"/>
		<result property="ownerId" column="owner_id_" jdbcType="VARCHAR"/>
		<result property="assigneeId" column="assignee_id_" jdbcType="VARCHAR"/>
		<result property="ownerName" column="owner_name_" jdbcType="VARCHAR"/>
		<result property="assigneeName" column="assignee_name_" jdbcType="VARCHAR"/>
		<result property="status" column="status_" jdbcType="VARCHAR"/>
		<result property="priority" column="priority_" jdbcType="NUMERIC"/>
		<result property="createTime" column="create_time_" jdbcType="TIMESTAMP"/>
		<result property="dueTime" column="due_time_" jdbcType="TIMESTAMP"/>
		<result property="suspendState" column="suspend_state_" jdbcType="NUMERIC"/>
		<result property="parentId" column="parent_id_" jdbcType="VARCHAR"/>
		<result property="bpmnInstId" column="bpmn_inst_id_" jdbcType="VARCHAR"/>
		<result property="bpmnDefId" column="bpmn_def_id_" jdbcType="VARCHAR"/>
		<result property="typeId" column="type_id_" jdbcType="VARCHAR"/>
		<result property="supportMobile" column="support_mobile_" jdbcType="NUMERIC"/>
        <result property="isRead" column="is_read_" jdbcType="NUMERIC"/>
        <result property="isRevoke" column="is_revoke_" jdbcType="NUMERIC"/>
        <result property="prop1" column="prop1_" jdbcType="VARCHAR"/>
        <result property="prop2" column="prop2_" jdbcType="VARCHAR"/>
        <result property="prop3" column="prop3_" jdbcType="VARCHAR"/>
        <result property="prop4" column="prop4_" jdbcType="VARCHAR"/>
        <result property="prop5" column="prop5_" jdbcType="VARCHAR"/>
        <result property="prop6" column="prop6_" jdbcType="LONGVARCHAR"/>
		<result property="deadline" column="DEADLINE" jdbcType="TIMESTAMP"/>
		<result property="urgentStateValue" column="urgentStateValue" jdbcType="VARCHAR"/>
		<result property="targetNode" column="target_node_" jdbcType="VARCHAR"/>
	</resultMap>

	<resultMap id="BpmTaskExt" type="com.hotent.bpm.persistence.model.DefaultBpmTask" extends="BpmTask">
		<result property="transDate" column="transDate" jdbcType="TIMESTAMP"/>
		<result property="createDate" column="createDate" jdbcType="TIMESTAMP"/>
		<result property="creator" column="creator" jdbcType="VARCHAR"/>
		<result property="dueDateType" column="dueDateType" jdbcType="VARCHAR"/>
		<result property="dueExpDate" column="dueExpDate" jdbcType="TIMESTAMP"/>
		<result property="dueTaskTime" column="dueTaskTime" jdbcType="NUMERIC"/>
		<result property="dueStatus" column="dueStatus" jdbcType="NUMERIC"/>
		<result property="instIsForbidden" column="instIsForbidden" jdbcType="VARCHAR"/>
		<result property="leaderIds" column="leaderIds" jdbcType="VARCHAR"/>
		<result property="urgentStateValue" column="urgentStateValue" jdbcType="VARCHAR"/>
		<result property="isBpmTask" column="isBpmTask" jdbcType="VARCHAR"/>
	</resultMap>

    <sql id="selectTodoCount">
         bpm_task bt
        INNER JOIN (

        select btask1.id_,btr.EXECUTE_DATE_ from bpm_task btask1
        LEFT JOIN  (SELECT task_id_,min(execute_date_) as execute_date_ FROM bpm_reminder_history GROUP BY task_id_) btr
        ON btr.TASK_ID_ = btask1.ID_
        where ((assignee_id_ = ${map.user}) or (owner_id_ = ${map.user} and status_='AGENT')) and  btask1.status_ != 'TRANSFORMING' AND btask1.status_ != 'COPYTO' AND btask1.status_ != 'APPROVELINEING' AND btask1.status_ != 'SIGNSEQUENCEING' AND btask1.status_ != 'SIGNLINEING'

        union all

        select btask2.id_,btr.EXECUTE_DATE_  FROM  bpm_task btask2
        right JOIN bpm_task_candidate c
        ON btask2.id_ = c.TASK_ID_   AND btask2.assignee_id_ = '0'  and btask2.status_ != 'TRANSFORMING' AND btask2.status_ != 'COPYTO' AND btask2.status_ != 'APPROVELINEING' AND btask2.status_ != 'SIGNSEQUENCEING' AND btask2.status_ != 'SIGNLINEING'
        LEFT JOIN  (SELECT task_id_,min(execute_date_) as execute_date_ FROM bpm_reminder_history GROUP BY task_id_) btr
        ON btr.TASK_ID_ = btask2.ID_
        where
        <foreach collection="map" index="key" item="val" open="(" separator=" or " close=")">
            <if test="key != 'keyWord' and key != 'supportMobile'">
                (c.executor_ in (${val}) and c.type_=#{key})
            </if>
        </foreach>
		GROUP BY btask2.id_, btr.EXECUTE_DATE_
        ) bpmTaskTemp  on bpmTaskTemp.id_ =bt.id_
        LEFT JOIN bpm_pro_inst inst
        ON bt.proc_inst_id_ = inst.id_
        where inst.IS_DELE_ = 0 AND inst.status_ != 'manualend' AND inst.status_ != 'adminmanualend'
        <if test="map.isMobile !=null and map.isMobile!=''">
            AND bt.SUPPORT_MOBILE_ = #{map.isMobile}
        </if>
    </sql>

	<select id="customQuery" parameterType="java.util.Map" resultMap="BpmTask">
		SELECT
			task.*
		FROM
			(
			SELECT
				bpm_task.ID_,
				bpm_task.PROC_INST_ID_,
				bpm_task.proc_def_key_,
				bpm_task.NAME_,
				bpm_task.ASSIGNEE_ID_,
				bpm_task.ASSIGNEE_NAME_,
				bpm_task.STATUS_,
				bpm_task.subject_,
				bpm_task.proc_def_name_,
				bpm_task.create_time_,
				bpm_task.owner_name_,
				bpm_task.task_id_,
				bpm_task.PROP1_ as PROP1_,
				bpm_task.PROP2_ as PROP2_,
				bpm_task.PROP3_ as PROP3_,
				bpm_task.PROP4_ as PROP4_,
				bpm_task.PROP5_ as PROP5_,
				bpm_task.PROP6_ as PROP6_,
				bpm_task.node_id_,
				'1' AS isBpmTask
			FROM
				bpm_task LEFT JOIN BPM_PRO_INST inst ON bpm_task.PROC_INST_ID_ = inst.ID_
			<!-- 不是超级管理员 -->
			<if test="ew.paramNameValuePairs.isAdmin==0">
			 	<choose>
			        <when test="ew.paramNameValuePairs.userRightMap!=null">
			        	left join bpm_pro_inst b on inst.id_ = b.id_
			        </when>
		        </choose>
			</if>
			WHERE inst.STATUS_ != 'manualend' AND inst.IS_DELE_ = 0
			<!-- 不是超级管理员 -->
			<if test="ew.paramNameValuePairs.isAdmin==0">
                <if test="ew.paramNameValuePairs.userRightMap!=null">
                    and
                    <foreach collection="ew.paramNameValuePairs.userRightMap" index="key" item="value" open="(" separator="or" close=")">
                        b.PROC_DEF_KEY_=#{key}
                        <if test="value!=null">
                            AND b.CREATE_ORG_ID_ IN(${value})
                        </if>
                    </foreach>
                </if>
                <choose>
                    <when test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.paramNameValuePairs.instanceIds)">
                        and inst.id_ in
                        <foreach collection="ew.paramNameValuePairs.instanceIds" index="index" item="item" open="(" separator="," close=")">
                            #{item}
                        </foreach>
                    </when>
                    <otherwise>
                        and inst.id_=''
                    </otherwise>
                </choose>
			</if>


			UNION ALL
			SELECT
				bpm_task_notice.ID_,
				bpm_task_notice.PROC_INST_ID_,
				bpm_task_notice.proc_def_key_,
				bpm_task_notice.NAME_,
				bpm_task_notice.ASSIGNEE_ID_,
				bpm_task_notice.ASSIGNEE_NAME_,
				bpm_task_notice.STATUS_,
				bpm_task_notice.subject_,
				bpm_task_notice.proc_def_name_,
				bpm_task_notice.create_time_,
				bpm_task_notice.owner_name_,
				bpm_task_notice.task_id_,
				NULL as PROP1_,
				NULL as PROP2_,
				NULL as PROP3_,
				NULL as PROP4_,
                NULL as PROP5_,
				NULL as PROP6_,
				bpm_task_notice.node_id_,
				'0' AS isBpmTask
			FROM
				bpm_task_notice LEFT JOIN BPM_PRO_INST inst ON bpm_task_notice.PROC_INST_ID_ = inst.ID_
			WHERE
				bpm_task_notice.IS_READ_ != 1  AND inst.STATUS_ != 'manualend' AND inst.IS_DELE_ = 0
                <choose>
                    <when test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.paramNameValuePairs.instanceIds)">
                        and bpm_task_notice.PROC_INST_ID_ in
                        <foreach collection="ew.paramNameValuePairs.instanceIds" index="index" item="item" open="(" separator="," close=")">
                            #{item}
                        </foreach>
                    </when>
                    <otherwise>
                        and bpm_task_notice.id_=''
                    </otherwise>
                </choose>
			) task
		${ew.customSqlSegment}
	</select>

    <sql id="getAllMyTask_Tables">
	           SELECT task.*,
	                inst.proc_def_name_ procDefName,
	                inst.create_by_ creatorId,inst.CREATOR_ creator,
	                inst.create_time_ createDate,
	                inst.status_ instStatus,
	                inst.is_forbidden_ instIsForbidden,
	                inst.type_id_ typeId,
	                due.due_time_ dueTaskTime,
	                due.EXPIRATION_DATE_ dueExpDate,
	                due.date_type_ dueDateType,
	                due.status_ dueStatus
	           FROM (SELECT * from bpm_task UNION ALL SELECT * from bpm_task_notice ) task
	                LEFT JOIN BPM_PRO_INST inst ON task.proc_inst_id_ = inst.id_
	                LEFT JOIN  (select *  from bpm_task_due_time where is_new_ =1 ) due ON task.TASK_ID_ = due.TASK_ID_
	</sql>

    <!-- 指定用户领导的待办  -->
	<select id="getLeaderByUserId" parameterType="java.util.Map" resultMap="BpmTask">
		select tmp.*,MIN(tmp.EXECUTE_DATE_) AS DEADLINE from (
		SELECT task.*,
		inst.proc_def_name_ procDefName,
		inst.create_by_ creatorId,inst.CREATOR_ creator,
		inst.create_time_ createDate,
		inst.status_ instStatus,
		inst.CREATE_ORG_ID_ CREATE_ORG_ID_,
		inst.is_forbidden_ instIsForbidden,
		inst.type_id_ typeId,
		due.due_time_ dueTaskTime,
		due.EXPIRATION_DATE_ dueExpDate,
		due.date_type_ dueDateType,
		due.status_ dueStatus,
		inst.URGENT_STATE_ urgentStateValue,
		btr.EXECUTE_DATE_
		FROM (
		SELECT * from bpm_task
		INNER JOIN  (
		SELECT '' AS OPINION_ID_,ut.ID_ utaskId,  group_concat(ut.assignee_id_) as leaderIds  from
		(select ID_,'' as assignee_id_ from bpm_task where 1=0
		<foreach collection="map.rightMap" index="key" item="item" open="" separator=" " close="">
			UNION ALL
			select ID_,'${key}' as assignee_id_ from  bpm_task task where (task.assignee_id_=#{key}
			<!-- 委托的情况只查自己的,领导的代理任务就不显示在秘书的待办列表 -->
			<if test="item.isSelf">
				or (task.OWNER_ID_='${key}' and task.STATUS_='AGENT')
			</if>
			)
			<if test="!item.isSelf and item.defKeys!=''">
				and task.PROC_DEF_KEY_ in (${item.defKeys})
			</if>

			<foreach item="value" index="type" collection="item.groupMap" open="" close="" separator=" ">
				UNION ALL select c.TASK_ID_ as 'ID_','${key}' as assignee_id_ from  bpm_task_candidate c
				<if test="!item.isSelf">
					INNER JOIN  bpm_task bt on bt.TASK_ID_ = c.TASK_ID_ and bt.STATUS_ !='DELIVERTO'
				</if>
				where c.executor_ in (${value}) and c.type_='${type}'
				<if test="!item.isSelf and item.defKeys!=''">
					and  bt.PROC_DEF_KEY_ in (${item.defKeys})
				</if>
			</foreach>
		</foreach>) ut group by ut.ID_
		)  ubpt  on  ubpt.uTaskId = bpm_task.ID_
		UNION  SELECT bpm_task_notice.*,'' AS TARGET_NODE_,bpm_task_notice.TASK_ID_ As uTaskId, '' As leaderIds from bpm_task_notice
		LEFT JOIN (SELECT task_id_ taskId, min(execute_date_) as executeDate
		FROM bpm_reminder_history
		GROUP BY task_id_) btr
		ON btr.taskId = bpm_task_notice.TASK_ID_
		where assignee_id_=#{map.userId}
		)  task
		LEFT JOIN BPM_PRO_INST inst ON task.proc_inst_id_ = inst.id_
		LEFT JOIN  (select *  from bpm_task_due_time where is_new_ =1 ) due ON task.TASK_ID_ = due.TASK_ID_
		LEFT JOIN (SELECT task_id_, min(execute_date_) as execute_date_
		FROM bpm_reminder_history
		GROUP BY task_id_) btr
		ON btr.TASK_ID_ = task.TASK_ID_
		)   tmp  where
		<if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.paramNameValuePairs.normalSqlSegment)">
			 ${ew.paramNameValuePairs.normalSqlSegment}
			and
		</if>
		tmp.status_ != 'TRANSFORMING'
	    AND tmp.status_ != 'COMMU'
		AND tmp.status_ != 'COPYTO'
		AND tmp.IS_DELE_ = 0
		AND tmp.status_ != 'APPROVELINEING'
		AND tmp.status_ != 'SIGNSEQUENCEING'
		AND tmp.status_ != 'SIGNLINEING'
		AND tmp.instStatus != 'manualend'
		AND tmp.instStatus != 'adminmanualend'
		group by tmp.id_,tmp.IS_DELE_,tmp.name_,tmp.subject_,tmp.proc_inst_id_,tmp.task_id_,tmp.exec_id_,tmp.node_id_,tmp.proc_def_id_,tmp.proc_def_key_,tmp.proc_def_key_,
		tmp.proc_def_name_,tmp.owner_id_,tmp.assignee_id_,tmp.status_,tmp.priority_,tmp.create_time_,tmp.due_time_,tmp.suspend_state_,tmp.parent_id_,
		tmp.bpmn_inst_id_,tmp.bpmn_def_id_,tmp.type_id_,tmp.support_mobile_,tmp.OWNER_NAME_,tmp.ASSIGNEE_NAME_,tmp.instIsForbidden,tmp.IS_READ_,tmp.IS_REVOKE_,tmp.prop1_,tmp.prop2_,tmp.prop3_,tmp.prop4_,tmp.prop5_,tmp.prop6_,tmp.utaskId,
		tmp.leaderIds,
		procDefName,creatorId,creator,createDate, instStatus,typeId,dueTaskTime,dueExpDate,dueDateType,dueStatus,urgentStateValue
		<if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.paramNameValuePairs.orderSqlSegment)">
            ${ew.paramNameValuePairs.orderSqlSegment}
		</if>
        <if test="@com.hotent.base.ognl.Ognl@isEmpty(ew.paramNameValuePairs.orderSqlSegment)">
            order by CREATE_TIME_ desc
        </if>
	</select>

	<!-- 指定用户领导的待办  -->
	<select id="getLeaderStreamByUserId" parameterType="java.util.Map" resultMap="BpmTask">
		select * from (
		SELECT task.*,
		inst.proc_def_name_ procDefName,
		inst.create_by_ creatorId,inst.CREATOR_ creator,
		inst.create_time_ createDate,
		inst.status_ instStatus,
		inst.is_forbidden_ instIsForbidden,
		inst.type_id_ typeId,
		due.due_time_ dueTaskTime,
		due.EXPIRATION_DATE_ dueExpDate,
		due.date_type_ dueDateType,
		due.status_ dueStatus,
		inst.URGENT_STATE_ urgentStateValue
		FROM (
		SELECT * from bpm_task
		INNER JOIN  (
		SELECT ut.ID_ utaskId,  group_concat(ut.assignee_id_) as leaderIds , '' AS OPINION_ID_ from
		(select ID_,'' as assignee_id_ from bpm_task where 1=0
		<foreach collection="map.rightMap" index="key" item="item" open="" separator=" " close="">
			UNION ALL
			select ID_,'${key}' as assignee_id_ from  bpm_task task where (task.assignee_id_=#{key}
			<!-- 委托的情况只查自己的,领导的代理任务就不显示在秘书的待办列表 -->
			<if test="item.isSelf">
				or (task.OWNER_ID_='${key}' and task.STATUS_='AGENT')
			</if>
			)
			<if test="!item.isSelf and item.defKeys!=''">
				and task.PROC_DEF_KEY_ in (${item.defKeys})
			</if>

			<foreach item="value" index="type" collection="item.groupMap" open="" close="" separator=" ">
				UNION ALL select c.TASK_ID_ as 'ID_','${key}' as assignee_id_ from  bpm_task_candidate c
				<if test="!item.isSelf">
					INNER JOIN  bpm_task bt on bt.TASK_ID_ = c.TASK_ID_ and bt.STATUS_ !='DELIVERTO'
				</if>
				where c.executor_ in (${value}) and c.type_='${type}'
				<if test="!item.isSelf and item.defKeys!=''">
					and  bt.PROC_DEF_KEY_ in (${item.defKeys})
				</if>
			</foreach>
		</foreach>) ut group by ut.ID_
		)  ubpt  on  ubpt.uTaskId = bpm_task.ID_
		UNION  SELECT bpm_task_notice.*,bpm_task_notice.TASK_ID_ As uTaskId, '' As leaderIds from bpm_task_notice where assignee_id_=#{map.userId}
		)  task
		LEFT JOIN BPM_PRO_INST inst ON task.proc_inst_id_ = inst.id_
		LEFT JOIN  (select *  from bpm_task_due_time where is_new_ =1 ) due ON task.TASK_ID_ = due.TASK_ID_
		)   tmp
		${ew.customSqlSegment}
		<if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.customSqlSegment)">
			and
		</if>
		<if test="@com.hotent.base.ognl.Ognl@isEmpty(ew.customSqlSegment)">
			where
		</if>
		tmp.status_ !='TRANSFORMING' and tmp.status_!='COPYTO' and tmp.IS_DELE_ = 0 and tmp.status_ !='APPROVELINEING' and tmp.status_!='SIGNSEQUENCEING' and  tmp.status_!='SIGNLINEING' and tmp.instStatus != 'manualend' and tmp.instStatus != 'adminmanualend'
		group by tmp.id_,tmp.IS_DELE_,tmp.name_,tmp.subject_,tmp.proc_inst_id_,tmp.task_id_,tmp.exec_id_,tmp.node_id_,tmp.proc_def_id_,tmp.proc_def_key_,tmp.proc_def_key_,
		tmp.proc_def_name_,tmp.owner_id_,tmp.assignee_id_,tmp.status_,tmp.priority_,tmp.create_time_,tmp.due_time_,tmp.suspend_state_,tmp.parent_id_,
		tmp.bpmn_inst_id_,tmp.bpmn_def_id_,tmp.type_id_,tmp.support_mobile_,tmp.OWNER_NAME_,tmp.ASSIGNEE_NAME_,tmp.instIsForbidden,tmp.IS_READ_,tmp.IS_REVOKE_,tmp.prop1_,tmp.prop2_,tmp.prop3_,tmp.prop4_,tmp.prop5_,tmp.prop6_,tmp.utaskId,
		tmp.leaderIds,
		procDefName,creatorId,creator,createDate, instStatus,typeId,dueTaskTime,dueExpDate,dueDateType,dueStatus,urgentStateValue
		order by CREATE_TIME_ desc
	</select>

	<select id="getLeaderStreamByUserId" databaseId="oracle" parameterType="java.util.Map" resultMap="BpmTask">
		select distinct * from (
		SELECT task.*,
		inst.proc_def_name_ procDefName,
		inst.create_by_ creatorId,inst.CREATOR_ creator,
		inst.create_time_ createDate,
		inst.status_ instStatus,
		inst.is_forbidden_ instIsForbidden,
		inst.type_id_ typeId,
		due.due_time_ dueTaskTime,
		due.EXPIRATION_DATE_ dueExpDate,
		due.date_type_ dueDateType,
		due.status_ dueStatus,
		inst.URGENT_STATE_ urgentStateValue
		FROM (
		SELECT ID_,
		NAME_,
		SUBJECT_,
		PROC_INST_ID_,
		TASK_ID_,
		EXEC_ID_,
		NODE_ID_,
		PROC_DEF_ID_,
		PROC_DEF_KEY_,
		PROC_DEF_NAME_,
		OWNER_ID_,
		OWNER_NAME_,
		ASSIGNEE_ID_,
		ASSIGNEE_NAME_,
		STATUS_,
		PRIORITY_,
		CREATE_TIME_,
		DUE_TIME_,
		SUSPEND_STATE_,
		PARENT_ID_,
		BPMN_INST_ID_,
		BPMN_DEF_ID_,
		TYPE_ID_,
		SUPPORT_MOBILE_,
		IS_DELE_,
		IS_READ_,
		IS_REVOKE_,
		PROP1_,
		PROP2_,
		PROP3_,
		PROP4_,
		PROP5_,
		TO_CHAR( PROP6_ ) AS PROP6_,
		TENANT_ID_,
		UTASKID,
		LEADERIDS  from bpm_task
		INNER JOIN  (
		SELECT ut.ID_ utaskId,  wm_concat(ut.assignee_id_) as leaderIds from
		(select ID_,'' as assignee_id_ from bpm_task where 1=0
		<foreach collection="map.rightMap" index="key" item="item" open="" separator=" " close="">
			UNION ALL
			select ID_,'${key}' as assignee_id_ from  bpm_task task where (task.assignee_id_=#{key}
			<!-- 委托的情况只查自己的,领导的代理任务就不显示在秘书的待办列表 -->
			<if test="item.isSelf">
				or (task.OWNER_ID_='${key}' and task.STATUS_='AGENT')
			</if>
			)
			<if test="!item.isSelf and item.defKeys!=''">
				and task.PROC_DEF_KEY_ in (${item.defKeys})
			</if>

			<foreach item="value" index="type" collection="item.groupMap" open="" close="" separator=" ">
				UNION ALL select c.TASK_ID_ as ID_,'${key}' as assignee_id_ from  bpm_task_candidate c
				<if test="!item.isSelf">
					INNER JOIN  bpm_task bt on bt.TASK_ID_ = c.TASK_ID_ and bt.STATUS_ !='DELIVERTO'
				</if>
				where c.executor_ in (${value}) and c.type_='${type}'
				<if test="!item.isSelf and item.defKeys!=''">
					and  bt.PROC_DEF_KEY_ in (${item.defKeys})
				</if>
			</foreach>
		</foreach>) ut group by ut.ID_
		)  ubpt  on  ubpt.uTaskId = bpm_task.ID_
		UNION  SELECT bpm_task_notice.ID_,
		bpm_task_notice.NAME_,
		bpm_task_notice.SUBJECT_,
		bpm_task_notice.PROC_INST_ID_,
		bpm_task_notice.TASK_ID_,
		bpm_task_notice.EXEC_ID_,
		bpm_task_notice.NODE_ID_,
		bpm_task_notice.PROC_DEF_ID_,
		bpm_task_notice.PROC_DEF_KEY_,
		bpm_task_notice.PROC_DEF_NAME_,
		bpm_task_notice.OWNER_ID_,
		bpm_task_notice.OWNER_NAME_,
		bpm_task_notice.ASSIGNEE_ID_,
		bpm_task_notice.ASSIGNEE_NAME_,
		bpm_task_notice.STATUS_,
		bpm_task_notice.PRIORITY_,
		bpm_task_notice.CREATE_TIME_,
		bpm_task_notice.DUE_TIME_,
		bpm_task_notice.SUSPEND_STATE_,
		bpm_task_notice.PARENT_ID_,
		bpm_task_notice.BPMN_INST_ID_,
		bpm_task_notice.BPMN_DEF_ID_,
		bpm_task_notice.TYPE_ID_,
		bpm_task_notice.SUPPORT_MOBILE_,
		bpm_task_notice.IS_DELE_,
		bpm_task_notice.IS_READ_,
		bpm_task_notice.IS_REVOKE_,
		bpm_task_notice.PROP1_,
		bpm_task_notice.PROP2_,
		bpm_task_notice.PROP3_,
		bpm_task_notice.PROP4_,
		bpm_task_notice.PROP5_,
		to_char( bpm_task_notice.PROP6_ ) AS PROP6_,
		bpm_task_notice.TENANT_ID_,
		bpm_task_notice.TASK_ID_ AS uTaskId,
		'' AS leaderIds
		from bpm_task_notice where assignee_id_=${map.userId}
		)  task
		LEFT JOIN BPM_PRO_INST inst ON task.proc_inst_id_ = inst.id_
		LEFT JOIN  (select *  from bpm_task_due_time where is_new_ ='1' ) due ON task.TASK_ID_ = due.TASK_ID_
		)   tmp
		${ew.customSqlSegment}
		<if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.customSqlSegment)">
			and
		</if>
		<if test="@com.hotent.base.ognl.Ognl@isEmpty(ew.customSqlSegment)">
			where
		</if>
		tmp.status_ !='TRANSFORMING' and tmp.status_!='COPYTO' and tmp.IS_DELE_ = 0 and tmp.status_ !='APPROVELINEING' and tmp.status_!='SIGNSEQUENCEING' and  tmp.status_!='SIGNLINEING' and tmp.instStatus != 'manualend' and tmp.instStatus != 'adminmanualend'
		order by CREATE_TIME_ desc
	</select>

	<select id="getLeaderByUserId" databaseId="oracle" parameterType="java.util.Map" resultMap="BpmTask">
		select distinct * from (
		SELECT task.*,
		inst.proc_def_name_ procDefName,
		inst.create_by_ creatorId,inst.CREATOR_ creator,
		inst.create_time_ createDate,
		inst.status_ instStatus,
		inst.is_forbidden_ instIsForbidden,
		inst.type_id_ typeId,
		due.due_time_ dueTaskTime,
		due.EXPIRATION_DATE_ dueExpDate,
		due.date_type_ dueDateType,
		due.status_ dueStatus,
		inst.URGENT_STATE_ urgentStateValue
		FROM (
		SELECT ID_,
		NAME_,
		SUBJECT_,
		PROC_INST_ID_,
		TASK_ID_,
		EXEC_ID_,
		NODE_ID_,
		PROC_DEF_ID_,
		PROC_DEF_KEY_,
		PROC_DEF_NAME_,
		OWNER_ID_,
		OWNER_NAME_,
		ASSIGNEE_ID_,
		ASSIGNEE_NAME_,
		STATUS_,
		PRIORITY_,
		CREATE_TIME_,
		DUE_TIME_,
		SUSPEND_STATE_,
		PARENT_ID_,
		BPMN_INST_ID_,
		BPMN_DEF_ID_,
		TYPE_ID_,
		SUPPORT_MOBILE_,
		IS_DELE_,
		IS_READ_,
		IS_REVOKE_,
		PROP1_,
		PROP2_,
		PROP3_,
		PROP4_,
		PROP5_,
        TO_CHAR(PROP6_) AS PROP6_,
        TO_CHAR(TARGET_NODE_) AS TARGET_NODE_,
        TENANT_ID_,
        UTASKID,
        TO_CHAR(LEADERIDS) as LEADERIDS  from bpm_task
		INNER JOIN  (
		SELECT ut.ID_ utaskId,  wm_concat(ut.assignee_id_) as leaderIds from
		(select ID_,'' as assignee_id_ from bpm_task where 1=0
		<foreach collection="map.rightMap" index="key" item="item" open="" separator=" " close="">
			UNION ALL
			select ID_,'${key}' as assignee_id_ from  bpm_task task where (task.assignee_id_=#{key}
			<!-- 委托的情况只查自己的,领导的代理任务就不显示在秘书的待办列表 -->
			<if test="item.isSelf">
				or (task.OWNER_ID_='${key}' and task.STATUS_='AGENT')
			</if>
			)
			<if test="!item.isSelf and item.defKeys!=''">
				and task.PROC_DEF_KEY_ in (${item.defKeys})
			</if>

			<foreach item="value" index="type" collection="item.groupMap" open="" close="" separator=" ">
				UNION ALL select c.TASK_ID_ as ID_,'${key}' as assignee_id_ from  bpm_task_candidate c
				<if test="!item.isSelf">
					INNER JOIN  bpm_task bt on bt.TASK_ID_ = c.TASK_ID_ and bt.STATUS_ !='DELIVERTO'
				</if>
				where c.executor_ in (${value}) and c.type_='${type}'
				<if test="!item.isSelf and item.defKeys!=''">
					and  bt.PROC_DEF_KEY_ in (${item.defKeys})
				</if>
			</foreach>
		</foreach>) ut group by ut.ID_
		)  ubpt  on  ubpt.uTaskId = bpm_task.ID_
		UNION  SELECT bpm_task_notice.ID_,
		bpm_task_notice.NAME_,
		bpm_task_notice.SUBJECT_,
		bpm_task_notice.PROC_INST_ID_,
		bpm_task_notice.TASK_ID_,
		bpm_task_notice.EXEC_ID_,
		bpm_task_notice.NODE_ID_,
		bpm_task_notice.PROC_DEF_ID_,
		bpm_task_notice.PROC_DEF_KEY_,
		bpm_task_notice.PROC_DEF_NAME_,
		bpm_task_notice.OWNER_ID_,
		bpm_task_notice.OWNER_NAME_,
		bpm_task_notice.ASSIGNEE_ID_,
		bpm_task_notice.ASSIGNEE_NAME_,
		bpm_task_notice.STATUS_,
		bpm_task_notice.PRIORITY_,
		bpm_task_notice.CREATE_TIME_,
		bpm_task_notice.DUE_TIME_,
		bpm_task_notice.SUSPEND_STATE_,
		bpm_task_notice.PARENT_ID_,
		bpm_task_notice.BPMN_INST_ID_,
		bpm_task_notice.BPMN_DEF_ID_,
		bpm_task_notice.TYPE_ID_,
		bpm_task_notice.SUPPORT_MOBILE_,
		bpm_task_notice.IS_DELE_,
		bpm_task_notice.IS_READ_,
		bpm_task_notice.IS_REVOKE_,
		bpm_task_notice.PROP1_,
		bpm_task_notice.PROP2_,
		bpm_task_notice.PROP3_,
		bpm_task_notice.PROP4_,
		bpm_task_notice.PROP5_,
        TO_CHAR(bpm_task_notice.PROP6_) AS PROP6_,
        '' AS TARGET_NODE_,
        bpm_task_notice.TENANT_ID_,
        bpm_task_notice.TASK_ID_ AS uTaskId,
        '' AS leaderIds
        from bpm_task_notice where assignee_id_=${map.userId}
		)  task
		LEFT JOIN BPM_PRO_INST inst ON task.proc_inst_id_ = inst.id_
		LEFT JOIN  (select *  from bpm_task_due_time where is_new_ ='1' ) due ON task.TASK_ID_ = due.TASK_ID_
		)   tmp  where
        <if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.paramNameValuePairs.normalSqlSegment)">
            ${ew.paramNameValuePairs.normalSqlSegment}
            and
        </if>
		tmp.status_ != 'TRANSFORMING'
	    AND tmp.status_ != 'COMMU'
		AND tmp.status_ != 'COPYTO'
		AND tmp.IS_DELE_ = 0
		AND tmp.status_ != 'APPROVELINEING'
		AND tmp.status_ != 'SIGNSEQUENCEING'
		AND tmp.status_ != 'SIGNLINEING'
		AND tmp.instStatus != 'manualend'
		AND tmp.instStatus != 'adminmanualend'
        <if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.paramNameValuePairs.orderSqlSegment)">
            ${ew.paramNameValuePairs.orderSqlSegment}
        </if>
        <if test="@com.hotent.base.ognl.Ognl@isEmpty(ew.paramNameValuePairs.orderSqlSegment)">
            order by CREATE_TIME_ desc
        </if>
	</select>

	<!-- 指定用户领导的待办  -->
	<select id="getLeaderByUserId" databaseId="pg" parameterType="java.util.Map" resultMap="BpmTask">
		select * from (
		SELECT task.*,
		inst.proc_def_name_ procDefName,
		inst.create_by_ creatorId,inst.CREATOR_ creator,
		inst.create_time_ createDate,
		inst.status_ instStatus,
		inst.is_forbidden_ instIsForbidden,
		inst.type_id_ typeId,
		due.due_time_ dueTaskTime,
		due.EXPIRATION_DATE_ dueExpDate,
		due.date_type_ dueDateType,
		due.status_ dueStatus,
		inst.URGENT_STATE_ urgentStateValue
		FROM (
	    SELECT ID_,
        NAME_,
        SUBJECT_,
        PROC_INST_ID_,
        TASK_ID_,
        EXEC_ID_,
        NODE_ID_,
        PROC_DEF_ID_,
        PROC_DEF_KEY_,
        PROC_DEF_NAME_,
        OWNER_ID_,
        OWNER_NAME_,
        ASSIGNEE_ID_,
        ASSIGNEE_NAME_,
        STATUS_,
        PRIORITY_,
        CREATE_TIME_,
        DUE_TIME_,
        SUSPEND_STATE_,
        PARENT_ID_,
        BPMN_INST_ID_,
        BPMN_DEF_ID_,
        TYPE_ID_,
        SUPPORT_MOBILE_,
        IS_DELE_,
        IS_READ_,
        IS_REVOKE_,
        PROP1_,
        PROP2_,
        PROP3_,
        PROP4_,
        PROP5_,
        PROP6_,
        TENANT_ID_,
        UTASKID,
        TARGET_NODE_,
        LEADERIDS from bpm_task
		INNER JOIN  (
		SELECT ut.ID_ utaskId,  string_agg(ut.assignee_id_,',') as leaderIds from
		(select ID_,''::text as assignee_id_ from bpm_task where 1=0
		<foreach collection="map.rightMap" index="key" item="item" open="" separator=" " close="">
			UNION ALL
			select ID_,'${key}' as assignee_id_ from  bpm_task task where (task.assignee_id_='${key}'
			<!-- 委托的情况只查自己的,领导的代理任务就不显示在秘书的待办列表 -->
			<if test="item.isSelf">
				or (task.OWNER_ID_='${key}' and task.STATUS_='AGENT')
			</if>
			)
			<if test="!item.isSelf and item.defKeys!=''">
				and task.PROC_DEF_KEY_ in (${item.defKeys})
			</if>

			<foreach item="value" index="type" collection="item.groupMap" open="" close="" separator=" ">
				UNION ALL select c.TASK_ID_ as "ID_",'${key}' as assignee_id_ from  bpm_task_candidate c
				<if test="!item.isSelf">
					INNER JOIN  bpm_task bt on bt.TASK_ID_ = c.TASK_ID_ and bt.STATUS_ !='DELIVERTO'
				</if>
				where c.executor_ in (${value}) and c.type_='${type}'
				<if test="!item.isSelf and item.defKeys!=''">
					and  bt.PROC_DEF_KEY_ in (${item.defKeys})
				</if>
			</foreach>
		</foreach>) ut group by ut.ID_
		)  ubpt  on  ubpt.uTaskId = bpm_task.ID_
		UNION  SELECT ID_,
        NAME_,
        SUBJECT_,
        PROC_INST_ID_,
        TASK_ID_,
        EXEC_ID_,
        NODE_ID_,
        PROC_DEF_ID_,
        PROC_DEF_KEY_,
        PROC_DEF_NAME_,
        OWNER_ID_,
        OWNER_NAME_,
        ASSIGNEE_ID_,
        ASSIGNEE_NAME_,
        STATUS_,
        PRIORITY_,
        CREATE_TIME_,
        DUE_TIME_,
        SUSPEND_STATE_,
        PARENT_ID_,
        BPMN_INST_ID_,
        BPMN_DEF_ID_,
        TYPE_ID_,
        SUPPORT_MOBILE_,
        IS_DELE_,
        IS_READ_,
        IS_REVOKE_,
        PROP1_,
        PROP2_,
        PROP3_,
        PROP4_,
        PROP5_,
        PROP6_,
        TENANT_ID_,
        bpm_task_notice.TASK_ID_ As uTaskId,''::text AS TARGET_NODE_, ''::text As leaderIds from bpm_task_notice where assignee_id_='${map.userId}'
		)  task
		LEFT JOIN BPM_PRO_INST inst ON task.proc_inst_id_ = inst.id_
		LEFT JOIN  (select *  from bpm_task_due_time where is_new_ =1 ) due ON task.TASK_ID_ = due.TASK_ID_
		)   tmp  where
        <if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.paramNameValuePairs.normalSqlSegment)">
            ${ew.paramNameValuePairs.normalSqlSegment}
            and
        </if>
		tmp.status_ != 'TRANSFORMING'
	    AND tmp.status_ != 'COMMU'
		AND tmp.status_ != 'COPYTO'
		AND tmp.IS_DELE_ = 0
		AND tmp.status_ != 'APPROVELINEING'
		AND tmp.status_ != 'SIGNSEQUENCEING'
		AND tmp.status_ != 'SIGNLINEING'
		AND tmp.instStatus != 'manualend'
		AND tmp.instStatus != 'adminmanualend'
		group by tmp.id_,tmp.IS_DELE_,tmp.name_,tmp.subject_,tmp.proc_inst_id_,tmp.task_id_,tmp.exec_id_,tmp.node_id_,tmp.proc_def_id_,tmp.proc_def_key_,tmp.proc_def_key_,
		tmp.proc_def_name_,tmp.owner_id_,tmp.assignee_id_,tmp.status_,tmp.priority_,tmp.create_time_,tmp.due_time_,tmp.suspend_state_,tmp.parent_id_,
		tmp.bpmn_inst_id_,tmp.bpmn_def_id_,tmp.type_id_,tmp.support_mobile_,tmp.OWNER_NAME_,tmp.ASSIGNEE_NAME_,tmp.instIsForbidden,tmp.IS_READ_,tmp.IS_REVOKE_,tmp.prop1_,tmp.prop2_,tmp.prop3_,tmp.prop4_,tmp.prop5_,tmp.prop6_,tmp.utaskId,
		tmp.leaderIds,tmp.tenant_id_,TARGET_NODE_,
		procDefName,creatorId,creator,createDate, instStatus,typeId,dueTaskTime,dueExpDate,dueDateType,dueStatus,urgentStateValue
        <if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.paramNameValuePairs.orderSqlSegment)">
            ${ew.paramNameValuePairs.orderSqlSegment}
        </if>
        <if test="@com.hotent.base.ognl.Ognl@isEmpty(ew.paramNameValuePairs.orderSqlSegment)">
            order by CREATE_TIME_ desc
        </if>
	</select>

	<!-- 获取领导的待办分类  -->
	<select id="getLeaderTaskCount"  parameterType="java.util.Map" resultType="java.util.Map">
		SELECT type_id_ AS "typeId",COUNT(1) AS "count" FROM
		( SELECT task.status_ status_,inst.status_ instStatus,inst.type_id_,inst.IS_DELE_ IS_DELE_
		FROM( SELECT * FROM bpm_task
		INNER JOIN (	SELECT ut.ID_ utaskId FROM (	SELECT ID_ FROM bpm_task WHERE 1 = 0
		<foreach collection="rightMap" index="key" item="item" open="" separator=" " close="">
			UNION ALL select ID_ from bpm_task task where task.assignee_id_=#{key}
			<if test="!item.isSelf and item.defKeys!=''">
				and task.PROC_DEF_KEY_ in (${item.defKeys})
			</if>
			<foreach item="value" index="type" collection="item.groupMap" open="" close="" separator=" ">
				UNION ALL select bt.ID_ from	bpm_task_candidate c
				INNER JOIN bpm_task bt on bt.TASK_ID_ = c.TASK_ID_ and bt.STATUS_!='DELIVERTO'
				where c.executor_ in (${value}) and c.type_='${type}'
				<if test="!item.isSelf and item.defKeys!=''">
					and bt.PROC_DEF_KEY_ in (${item.defKeys})
				</if>
			</foreach>
		</foreach>
		) ut GROUP BY ut.ID_ ) ubpt ON ubpt.uTaskId = bpm_task.ID_
		) task
		LEFT JOIN BPM_PRO_INST inst ON task.proc_inst_id_ = inst.id_
		) tmp
		WHERE tmp.status_ != 'TRANSFORMING' AND tmp.status_ != 'COPYTO' AND tmp.IS_DELE_ = 0 AND tmp.status_ != 'APPROVELINEING'
		AND tmp.status_ != 'SIGNSEQUENCEING' AND tmp.status_ != 'SIGNLINEING' AND tmp.instStatus != 'manualend'
		GROUP BY
		tmp.type_id_
	</select>

	<!-- 指定用户的待办 mysql oracle  1. 删除 group by   2. 改为 union all 3. 删除oracle方言 共用下面的查询语句  -->
	<select id="getByUserId" parameterType="java.util.Map" resultMap="BpmTask">
		SELECT ID_,NAME_,SUBJECT_,PROC_INST_ID_,TASK_ID_,EXEC_ID_,NODE_ID_,PROC_DEF_ID_,PROC_DEF_KEY_,PROC_DEF_NAME_,OWNER_ID_,OWNER_NAME_,ASSIGNEE_ID_,ASSIGNEE_NAME_,STATUS_,PRIORITY_,
		CREATE_TIME_,DUE_TIME_,SUSPEND_STATE_,PARENT_ID_,BPMN_INST_ID_,BPMN_DEF_ID_,TYPE_ID_,SUPPORT_MOBILE_,IS_DELE_,IS_READ_,IS_REVOKE_,PROP1_,PROP2_,PROP3_,PROP4_,PROP5_,PROP6_,
		TENANT_ID_,procDefName,creatorId,creator,createDate,instStatus,instIsForbidden,typeId,EXECUTE_DATE_ AS DEADLINE, urgentStateValue FROM (
		select bt.*,
		inst.proc_def_name_ procDefName,
		inst.create_by_ creatorId,
		inst.CREATOR_ creator,
		inst.create_time_ createDate,
		inst.status_ instStatus,
		inst.is_forbidden_ instIsForbidden,
		inst.type_id_ typeId,
		inst.URGENT_STATE_ urgentStateValue,
		bpmTaskTemp.EXECUTE_DATE_
		FROM bpm_task bt
		INNER JOIN (

		select btask1.id_,btr.EXECUTE_DATE_ from bpm_task btask1
		LEFT JOIN  (SELECT task_id_,min(execute_date_) as execute_date_ FROM bpm_reminder_history GROUP BY task_id_) btr
		ON btr.TASK_ID_ = btask1.ID_
		where ((assignee_id_ = ${map.user}) or (owner_id_ = ${map.user} and status_='AGENT')) and  btask1.status_ != 'TRANSFORMING' AND btask1.status_ != 'COPYTO' AND btask1.status_ != 'APPROVELINEING' AND btask1.status_ != 'SIGNSEQUENCEING' AND btask1.status_ != 'SIGNLINEING'

		union all

		select btask2.id_,btr.EXECUTE_DATE_  FROM  bpm_task btask2
		right JOIN bpm_task_candidate c
		ON btask2.id_ = c.TASK_ID_   AND btask2.assignee_id_ = '0'  and btask2.status_ != 'TRANSFORMING' AND btask2.status_ != 'COPYTO' AND btask2.status_ != 'APPROVELINEING' AND btask2.status_ != 'SIGNSEQUENCEING' AND btask2.status_ != 'SIGNLINEING'
		LEFT JOIN  (SELECT task_id_,min(execute_date_) as execute_date_ FROM bpm_reminder_history GROUP BY task_id_) btr
		ON btr.TASK_ID_ = btask2.ID_
		where
		<foreach collection="map" index="key" item="val" open="(" separator=" or " close=")">
			<if test="key != 'keyWord' and key != 'supportMobile'">
				(c.executor_ in (${val}) and c.type_=#{key})
			</if>
		</foreach>
		GROUP BY btask2.id_, btr.EXECUTE_DATE_
		) bpmTaskTemp  on bpmTaskTemp.id_ =bt.id_
		LEFT JOIN bpm_pro_inst inst
		ON bt.proc_inst_id_ = inst.id_
        where inst.IS_DELE_ = 0 AND inst.status_ != 'manualend' AND inst.status_ != 'adminmanualend'
        <if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.customSqlSegment)">
            <if test="!@com.hotent.base.ognl.Ognl@startsWith(ew.customSqlSegment, 'order by')">
                AND
            </if>
            ${@com.hotent.base.ognl.Ognl@withOutWhere(ew.customSqlSegment)}
        </if>
		) temp
		order by  <if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.paramNameValuePairs.isMobile)"> support_mobile_ desc, </if>
		<choose>
			<when test="@com.hotent.base.ognl.Ognl@isNotEmpty(orderFields)">
				<foreach collection="orderFields" item="orderField" separator=",">
					${orderField}
				</foreach>
			</when>
			<otherwise> CREATE_TIME_ desc</otherwise>
		</choose>
	</select>

	<select id="getByUserIdPGSQL" parameterType="java.util.Map" resultMap="BpmTask">
		SELECT ID_,NAME_,SUBJECT_,PROC_INST_ID_,TASK_ID_,EXEC_ID_,NODE_ID_,PROC_DEF_ID_,PROC_DEF_KEY_,PROC_DEF_NAME_,OWNER_ID_,OWNER_NAME_,ASSIGNEE_ID_,ASSIGNEE_NAME_,STATUS_,PRIORITY_,
		CREATE_TIME_,DUE_TIME_,SUSPEND_STATE_,PARENT_ID_,BPMN_INST_ID_,BPMN_DEF_ID_,TYPE_ID_,SUPPORT_MOBILE_,IS_DELE_,IS_READ_,IS_REVOKE_,PROP1_,PROP2_,PROP3_,PROP4_,PROP5_,PROP6_,
		TENANT_ID_,procDefName,creatorId,creator,createDate,instStatus,instIsForbidden,typeId,MIN(EXECUTE_DATE_) AS DEADLINE, urgentStateValue FROM (
		SELECT
		bt.*, inst.proc_def_name_ procDefName,
		inst.create_by_ creatorId,
		inst.CREATOR_ creator,
		inst.create_time_ createDate,
		inst.status_ instStatus,
		inst.is_forbidden_ instIsForbidden,
		inst.type_id_ typeId,
	    inst.URGENT_STATE_ urgentStateValue,
		btr.EXECUTE_DATE_
		FROM bpm_task bt
		LEFT JOIN bpm_pro_inst inst ON bt.proc_inst_id_ = inst.id_
		LEFT JOIN bpm_task_candidate c ON bt.id_ = c.TASK_ID_  and  bt.assignee_id_='0'
		LEFT JOIN bpm_reminder_history btr ON btr.TASK_ID_ = bt.ID_
		WHERE
		((bt.assignee_id_ = #{map.user} or (bt.OWNER_ID_ =#{map.user} and bt.status_='AGENT'))
		<foreach collection="map" index="key" item="val" open="" separator=" " close="">
			<if test="key != 'keyWord' and key != 'supportMobile'">
				or (c.executor_ in (#{val}) and c.type_=#{key})
			</if>
		</foreach>)
		AND bt.status_ != 'TRANSFORMING'
		AND bt.status_ != 'COPYTO'
		AND bt.status_ != 'APPROVELINEING'
		AND bt.status_ != 'SIGNSEQUENCEING'
		AND bt.status_ != 'SIGNLINEING'
		AND inst.IS_DELE_ = 0
		AND inst.status_ != 'manualend'
		AND inst.status_ != 'adminmanualend'
		<if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.customSqlSegment)">
			<if test="!@com.hotent.base.ognl.Ognl@startsWith(ew.customSqlSegment, 'order by')">
				AND
			</if>
			${@com.hotent.base.ognl.Ognl@withOutWhere(ew.customSqlSegment)}
		</if>
		) tmp
		group by ID_,
		NAME_,
		SUBJECT_,
		PROC_INST_ID_,
		TASK_ID_,
		EXEC_ID_,
		NODE_ID_,
		PROC_DEF_ID_,
		PROC_DEF_KEY_,
		PROC_DEF_NAME_,
		OWNER_ID_,
		OWNER_NAME_,
		ASSIGNEE_ID_,
		ASSIGNEE_NAME_,
		STATUS_,
		PRIORITY_,
		CREATE_TIME_,
		DUE_TIME_,
		SUSPEND_STATE_,
		PARENT_ID_,
		BPMN_INST_ID_,
		BPMN_DEF_ID_,
		TYPE_ID_,
		SUPPORT_MOBILE_,
		IS_DELE_,
		IS_READ_,
		IS_REVOKE_,
		PROP1_,
		PROP2_,
		PROP3_,
		PROP4_,
		PROP5_,
		PROP6_,
		TENANT_ID_,
		procDefName,
		creatorId,
		creator,
		createDate,
		instStatus,
		instIsForbidden,
		typeId,
		urgentStateValue
		order by  <if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.paramNameValuePairs.isMobile)"> support_mobile_ desc, </if> CREATE_TIME_ desc
	</select>

	<select id="getByUserId" databaseId="pg" parameterType="java.util.Map" resultMap="BpmTask">
    	SELECT *,EXECUTE_DATE_ as DEADLINE FROM (
			SELECT
			    bt.*, inst.proc_def_name_ procDefName,
			    inst.create_by_ creatorId,
			    inst.CREATOR_ creator,
			    inst.create_time_ createDate,
			    inst.status_ instStatus,
			    inst.is_forbidden_ instIsForbidden,
			    inst.type_id_ typeId,
				btr.EXECUTE_DATE_,
			    inst.URGENT_STATE_ urgentStateValue
			FROM
			    bpm_pro_inst inst,
			    bpm_task bt
			LEFT JOIN bpm_task_candidate c ON bt.id_ = c.TASK_ID_  and  bt.assignee_id_='0'
			LEFT JOIN (SELECT task_id_,min(execute_date_) as execute_date_ FROM bpm_reminder_history GROUP BY task_id_) btr ON btr.task_id_ = bt.id_
			WHERE
			    ((bt.assignee_id_ = (cast(${map.user} as text)) or (bt.OWNER_ID_ =(cast(${map.user} as text)) and bt.status_='AGENT'))
			    <foreach collection="map" index="key" item="val" open="" separator=" " close="">
			            <if test="key != 'keyWord' and key != 'supportMobile'">
							or (c.executor_ in (${val}) and c.type_='${key}')
						</if>
			    </foreach>)
				AND bt.proc_inst_id_ = inst.id_
				AND bt.status_ != 'TRANSFORMING'
				AND bt.status_ != 'COPYTO'
				AND inst.IS_DELE_ = 0
				AND bt.status_ != 'APPROVELINEING'
				AND bt.status_ != 'SIGNSEQUENCEING'
				AND bt.status_ != 'SIGNLINEING'
				AND inst.status_ != 'manualend'
				AND inst.status_ != 'adminmanualend'
			    <if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.customSqlSegment)">
			    	<if test="!@com.hotent.base.ognl.Ognl@startsWith(ew.customSqlSegment, 'order by')">
			    	AND
			    	</if>
			        ${@com.hotent.base.ognl.Ognl@withOutWhere(ew.customSqlSegment)}
			    </if>
		) tmp
		order by  <if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.paramNameValuePairs.isMobile)"> support_mobile_ desc, </if>
		<choose>
		<when test="@com.hotent.base.ognl.Ognl@isNotEmpty(orderFields)">
			<foreach collection="orderFields" item="orderField" separator=",">
				${orderField}
			</foreach>
		</when>
		<otherwise> CREATE_TIME_ desc</otherwise>
		</choose>
    </select>

    <!-- 指定用户的待办总数(带查询条件) -->
    <select id="getCountByUserIdWithWhere" parameterType="java.util.Map" resultType="java.lang.Long">
		SELECT
		count(1) as count
        FROM (
        select bt.ID_ FROM <include refid="selectTodoCount"/>

        <if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.customSqlSegment)">
            <if test="!@com.hotent.base.ognl.Ognl@startsWith(ew.customSqlSegment, 'order by')">
                AND
            </if>
            ${@com.hotent.base.ognl.Ognl@withOutWhere(ew.customSqlSegment)}
        </if>
        ) temp
    </select>


	<select id="getCountByUserIdWithWhere" databaseId="pg" parameterType="java.util.Map" resultType="java.lang.Long">
		SELECT
		count(1) as count
		FROM
		bpm_task bt
		LEFT JOIN bpm_task_candidate c ON bt.id_ = c.TASK_ID_
		LEFT JOIN bpm_pro_inst inst ON bt.proc_inst_id_ = inst.id_
		WHERE
		((bt.assignee_id_ = ${map.user} or (bt.OWNER_ID_ =${map.user} and bt.status_='AGENT'))
		<foreach collection="map" index="key" item="val" open="" separator=" " close="">
			<if test="key != 'supportMobile' and key != 'keyWord'">
				or ( bt.assignee_id_ = '0' AND c.executor_ in (${val}) and c.type_=#{key})
			</if>
		</foreach>)
		AND bt.status_ != 'TRANSFORMING'
		AND bt.status_ != 'COPYTO'
		AND bt.status_ != 'APPROVELINEING'
		AND bt.status_ != 'SIGNSEQUENCEING'
		AND bt.status_ != 'SIGNLINEING'
		AND inst.IS_DELE_ = 0 AND inst.status_ != 'manualend' AND inst.status_ != 'adminmanualend'
		<if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.customSqlSegment)">
			and  ${@com.hotent.base.ognl.Ognl@withOutWhere(ew.customSqlSegment)}
		</if>
	</select>

	<!-- 指定用户的待办总数(带查询条件) -->
	<select id="getCountByUserIdWithWherePGSQL" parameterType="java.util.Map" resultType="java.lang.Long">
		SELECT
		count(1) as count
		FROM
		bpm_task bt
		LEFT JOIN bpm_task_candidate c ON bt.id_ = c.TASK_ID_
		LEFT JOIN bpm_pro_inst inst ON bt.proc_inst_id_ = inst.id_
		WHERE
		((bt.assignee_id_ = #{map.user} or (bt.OWNER_ID_ =#{map.user} and bt.status_='AGENT'))
		<foreach collection="map" index="key" item="val" open="" separator=" " close="">
			<if test="key != 'supportMobile' and key != 'keyWord'">
				or ( bt.assignee_id_ = '0' AND c.executor_ in (cast(${val} as text)) and c.type_=#{key})
			</if>
		</foreach>)
		AND bt.status_ != 'TRANSFORMING'
		AND bt.status_ != 'COPYTO'
		AND bt.status_ != 'APPROVELINEING'
		AND bt.status_ != 'SIGNSEQUENCEING'
		AND bt.status_ != 'SIGNLINEING'
		AND inst.IS_DELE_ = 0 AND inst.status_ != 'manualend' AND inst.status_ != 'adminmanualend'
		<if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.customSqlSegment)">
			and  ${@com.hotent.base.ognl.Ognl@withOutWhere(ew.customSqlSegment)}
		</if>
	</select>


	<!-- 指定用户的待办总数(按分类统计,不带查询条件) -->
	<select id="getCountByUserId" parameterType="java.util.Map" resultType="java.util.Map">
		SELECT
            inst.type_id_ as "typeId",
			count(1) as "count"
		FROM <include refid="selectTodoCount" />
		GROUP BY
			inst.type_id_
	</select>

	<select id="getCountByUserId" databaseId="pg" parameterType="java.util.Map" resultType="java.util.Map">
		SELECT
		type_id_ as "typeId",
		count(1) as "count"
		FROM
		(
		SELECT
		bt.id_ AS taskId,
		bt.proc_inst_id_ AS instId
		FROM
		bpm_task bt
		LEFT JOIN bpm_task_candidate c ON bt.id_ = c.TASK_ID_
		WHERE
		((bt.assignee_id_ = cast(${map.user} as text) or (bt.OWNER_ID_ =cast(${map.user} as text) and bt.status_='AGENT'))
		<foreach collection="map" index="key" item="val" open="" separator=" " close="">
			or (c.executor_ in (${val}) and c.type_=#{key})
		</foreach>)
		AND bt.status_ != 'TRANSFORMING'
		AND bt.status_ != 'COPYTO'
		AND bt.status_ != 'APPROVELINEING'
		AND bt.status_ != 'SIGNSEQUENCEING'
		AND bt.status_ != 'SIGNLINEING'
		<if test="map.isMobile !=null and map.isMobile!=''">
			AND bt.SUPPORT_MOBILE_ = #{map.isMobile}
		</if>
		) tmp
		LEFT JOIN bpm_pro_inst inst ON tmp.instId = inst.id_
		WHERE
		inst.IS_DELE_ = 0 AND inst.status_ != 'manualend'  AND inst.status_ != 'adminmanualend'
		GROUP BY
		inst.type_id_
	</select>

	<select id="getCountByUserIdKingBase"  parameterType="java.util.Map" resultType="java.util.Map">
		SELECT
		type_id_ as "typeId",
		count(1) as "count"
		FROM
		(
		SELECT
		bt.id_ AS taskId,
		bt.proc_inst_id_ AS instId
		FROM
		bpm_task bt
		LEFT JOIN bpm_task_candidate c ON bt.id_ = c.TASK_ID_
		WHERE
		((bt.assignee_id_ = #{map.user} or (bt.OWNER_ID_ =#{map.user} and bt.status_='AGENT'))
		<foreach collection="map" index="key" item="val" open="" separator=" " close="">
			or (c.executor_ in (#{val}) and c.type_=#{key})
		</foreach>)
		AND bt.status_ != 'TRANSFORMING'
		AND bt.status_ != 'COPYTO'
		AND bt.status_ != 'APPROVELINEING'
		AND bt.status_ != 'SIGNSEQUENCEING'
		AND bt.status_ != 'SIGNLINEING'
		<if test="map.isMobile !=null and map.isMobile!=''">
			AND bt.SUPPORT_MOBILE_ = #{map.isMobile}
		</if>
		) tmp
		LEFT JOIN bpm_pro_inst inst ON tmp.instId = inst.id_
		WHERE
		inst.IS_DELE_ = 0 AND inst.status_ != 'manualend'  AND inst.status_ != 'adminmanualend'
		GROUP BY
		inst.type_id_
	</select>

	<!-- 指定用户的待办总数 (数据台)-->
	<select id="getTodoCountByUserId" parameterType="java.util.Map" resultType="java.lang.Long">
		SELECT
			count(1) as count
		FROM
			(
		        SELECT
						bt.id_ AS taskId,
						bt.proc_inst_id_ AS instId
					FROM
						bpm_task bt
					LEFT JOIN bpm_task_candidate c ON bt.id_ = c.TASK_ID_
					WHERE
						((bt.assignee_id_ = ${map.user} or (bt.OWNER_ID_ =${map.user} and bt.status_='AGENT'))
		                <foreach collection="map" index="key" item="val" open="" separator=" " close="">
		                        <if test="key != 'isMobile' and key != 'keyWord'">
									or (c.executor_ in (${val}) and c.type_=#{key})
								</if>
		                </foreach>)
					AND bt.status_ != 'TRANSFORMING'
					AND bt.status_ != 'COPYTO'
					AND bt.status_ != 'APPROVELINEING'
					AND bt.status_ != 'SIGNSEQUENCEING'
					AND bt.status_ != 'SIGNLINEING'
                    <if test="map.isMobile!=''">
                        AND bt.SUPPORT_MOBILE_ = 1
                    </if>
		    ) tmp
		LEFT JOIN bpm_pro_inst inst ON tmp.instId = inst.id_
		WHERE
			inst.IS_DELE_ = 0 AND inst.status_ != 'manualend' AND inst.status_ != 'adminmanualend'
	</select>

	<select id="getByInstId" parameterType="java.util.Map" resultMap="BpmTask">
		select * from BPM_TASK t where t.proc_inst_id_=#{instId} order by create_time_ desc
	</select>

	<select id="getByInstIdAndNodeId" parameterType="java.util.Map" resultMap="BpmTask">
		select * from BPM_TASK t where t.proc_inst_id_=#{instId} and node_id_ = #{nodeId} order by create_time_ desc
	</select>

	<select id="getByInstUser" parameterType="java.util.Map" resultMap="BpmTask">
		select * from (
			select * from BPM_TASK t where t.assignee_id_=#{userId}  and t.proc_inst_id_=#{instId}

			union all

			select t.* from BPM_TASK t ,BPM_TASK_CANDIDATE tc where t.id_=tc.task_id_
				and  t.assignee_id_='0' and tc.executor_=#{userId}  and tc.type_='user'
				and t.proc_inst_id_=#{instId}
		) tmp
		order by create_time_ desc
	</select>

	<delete id="remove" parameterType="java.lang.String">
		DELETE FROM bpm_task
		WHERE
		id_=#{id}
	</delete>

	<select id="getByRelateTaskId"   parameterType="java.lang.String" resultMap="BpmTask">
		SELECT * FROM bpm_task
		WHERE
		task_id_=#{taskId,jdbcType=VARCHAR}
	</select>

	<delete id="removeByTaskId" parameterType="java.lang.String">
		DELETE FROM bpm_task
		WHERE
		task_id_=#{taskId,jdbcType=VARCHAR}
	</delete>

	<delete id="delByParentId" parameterType="java.lang.String">
		DELETE FROM bpm_task WHERE id_ in (SELECT bmt.id_ from (SELECT id_ from bpm_task where parent_id_ = #{parentId,jdbcType=VARCHAR}) bmt)
	</delete>

	<select id="getByBpmInstIdUserIdGroupList" resultMap="BpmTask">
		select * from (
		select t.* from bpm_task t  where t.proc_inst_id_=#{bpmnInstId} and  t.assignee_id_=#{userId}
		UNION ALL select t.* from bpm_task t left join bpm_task_candidate c on t.task_id_=c.task_id_ where t.assignee_id_='0'  and c.PROC_INST_ID_=#{bpmnInstId} and c.executor_=#{userId}  and c.type_='user'
		<foreach collection="groupList" index="index" item="group" open="" separator=" " close="">
         UNION ALL  select t.* from bpm_task t left join bpm_task_candidate c on t.task_id_=c.task_id_ where t.assignee_id_='0'  and c.PROC_INST_ID_=#{bpmnInstId} and c.executor_=#{group.groupId} and c.type_=#{group.groupType}
        </foreach>
        )tmp
		order by create_time_ desc
	</select>

	<select id="updateAssigneeById" parameterType="java.util.Map">
		update bpm_task set assignee_id_=#{assigneeId} where id_=#{id}
	</select>

	<select id="updateAssigneeOwnerId" parameterType="java.util.Map">
		update bpm_task set assignee_id_=#{assigneeId} ,owner_id_=#{ownerId} where id_=#{id}
	</select>

	<delete id="delByInstList" >
		DELETE FROM  bpm_task where proc_inst_id_ in
			<foreach collection="list" index="index" item="instId" open="(" separator="," close=")">
            #{instId}
        	</foreach>
	</delete>

	<select id="getByParentId" parameterType="java.lang.String" resultMap="BpmTask">
		SELECT * FROM bpm_task
		WHERE
		parent_id_=#{parentId,jdbcType=VARCHAR}
	</select>

	<select id="getIdsByParentId" parameterType="java.lang.String" resultType="java.lang.String">
		SELECT id_ FROM bpm_task
		WHERE
		parent_id_=#{parentId,jdbcType=VARCHAR}
	</select>

	<select id="getTransByUserId" parameterType="java.lang.String" resultMap="BpmTask">
		select * from BPM_TASK t where t.assignee_id_=#{userId} and t.status_='TRANSFORMING' order by create_time_ desc
	</select>

	<select id="getReminderTask"  resultMap="BpmTask">
		select * from bpm_task a where exists (select 1 from bpm_task_reminder b where a.proc_def_id_=b.proc_def_id_ and a.node_id_=b.node_id_)
	</select>


	<select id="getByInstList" parameterType="java.lang.String" resultMap="BpmTask">
		SELECT * FROM bpm_task
		WHERE
		proc_inst_id_ in
			<foreach collection="list" index="index" item="instId" open="(" separator="," close=")">
            #{instId}
        	</foreach>
	</select>

	<select id="getMyTransTask" resultMap="BpmTaskExt">
		SELECT a.*,b.create_time_ as transDate FROM bpm_task a,bpm_task_trans b
		WHERE a.id_=b.task_id_ and a.status_='TRANSFORMING' and assignee_id_=#{map.userId}
		<if test="map.defName!=null">
			and a.proc_def_name_ like #{map.defName}
		</if>
		<if test="map.subject!=null">
			and a.subject_ like #{map.subject}
		</if>
		<if test="map.transTimeStart!=null">
			and b.create_time_ >=#{map.transTimeStart}
		</if>
		<if test="map.transTimeEnd_DG!=null">
			and b.create_time_ &lt;=#{map.transTimeEnd_DG}
		</if>
		<if test="map.orderBySql!=null">
			ORDER BY ${map.orderBySql}
		</if>
		<if test="map.orderBySql==null">
			ORDER BY b.create_time_ DESC
		</if>
	</select>

	<update id="updateTaskPriority" parameterType="java.util.Map" >
		UPDATE bpm_task SET priority_= #{priority,jdbcType=NUMERIC} WHERE id_= #{taskId}
	</update>

	<select id="getTaskByTenantId" parameterType="java.lang.String" resultMap="BpmTask">
		select * from BPM_TASK where tenant_id_=#{tenantId}
	</select>

    <update id="updateOwner" parameterType="java.util.Map" >
        UPDATE bpm_task SET owner_id_= #{ownerId,jdbcType=VARCHAR},owner_name_= #{ownerName,jdbcType=VARCHAR} WHERE owner_id_= #{userId,jdbcType=VARCHAR}
        <if test="instIds!=null">
            AND proc_inst_id_ in <foreach collection="instIds" index="index" item="instId" open="(" separator="," close=")">
            #{instId}
        </foreach>
        </if>
    </update>

    <update id="updateAssignee" parameterType="java.util.Map" >
        UPDATE bpm_task SET assignee_id_= #{assigneeId,jdbcType=VARCHAR},assignee_name_= #{assigneeName,jdbcType=VARCHAR} WHERE assignee_id_= #{userId,jdbcType=VARCHAR}
        <if test="instIds!=null">
            AND proc_inst_id_ in <foreach collection="instIds" index="index" item="instId" open="(" separator="," close=")">
            #{instId}
        </foreach>
        </if>
    </update>

    <update id="retrieveBpmTask" parameterType="java.util.Map" >
        UPDATE bpm_task SET assignee_id_= #{assigneeId,jdbcType=VARCHAR},assignee_name_= #{assigneeName,jdbcType=VARCHAR},status_= 'NORMAL' WHERE task_id_= #{taskId,jdbcType=VARCHAR}
    </update>

    <update id="updateExtraProps" parameterType="com.hotent.bpm.persistence.model.DefaultBpmTask">
		UPDATE bpm_task SET
		prop1_=#{prop1,jdbcType=VARCHAR},
		prop2_=#{prop2,jdbcType=VARCHAR},
		prop3_=#{prop3,jdbcType=VARCHAR},
		prop4_=#{prop4,jdbcType=VARCHAR},
		prop5_=#{prop5,jdbcType=VARCHAR},
		prop6_=#{prop6,jdbcType=LONGVARCHAR}
		WHERE
		id_=#{id}
	</update>


    <!-- 指定用户领导的待办总数(按分类统计,不带查询条件) oracle -->
    <select id="getLeaderCountByUserId" databaseId="oracle" parameterType="java.util.Map" resultType="java.util.Map">
        select type_id_ as "typeId",count(1) as "count" from
        (
            select * from (
                SELECT task.id_,task.IS_DELE_,task.name_,task.subject_,task.proc_inst_id_,task.task_id_,task.exec_id_,task.node_id_,task.proc_def_id_,task.proc_def_key_,
                task.proc_def_name_,task.owner_id_,task.assignee_id_,task.status_,task.priority_,task.create_time_,task.due_time_,task.suspend_state_,task.parent_id_,
                task.bpmn_inst_id_,task.bpmn_def_id_,task.type_id_,task.support_mobile_,task.TENANT_ID_,task.OWNER_NAME_,task.ASSIGNEE_NAME_,
                task.IS_READ_,task.IS_REVOKE_,task.prop1_,task.prop2_,task.prop3_,task.prop4_,task.prop5_,to_char(task.prop6_) as prop6_,task.utaskId,task.leaderIds,
                inst.proc_def_name_ procDefName,
                inst.create_by_ creatorId,inst.CREATOR_ creator,
                inst.create_time_ createDate,
                inst.status_ instStatus,
                inst.is_forbidden_ instIsForbidden,
                inst.type_id_ typeId,
                due.due_time_ dueTaskTime,
                due.EXPIRATION_DATE_ dueExpDate,
                due.date_type_ dueDateType,
                due.status_ dueStatus,
                inst.URGENT_STATE_ urgentStateValue
            FROM (
                SELECT bpm_task.id_,bpm_task.IS_DELE_,bpm_task.name_,bpm_task.subject_,bpm_task.proc_inst_id_,bpm_task.task_id_,bpm_task.exec_id_,bpm_task.node_id_,bpm_task.proc_def_id_,bpm_task.proc_def_key_,
                bpm_task.proc_def_name_,bpm_task.owner_id_,bpm_task.assignee_id_,bpm_task.status_,bpm_task.priority_,bpm_task.create_time_,bpm_task.due_time_,bpm_task.suspend_state_,bpm_task.parent_id_,
                bpm_task.bpmn_inst_id_,bpm_task.bpmn_def_id_,bpm_task.type_id_,bpm_task.support_mobile_,bpm_task.TENANT_ID_,bpm_task.OWNER_NAME_,bpm_task.ASSIGNEE_NAME_,
                bpm_task.IS_READ_,bpm_task.IS_REVOKE_,bpm_task.prop1_,bpm_task.prop2_,bpm_task.prop3_,bpm_task.prop4_,bpm_task.prop5_,to_char(bpm_task.prop6_) as prop6_,ubpt.utaskId,ubpt.leaderIds
                from bpm_task
                INNER JOIN  (
                SELECT ut.ID_ utaskId,  wm_concat(ut.assignee_id_) as leaderIds from
                (select ID_,'' as assignee_id_ from bpm_task where 1=0
                <foreach collection="rightMap" index="key" item="item" open="" separator=" " close="">
                    UNION ALL
                    select ID_,'${key}' as assignee_id_ from  bpm_task task where (task.assignee_id_=#{key}
                    <!-- 委托的情况只查自己的,领导的代理任务就不显示在秘书的待办列表 -->
                    <if test="item.isSelf">
                        or (task.OWNER_ID_='${key}' and task.STATUS_='AGENT')
                    </if>
                    )
                    <if test="!item.isSelf and item.defKeys!=''">
                        and task.PROC_DEF_KEY_ in (${item.defKeys})
                    </if>

                    <foreach item="value" index="type" collection="item.groupMap" open="" close="" separator=" ">
                        UNION ALL select c.TASK_ID_ as ID_,'${key}' as assignee_id_ from  bpm_task_candidate c
                        <if test="!item.isSelf">
                            INNER JOIN  bpm_task bt on bt.TASK_ID_ = c.TASK_ID_ and bt.STATUS_ !='DELIVERTO'
                        </if>
                        where c.executor_ in (${value}) and c.type_='${type}'
                        <if test="!item.isSelf and item.defKeys!=''">
                            and  bt.PROC_DEF_KEY_ in (${item.defKeys})
                        </if>
                    </foreach>
                </foreach>) ut group by ut.ID_
                )  ubpt  on  ubpt.uTaskId = bpm_task.ID_
            UNION
                SELECT bpm_task_notice.id_,bpm_task_notice.IS_DELE_,bpm_task_notice.name_,bpm_task_notice.subject_,bpm_task_notice.proc_inst_id_,bpm_task_notice.task_id_,bpm_task_notice.exec_id_,bpm_task_notice.node_id_,bpm_task_notice.proc_def_id_,bpm_task_notice.proc_def_key_,
                bpm_task_notice.proc_def_name_,bpm_task_notice.owner_id_,bpm_task_notice.assignee_id_,bpm_task_notice.status_,bpm_task_notice.priority_,bpm_task_notice.create_time_,bpm_task_notice.due_time_,bpm_task_notice.suspend_state_,bpm_task_notice.parent_id_,
                bpm_task_notice.bpmn_inst_id_,bpm_task_notice.bpmn_def_id_,bpm_task_notice.type_id_,bpm_task_notice.support_mobile_,bpm_task_notice.TENANT_ID_,bpm_task_notice.OWNER_NAME_,bpm_task_notice.ASSIGNEE_NAME_,
                bpm_task_notice.IS_READ_,bpm_task_notice.IS_REVOKE_,bpm_task_notice.prop1_,bpm_task_notice.prop2_,bpm_task_notice.prop3_,bpm_task_notice.prop4_,bpm_task_notice.prop5_,to_char(bpm_task_notice.prop6_) as prop6_,ubpt.utaskId,ubpt.leaderIds
                from bpm_task_notice
                INNER JOIN  (
                SELECT ut.ID_ utaskId,  wm_concat(ut.assignee_id_) as leaderIds from
                (select ID_,'' as assignee_id_ from bpm_task_notice where 1=0
                <foreach collection="rightMap" index="key" item="item" open="" separator=" " close="">
                    UNION ALL
                    select ID_,'${key}' as assignee_id_ from  bpm_task_notice task where (task.assignee_id_=#{key}
                    <!-- 委托的情况只查自己的,领导的代理任务就不显示在秘书的待办列表 -->
                    <if test="item.isSelf">
                        or (task.OWNER_ID_='${key}' and task.STATUS_='AGENT')
                    </if>
                    )
                    <if test="!item.isSelf and item.defKeys!=''">
                        and task.PROC_DEF_KEY_ in (${item.defKeys})
                    </if>

                    <foreach item="value" index="type" collection="item.groupMap" open="" close="" separator=" ">
                        UNION ALL select c.TASK_ID_ as ID_,'${key}' as assignee_id_ from  bpm_task_candidate c
                        <if test="!item.isSelf">
                            INNER JOIN  bpm_task_notice bt on bt.TASK_ID_ = c.TASK_ID_ and bt.STATUS_ !='DELIVERTO'
                        </if>
                        where c.executor_ in (${value}) and c.type_='${type}'
                        <if test="!item.isSelf and item.defKeys!=''">
                            and  bt.PROC_DEF_KEY_ in (${item.defKeys})
                        </if>
                    </foreach>
                </foreach>) ut group by ut.ID_
                )  ubpt  on  ubpt.uTaskId = bpm_task_notice.ID_
            )  task
            LEFT JOIN BPM_PRO_INST inst ON task.proc_inst_id_ = inst.id_
            LEFT JOIN  (select *  from bpm_task_due_time where is_new_ =1 ) due ON task.TASK_ID_ = due.TASK_ID_
            )   tmp
            where
            tmp.status_ !='TRANSFORMING' and tmp.status_!='COPYTO' and tmp.IS_DELE_ = 0 and tmp.status_ !='APPROVELINEING' and tmp.status_!='SIGNSEQUENCEING' and  tmp.status_!='SIGNLINEING' AND tmp.instStatus != 'manualend' AND tmp.instStatus != 'adminmanualend'
            group by tmp.id_,tmp.IS_DELE_,tmp.name_,tmp.subject_,tmp.proc_inst_id_,tmp.task_id_,tmp.exec_id_,tmp.node_id_,tmp.proc_def_id_,tmp.proc_def_key_,
            tmp.proc_def_name_,tmp.owner_id_,tmp.assignee_id_,tmp.status_,tmp.priority_,tmp.create_time_,tmp.due_time_,tmp.suspend_state_,tmp.parent_id_,
            tmp.bpmn_inst_id_,tmp.bpmn_def_id_,tmp.type_id_,tmp.support_mobile_,tmp.TENANT_ID_,tmp.OWNER_NAME_,tmp.ASSIGNEE_NAME_,tmp.instIsForbidden,tmp.IS_READ_,tmp.IS_REVOKE_,tmp.prop1_,tmp.prop2_,tmp.prop3_,tmp.prop4_,tmp.prop5_,tmp.prop6_,tmp.utaskId,
            tmp.leaderIds,
            procDefName,creatorId,creator,createDate, instStatus,typeId,dueTaskTime,dueExpDate,dueDateType,dueStatus,urgentStateValue
            order by CREATE_TIME_ desc
        ) temp group by type_id_
    </select>

    <sql id="Get_By_RightMap">
         <foreach collection="rightMap" index="key" item="item" open="" separator=" " close="">
             UNION ALL
             select ID_,'${key}' as assignee_id_ from  bpm_task task where (task.assignee_id_=#{key}
             <!-- 委托的情况只查自己的,领导的代理任务就不显示在秘书的待办列表 -->
             <if test="item.isSelf">
                 or (task.OWNER_ID_='${key}' and task.STATUS_='AGENT')
             </if>)
             <if test="!item.isSelf and item.defKeys!=''">
                 and task.PROC_DEF_KEY_ in (${item.defKeys})
             </if>

             <foreach item="value" index="type" collection="item.groupMap" open="" close="" separator=" ">
                 UNION ALL select c.TASK_ID_ as ID_,'${key}' as assignee_id_ from  bpm_task_candidate c
                 <if test="!item.isSelf">
                     INNER JOIN  bpm_task bt on bt.TASK_ID_ = c.TASK_ID_ and bt.STATUS_ !='DELIVERTO'
                 </if>
                 where c.executor_ in (${value}) and c.type_='${type}'
                 <if test="!item.isSelf and item.defKeys!=''">
                     and  bt.PROC_DEF_KEY_ in (${item.defKeys})
                 </if>
             </foreach>
         </foreach>
    </sql>

    <!-- 指定用户领导的待办总数(按分类统计,不带查询条件) -->
    <select id="getLeaderCountByUserId" parameterType="java.util.Map" resultType="java.util.Map">
        SELECT typeId AS "typeId",count( 1 ) AS "count" FROM
			(SELECT * FROM
				( SELECT inst.IS_DELE_,task.status_,inst.status_ instStatus,inst.type_id_ typeId FROM
					( SELECT  bpm_task.proc_inst_id_,bpm_task.status_,bpm_task.type_id_ FROM
						bpm_task INNER JOIN ( SELECT ut.ID_ utaskId FROM ( SELECT ID_, '' AS assignee_id_ FROM bpm_task WHERE 1 = 0
						  <include refid="Get_By_RightMap"/>) ut GROUP BY ut.ID_ ) ubpt ON ubpt.uTaskId = bpm_task.ID_ UNION
					  SELECT bpm_task_notice.proc_inst_id_,bpm_task_notice.status_,bpm_task_notice.type_id_  FROM
						bpm_task_notice INNER JOIN ( SELECT ut.ID_ utaskId FROM ( SELECT ID_, '' AS assignee_id_ FROM bpm_task_notice WHERE 1 = 0
						  <include refid="Get_By_RightMap"/>) ut GROUP BY ut.ID_ ) ubpt ON ubpt.uTaskId = bpm_task_notice.ID_
					) task LEFT JOIN BPM_PRO_INST inst ON task.proc_inst_id_ = inst.id_
				) tmp
			WHERE tmp.status_ != 'TRANSFORMING' AND tmp.status_ != 'COPYTO' AND tmp.IS_DELE_ = 0 AND tmp.status_ != 'APPROVELINEING' AND
			 tmp.status_ != 'SIGNSEQUENCEING' AND tmp.status_ != 'SIGNLINEING' AND tmp.instStatus != 'manualend' AND tmp.instStatus != 'adminmanualend'
			GROUP BY tmp.IS_DELE_,tmp.status_,instStatus,typeId
			) temp
		GROUP BY typeId
    </select>

	<select id="filterPksByTodo" resultType="java.lang.String">
		select distinct<if test="isNumberPk"> BUSINESSKEY_</if>
		<if test="!isNumberPk"> BUSINESSKEY_STR_</if>
		from bpm_bus_link bbl
		left join bpm_task bt on bt.PROC_INST_ID_ = bbl.PROC_INST_ID_

		left join bpm_pro_inst inst on inst.ID_ = bbl.PROC_INST_ID_

		LEFT JOIN bpm_task_candidate c ON bt.id_ = c.TASK_ID_  and  bt.assignee_id_='0'

		where FORM_IDENTIFY_ = #{entName}
		and (bt.ASSIGNEE_ID_ = #{userId} or (bt.OWNER_ID_ = #{userId} and bt.STATUS_ = 'AGENT')
		<foreach collection="map" index="key" item="val" open="" separator=" " close="">
			or (c.executor_ in (${val}) and c.type_=#{key})
		</foreach>)
		AND bt.status_ != 'TRANSFORMING'
		AND bt.status_ != 'COPYTO'
		AND bt.status_ != 'APPROVELINEING'
		AND bt.status_ != 'SIGNSEQUENCEING'
		AND bt.status_ != 'SIGNLINEING'
		AND inst.IS_DELE_ = 0
		AND inst.status_ != 'manualend'
		AND inst.status_ != 'adminmanualend'
	</select>

	<select id="getBpmTaskByTeam" parameterType="java.lang.String" resultMap="BpmTask">
		select * from BPM_TASK where id_ = #{taskId} and (owner_id_ = #{ownerId} or assignee_id_ = #{ownerId})
    </select>

	<select id="getTodoCard" resultType="com.hotent.bpm.persistence.model.DefaultBpmTask">
		SELECT ID_,NAME_,SUBJECT_,PROC_INST_ID_,TASK_ID_,EXEC_ID_,NODE_ID_,PROC_DEF_ID_,PROC_DEF_KEY_,PROC_DEF_NAME_,OWNER_ID_,OWNER_NAME_,ASSIGNEE_ID_,ASSIGNEE_NAME_,STATUS_,PRIORITY_,
			CREATE_TIME_,DUE_TIME_,SUSPEND_STATE_,PARENT_ID_,BPMN_INST_ID_,BPMN_DEF_ID_,TYPE_ID_,SUPPORT_MOBILE_,IS_DELE_,IS_READ_,IS_REVOKE_,PROP1_,PROP2_,PROP3_,PROP4_,PROP5_,PROP6_,
			TENANT_ID_,procDefName,creatorId,creator,createDate,instStatus,instIsForbidden,typeId,MIN(EXECUTE_DATE_) AS DEADLINE, urgentStateValue FROM(

            SELECT
			    bt.*, inst.proc_def_name_ procDefName,
			    inst.create_by_ creatorId,
			    inst.CREATOR_ creator,
			    inst.create_time_ createDate,
			    inst.status_ instStatus,
			    inst.is_forbidden_ instIsForbidden,
			    inst.type_id_ typeId,
			    inst.URGENT_STATE_ urgentStateValue,
			    btr.EXECUTE_DATE_
			FROM bpm_task bt
			    LEFT JOIN bpm_pro_inst inst ON bt.proc_inst_id_ = inst.id_
			LEFT JOIN bpm_task_candidate c ON bt.id_ = c.TASK_ID_  and  bt.assignee_id_='0'
			LEFT JOIN bpm_reminder_history btr ON btr.TASK_ID_ = bt.ID_
            WHERE ((bt.assignee_id_ = ${map.user} or (bt.OWNER_ID_ = ${map.user} and bt.status_ = 'AGENT'))
                <foreach collection="map" index="key" item="val" open="" separator=" " close="">
			            <if test="key != 'keyWord' and key != 'supportMobile'">
							or (c.executor_ in (${val}) and c.type_=#{key})
                		</if >
                </foreach>)
				AND bt.status_ != 'TRANSFORMING'
				AND bt.status_ != 'COPYTO'
				AND bt.status_ != 'APPROVELINEING'
				AND bt.status_ != 'SIGNSEQUENCEING'
				AND bt.status_ != 'SIGNLINEING'
			    AND inst.IS_DELE_ = 0
			    AND inst.status_ != 'manualend'
			    AND inst.status_ != 'adminmanualend'
			    <if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.customSqlSegment)">
			    	<if test="!@com.hotent.base.ognl.Ognl@startsWith(ew.customSqlSegment, 'order by')">
			    	AND
			    	</if>
			        ${@com.hotent.base.ognl.Ognl@withOutWhere(ew.customSqlSegment)}
			    </if> ) temp
		   group by ID_ order by PROC_DEF_KEY_ ASC,  <if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.paramNameValuePairs.isMobile)"> support_mobile_ desc, </if> CREATE_TIME_ desc
	</select>

	<select id="getTodoCard" databaseId="oracle" resultType="com.hotent.bpm.persistence.model.DefaultBpmTask">
		SELECT ID_,NAME_,SUBJECT_,PROC_INST_ID_,TASK_ID_,EXEC_ID_,NODE_ID_,PROC_DEF_ID_,PROC_DEF_KEY_,PROC_DEF_NAME_,OWNER_ID_,OWNER_NAME_,ASSIGNEE_ID_,ASSIGNEE_NAME_,STATUS_,PRIORITY_,
		CREATE_TIME_,DUE_TIME_,SUSPEND_STATE_,PARENT_ID_,BPMN_INST_ID_,BPMN_DEF_ID_,TYPE_ID_,SUPPORT_MOBILE_,IS_DELE_,IS_READ_,IS_REVOKE_,PROP1_,PROP2_,PROP3_,PROP4_,PROP5_,DBMS_LOB.SUBSTR(PROP6_,4000,1) AS PROP6_,
		TENANT_ID_,procDefName,creatorId,creator,createDate,instStatus,instIsForbidden,typeId,MIN(EXECUTE_DATE_) AS DEADLINE, urgentStateValue FROM(

		SELECT
		bt.*, inst.proc_def_name_ procDefName,
		inst.create_by_ creatorId,
		inst.CREATOR_ creator,
		inst.create_time_ createDate,
		inst.status_ instStatus,
		inst.is_forbidden_ instIsForbidden,
		inst.type_id_ typeId,
		inst.URGENT_STATE_ urgentStateValue,
		btr.EXECUTE_DATE_
		FROM bpm_task bt
		LEFT JOIN bpm_pro_inst inst ON bt.proc_inst_id_ = inst.id_
		LEFT JOIN bpm_task_candidate c ON bt.id_ = c.TASK_ID_  and  bt.assignee_id_='0'
		LEFT JOIN bpm_reminder_history btr ON btr.TASK_ID_ = bt.ID_
		WHERE ((bt.assignee_id_ = ${map.user} or (bt.OWNER_ID_ = ${map.user} and bt.status_ = 'AGENT'))
		<foreach collection="map" index="key" item="val" open="" separator=" " close="">
			<if test="key != 'keyWord' and key != 'supportMobile'">
				or (c.executor_ in (${val}) and c.type_=#{key})
			</if >
		</foreach>)
		AND bt.status_ != 'TRANSFORMING'
		AND bt.status_ != 'COPYTO'
		AND bt.status_ != 'APPROVELINEING'
		AND bt.status_ != 'SIGNSEQUENCEING'
		AND bt.status_ != 'SIGNLINEING'
		AND inst.IS_DELE_ = 0
		AND inst.status_ != 'manualend'
		AND inst.status_ != 'adminmanualend'
		<if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.customSqlSegment)">
			<if test="!@com.hotent.base.ognl.Ognl@startsWith(ew.customSqlSegment, 'order by')">
				AND
			</if>
			${@com.hotent.base.ognl.Ognl@withOutWhere(ew.customSqlSegment)}
		</if> ) temp
		group by ID_,NAME_,SUBJECT_,PROC_INST_ID_,TASK_ID_,EXEC_ID_,NODE_ID_,PROC_DEF_ID_,PROC_DEF_KEY_,PROC_DEF_NAME_,OWNER_ID_,OWNER_NAME_,ASSIGNEE_ID_,ASSIGNEE_NAME_,STATUS_,PRIORITY_,
		CREATE_TIME_,DUE_TIME_,SUSPEND_STATE_,PARENT_ID_,BPMN_INST_ID_,BPMN_DEF_ID_,TYPE_ID_,SUPPORT_MOBILE_,IS_DELE_,IS_READ_,IS_REVOKE_,PROP1_,PROP2_,PROP3_,PROP4_,PROP5_,DBMS_LOB.SUBSTR(PROP6_,4000,1),
		TENANT_ID_,procDefName,creatorId,creator,createDate,instStatus,instIsForbidden,typeId,urgentStateValue order by PROC_DEF_KEY_ ASC,  <if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.paramNameValuePairs.isMobile)"> support_mobile_ desc, </if> CREATE_TIME_ desc
	</select>

	<select id="getTodoCard" databaseId="pg" resultType="com.hotent.bpm.persistence.model.DefaultBpmTask">
		SELECT ID_,NAME_,SUBJECT_,PROC_INST_ID_,TASK_ID_,EXEC_ID_,NODE_ID_,PROC_DEF_ID_,PROC_DEF_KEY_,PROC_DEF_NAME_,OWNER_ID_,OWNER_NAME_,ASSIGNEE_ID_,ASSIGNEE_NAME_,STATUS_,PRIORITY_,
		CREATE_TIME_,DUE_TIME_,SUSPEND_STATE_,PARENT_ID_,BPMN_INST_ID_,BPMN_DEF_ID_,TYPE_ID_,SUPPORT_MOBILE_,IS_DELE_,IS_READ_,IS_REVOKE_,PROP1_,PROP2_,PROP3_,PROP4_,PROP5_, PROP6_,
		TENANT_ID_,procDefName,creatorId,creator,createDate,instStatus,instIsForbidden,typeId,MIN(EXECUTE_DATE_) AS DEADLINE, urgentStateValue FROM(

		SELECT
		bt.*, inst.proc_def_name_ procDefName,
		inst.create_by_ creatorId,
		inst.CREATOR_ creator,
		inst.create_time_ createDate,
		inst.status_ instStatus,
		inst.is_forbidden_ instIsForbidden,
		inst.type_id_ typeId,
		inst.URGENT_STATE_ urgentStateValue,
		btr.EXECUTE_DATE_
		FROM bpm_task bt
		LEFT JOIN bpm_pro_inst inst ON bt.proc_inst_id_ = inst.id_
		LEFT JOIN bpm_task_candidate c ON bt.id_ = c.TASK_ID_  and  bt.assignee_id_='0'
		LEFT JOIN bpm_reminder_history btr ON btr.TASK_ID_ = bt.ID_
		WHERE ((bt.assignee_id_ = ${map.user} or (bt.OWNER_ID_ = ${map.user} and bt.status_ = 'AGENT'))
		<foreach collection="map" index="key" item="val" open="" separator=" " close="">
			<if test="key != 'keyWord' and key != 'supportMobile'">
				or (c.executor_ in (${val}) and c.type_=#{key})
			</if >
		</foreach>)
		AND bt.status_ != 'TRANSFORMING'
		AND bt.status_ != 'COPYTO'
		AND bt.status_ != 'APPROVELINEING'
		AND bt.status_ != 'SIGNSEQUENCEING'
		AND bt.status_ != 'SIGNLINEING'
		AND inst.IS_DELE_ = 0
		AND inst.status_ != 'manualend'
		AND inst.status_ != 'adminmanualend'
		<if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.customSqlSegment)">
			<if test="!@com.hotent.base.ognl.Ognl@startsWith(ew.customSqlSegment, 'order by')">
				AND
			</if>
			${@com.hotent.base.ognl.Ognl@withOutWhere(ew.customSqlSegment)}
		</if> ) temp
		group by ID_,NAME_,SUBJECT_,PROC_INST_ID_,TASK_ID_,EXEC_ID_,NODE_ID_,PROC_DEF_ID_,PROC_DEF_KEY_,PROC_DEF_NAME_,OWNER_ID_,OWNER_NAME_,ASSIGNEE_ID_,ASSIGNEE_NAME_,STATUS_,PRIORITY_,
		CREATE_TIME_,DUE_TIME_,SUSPEND_STATE_,PARENT_ID_,BPMN_INST_ID_,BPMN_DEF_ID_,TYPE_ID_,SUPPORT_MOBILE_,IS_DELE_,IS_READ_,IS_REVOKE_,PROP1_,PROP2_,PROP3_,PROP4_,PROP5_,PROP6_,
		TENANT_ID_,procDefName,creatorId,creator,createDate,instStatus,instIsForbidden,typeId,urgentStateValue order by PROC_DEF_KEY_ ASC,  <if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.paramNameValuePairs.isMobile)"> support_mobile_ desc, </if> CREATE_TIME_ desc
	</select>

	<select id="getTodoCardCount" resultType="java.util.Map">
		SELECT
			temp.PROC_DEF_KEY_ AS defKey,
			count( temp.ID_ ) AS count_
		FROM (
			SELECT DISTINCT
			bt.PROC_DEF_KEY_ , bt.ID_
			FROM bpm_task bt
			LEFT JOIN bpm_pro_inst inst ON bt.proc_inst_id_ = inst.id_
			LEFT JOIN bpm_task_candidate c ON bt.id_ = c.TASK_ID_  and  bt.assignee_id_='0'
			LEFT JOIN bpm_reminder_history btr ON btr.TASK_ID_ = bt.ID_
			WHERE ((bt.assignee_id_ = ${map.user} or (bt.OWNER_ID_ = ${map.user} and bt.status_ = 'AGENT'))
			<foreach collection="map" index="key" item="val" open="" separator=" " close="">
				<if test="key != 'keyWord' and key != 'supportMobile'">
					or (c.executor_ in (${val}) and c.type_=#{key})
				</if >
			</foreach>)
			AND bt.status_ != 'TRANSFORMING'
			AND bt.status_ != 'COPYTO'
			AND bt.status_ != 'APPROVELINEING'
			AND bt.status_ != 'SIGNSEQUENCEING'
			AND bt.status_ != 'SIGNLINEING'
			AND inst.IS_DELE_ = 0
			AND inst.status_ != 'manualend'
			AND inst.status_ != 'adminmanualend' ) temp
		group by temp.PROC_DEF_KEY_
	</select>

	<select id="getLeaderStreamByUserId" databaseId="pg" parameterType="java.util.Map" resultMap="BpmTask">
		select * from (
		SELECT task.*,
		inst.proc_def_name_ procDefName,
		inst.create_by_ creatorId,inst.CREATOR_ creator,
		inst.create_time_ createDate,
		inst.status_ instStatus,
		inst.is_forbidden_ instIsForbidden,
		inst.type_id_ typeId,
		due.due_time_ dueTaskTime,
		due.EXPIRATION_DATE_ dueExpDate,
		due.date_type_ dueDateType,
		due.status_ dueStatus,
		inst.URGENT_STATE_ urgentStateValue
		FROM (
		SELECT * from bpm_task
		INNER JOIN  (
		SELECT ut.ID_ utaskId,  string_agg(ut.assignee_id_,',') as leaderIds from
		(select ID_,''::text as assignee_id_ from bpm_task where 1=0
		<foreach collection="map.rightMap" index="key" item="item" open="" separator=" " close="">
			UNION ALL
			select ID_,'${key}' as assignee_id_ from  bpm_task task where (task.assignee_id_='${key}'
			<!-- 委托的情况只查自己的,领导的代理任务就不显示在秘书的待办列表 -->
			<if test="item.isSelf">
				or (task.OWNER_ID_='${key}' and task.STATUS_='AGENT')
			</if>
			)
			<if test="!item.isSelf and item.defKeys!=''">
				and task.PROC_DEF_KEY_ in (${item.defKeys})
			</if>

			<foreach item="value" index="type" collection="item.groupMap" open="" close="" separator=" ">
				UNION ALL select c.TASK_ID_ as "ID_",'${key}' as assignee_id_ from  bpm_task_candidate c
				<if test="!item.isSelf">
					INNER JOIN  bpm_task bt on bt.TASK_ID_ = c.TASK_ID_ and bt.STATUS_ !='DELIVERTO'
				</if>
				where c.executor_ in (${value}) and c.type_='${type}'
				<if test="!item.isSelf and item.defKeys!=''">
					and  bt.PROC_DEF_KEY_ in (${item.defKeys})
				</if>
			</foreach>
		</foreach>) ut group by ut.ID_
		)  ubpt  on  ubpt.uTaskId = bpm_task.ID_
		UNION  SELECT bpm_task_notice.*,bpm_task_notice.TASK_ID_ As uTaskId, ''::text As leaderIds from bpm_task_notice where assignee_id_='${map.userId}'
		)  task
		LEFT JOIN BPM_PRO_INST inst ON task.proc_inst_id_ = inst.id_
		LEFT JOIN  (select *  from bpm_task_due_time where is_new_ =1 ) due ON task.TASK_ID_ = due.TASK_ID_
		)   tmp
		${ew.customSqlSegment}
		<if test="@com.hotent.base.ognl.Ognl@isNotEmpty(ew.customSqlSegment)">
			and
		</if>
		<if test="@com.hotent.base.ognl.Ognl@isEmpty(ew.customSqlSegment)">
			where
		</if>
		tmp.status_ !='TRANSFORMING' and tmp.status_!='COPYTO' and tmp.IS_DELE_ = 0 and tmp.status_ !='APPROVELINEING' and tmp.status_!='SIGNSEQUENCEING' and  tmp.status_!='SIGNLINEING' and tmp.instStatus != 'manualend' and tmp.instStatus != 'adminmanualend'
		group by tmp.id_,tmp.IS_DELE_,tmp.name_,tmp.subject_,tmp.proc_inst_id_,tmp.task_id_,tmp.exec_id_,tmp.node_id_,tmp.proc_def_id_,tmp.proc_def_key_,tmp.proc_def_key_,
		tmp.proc_def_name_,tmp.owner_id_,tmp.assignee_id_,tmp.status_,tmp.priority_,tmp.create_time_,tmp.due_time_,tmp.suspend_state_,tmp.parent_id_,
		tmp.bpmn_inst_id_,tmp.bpmn_def_id_,tmp.type_id_,tmp.support_mobile_,tmp.OWNER_NAME_,tmp.ASSIGNEE_NAME_,tmp.instIsForbidden,tmp.IS_READ_,tmp.IS_REVOKE_,tmp.prop1_,tmp.prop2_,tmp.prop3_,tmp.prop4_,tmp.prop5_,tmp.prop6_,tmp.utaskId,
		tmp.leaderIds,tmp.tenant_id_,
		procDefName,creatorId,creator,createDate, instStatus,typeId,dueTaskTime,dueExpDate,dueDateType,dueStatus,urgentStateValue
		order by CREATE_TIME_ desc
	</select>

	<select id="getUserTodoByInstIds" resultMap="BpmTask">
		select bt.*
		from bpm_task bt
		left join bpm_pro_inst inst on bt.PROC_INST_ID_ = inst.ID_
		left join bpm_task_candidate btc on btc.TASK_ID_ = bt.ID_
		where ((bt.ASSIGNEE_ID_ = #{userId} or (bt.OWNER_ID_ = #{userId} and bt.STATUS_ = 'AGENT') )
		<foreach collection="map" index="key" item="val" open="" separator=" " close="">
			or (btc.executor_ in (${val}) and btc.type_=#{key})
		</foreach>)
		AND inst.id_ IN
		<foreach collection="instIds" item="instId" separator="," open="(" close=")">
			#{instId}
		</foreach>
		AND bt.status_ != 'TRANSFORMING'
		AND bt.status_ != 'COPYTO'
		AND bt.status_ != 'APPROVELINEING'
		AND bt.status_ != 'SIGNSEQUENCEING'
		AND bt.status_ != 'SIGNLINEING'
		AND inst.IS_DELE_ = 0
		AND inst.status_ != 'manualend'
		AND inst.status_ != 'adminmanualend'
	</select>

	<select id="getTaskIdsByInstIdAndNodeIds" resultType="string">
		select id_ from BPM_TASK
		WHERE proc_inst_id_=#{procInstId,jdbcType=VARCHAR} and node_id_ in
		<foreach collection="nodeIds" index="index" item="nodeId"
				 open="(" separator="," close=")">
			#{nodeId}
		</foreach>
	</select>

	<update id="updateSubjectByInstId">
		UPDATE bpm_task SET
			subject_=#{subject,jdbcType=VARCHAR}
		WHERE
			proc_inst_id_=#{instId} and subject_ != #{subject,jdbcType=VARCHAR}
	</update>

	<select id="getNodeIdByProcInstId" resultType="string">
		select distinct node_id_ from bpm_task where PROC_INST_ID_ = #{procInstId}
	</select>

	<select id="getRejectTargetNode" resultType="com.hotent.bpm.model.NodeAndTargetNode">
		select distinct bpm_task.NODE_ID_,TARGET_NODE_  from bpm_task
		where bpm_task.PROC_INST_ID_ = #{procInstId}  and TARGET_NODE_ is not null
        and TARGET_NODE_ in
		<foreach collection="afterNodeIds" item="nodeId" open="(" close=")" separator=",">
			#{nodeId}
		</foreach>
	</select>

</mapper>