oeeToolBarNew.js 61.1 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 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
/* eslint-disable */
/* eslint-disable spaced-comment,no-lonely-if */
/* eslint-disable prefer-destructuring */
import React, { Component } from 'react';
import moment from 'moment';
import { Icon as LegacyIcon } from '@ant-design/compatible';
import { DownloadOutlined, DownOutlined, UploadOutlined } from '@ant-design/icons';
import { Menu, Spin, message, Input, Checkbox, Upload } from 'antd';
import * as commonConfig from '@/utils/config';
import * as commonUtils from '@/utils/utils';
import styles from '@/index.less';
import StatementInfo from '@/components/CommonElementEvent/StatementInfo';
import FilfileManageInfo from '@/components/CommonElementEvent/FilfileManageInfo';
import BatchPriceUpdate from '@/components/CommonElementEvent/BatchPriceUpdate';
import BatchNPriceUpdate from '@/components/CommonElementEvent/BatchNPriceUpdate';/* 产品单价价格批量更新 */
// import AffixMenu from '@/routes/common/AffixMenu';
import * as commonFunc from '@/components/Common/commonFunc';
import AntdDraggableModal from '@/components/Common/AntdDraggableModal';
import SlaveMemo from '@/components/Common/SlaveMemo';
import * as commonServices from '@/services/services';
import BatchWorkListPriceUpdate from '@/components/CommonElementEvent/BatchWorkListPriceUpdate';
import CommonListSelect from '@/components/Common/CommonListSelect';
import oeeStyle from './oee.less';
import { routerRedux } from 'dva/router';


const { SubMenu } = Menu;
const MenuItemGroup = Menu.ItemGroup;

class ToolBarComponent extends Component {
  /**   构造函数   */
  constructor(props) {
    super(props);
    this.state = {
      menuData: [], /* 导航工具栏 */
      enabled: false,
      bCheck: false,
      bInvalid: false,
      reportData: [], /* 报表数据 */
      reportSelectedRowKeys: [],
      inputChange: '',
      checked: false,
      checkedId: '',
    };
  }

  componentWillMount() {
    this.componentWillReceiveProps(this.props);
  }

  componentWillReceiveProps(nextProps) {
    const {
      masterConfig, gdsjurisdiction, report, masterData, app, menuChildData,
    } = nextProps;
    let {
      searchUpDownData, enabled, bCheck, bInvalid, visibleStatement, visibleBatchPriceUpdate, visibleBatchNPriceUpdate, reportData, reportSelectedRowKeys,
    } = this.state;
    const btnShowData = [];
    commonConfig.btnData.forEach((item) => {
      btnShowData.push({ ...item });
    });
    let menuData = [];

    if (commonUtils.isNotEmptyObject(masterConfig) && commonUtils.isEmptyArr(menuData)) {
      const buttonConfig = masterConfig.gdsconfigformslave.filter(item => item.sName === '' && item.showName !== '' && item.sControlName !== '');
      /** 筛选出显示的按钮 */
      buttonConfig.forEach((child) => {
        const index = btnShowData.findIndex(item => item.sControlName === child.sControlName);
        if (child.bVisible && child.sControlName.substring(0, 3) === 'Btn' && btnShowData.findIndex(item => item.sControlName === child.sControlName) === -1) {
          child.iconName = 'menu-unfold';
          btnShowData.push(child);
        } else if (!child.bVisible && index > -1) {
          btnShowData.splice(index, 1);
        } else if (index > -1) {
          btnShowData[index].showName = child.showName;
        }
      });
      /** 根据权限,筛选出显示的按钮  */
      gdsjurisdiction.forEach((child) => {
        const index = btnShowData.findIndex(item => item.sControlName === child.sAction);
        if (index > -1) {
          btnShowData.splice(index, 1);
        }
      });
      /* 管理员有重置按钮,非管理员无重置按钮 */
      const { sType } = app.userinfo;
      if (sType !== 'sysadmin') {
        const index = btnShowData.findIndex(item => item.sControlName === 'BtnResetpwd');
        if (index > -1) {
          btnShowData.splice(index, 1);
        }
      }
      /*  筛选出一级菜单    */
      menuData = btnShowData.filter(item => !item.sControlName.includes('.'));
      /*  初始值的二级菜单    */
      // const secondMenu = btnShowData.filter(item => item.sControlName.includes('.'));
      /** 配置后匹配二级菜单 */
      menuData.forEach((menu) => {
        menu.child = [];
        /** 匹配相应的子菜单 */
        const childData = btnShowData.filter(item => item.sControlName.startsWith(`${menu.sControlName}.`) && item.sControlName.split('.').length <= 2);
        if (menu.sControlName === 'BtnPrint') {
          /*   打印的二级菜单集合   */
          const reportChild = [];
          if (commonUtils.isNotEmptyArr(report)) {
            for (const each of report) {
              reportChild.push({
                sControlName: `BtnPrint.${each.sId}`,
                showName: each.sReportName,
                disabled: false,
                sActiveId: each.sId,
                sId: each.sId,
              });
            }
          }
          menu.child.push(...reportChild);
        } else if (menu.sControlName === 'BtnPrintCustomer' && commonUtils.isNotEmptyObject(menuChildData)) {
          const reportChild = [];
          if (commonUtils.isNotEmptyArr(menuChildData)) {
            for (const each of menuChildData) {
              reportChild.push({
                sControlName: `BtnPrintCus.${each.sId}`,
                showName: each.sReportName,
                disabled: false,
                sActiveId: each.sId,
                sId: each.sId,
              });
            }
          }
          menu.child.push(...reportChild);
        } else if (commonUtils.isNotEmptyArr(childData)) {
          childData.forEach((childTwo) => {
            if (childTwo.sControlName === 'BtnBsOperation.BtnUpCheck' || childTwo.sControlName === 'BtnBsOperation.BtnDownCheck') {
              const childDataThree = btnShowData.filter(item => item.sControlName.startsWith(`${childTwo.sControlName}.`) && item.sControlName.split('.').length === 3);
              childTwo.child = childDataThree;
            }
          });
          menu.child.push(...childData);
        }
      });
    }
    if (enabled !== nextProps.enabled) {
      enabled = nextProps.enabled;
    }
    if (visibleStatement !== nextProps.visibleStatement) {
      visibleStatement = nextProps.visibleStatement;
    }
    if (visibleBatchPriceUpdate !== nextProps.visibleBatchPriceUpdate) {
      visibleBatchPriceUpdate = nextProps.visibleBatchPriceUpdate;
    }
    if (visibleBatchNPriceUpdate !== nextProps.visibleBatchNPriceUpdate) {
      visibleBatchNPriceUpdate = nextProps.visibleBatchNPriceUpdate;
    }
    if (reportData !== nextProps.reportData) {
      reportData = nextProps.reportData;
    }
    if (reportSelectedRowKeys !== nextProps.reportSelectedRowKeys) {
      reportSelectedRowKeys = nextProps.reportSelectedRowKeys;
    }
    if (commonUtils.isNotEmptyObject(masterData) && bCheck !== masterData.bCheck) {
      bCheck = masterData.bCheck;
    }
    if (commonUtils.isNotEmptyObject(masterData) && bInvalid !== masterData.bInvalid) {
      bInvalid = masterData.bInvalid;
    }
    if (JSON.stringify(searchUpDownData) !== JSON.stringify(nextProps.searchUpDownData)) {
      searchUpDownData = nextProps.searchUpDownData;
    }
    this.setState({
      menuData, searchUpDownData, enabled, bCheck, bInvalid, visibleStatement, visibleBatchPriceUpdate, visibleBatchNPriceUpdate, reportData, reportSelectedRowKeys,
    });
  }

  shouldComponentUpdate(nextProps, nextState) {
    const { masterConfig } = nextProps;
    const {
      menuData, searchUpDownData, enabled, bCheck, bInvalid, visibleStatement, visibleBatchPriceUpdate, visibleBatchNPriceUpdate, visibleBatchWorkListPriceUpdate, reportData, reportSelectedRowKeys,
    } = this.state;
    const {
      adDisabled,
    } = this.props;
    return masterConfig !== undefined && Object.keys(masterConfig).length > 0 &&
      (JSON.stringify(menuData) !== JSON.stringify(nextState.menuData) ||
        JSON.stringify(masterConfig) !== JSON.stringify(nextState.masterConfig) ||
        JSON.stringify(searchUpDownData) !== JSON.stringify(nextState.searchUpDownData) ||
        JSON.stringify(reportData) !== JSON.stringify(nextState.initialReportData) ||
        JSON.stringify(reportSelectedRowKeys) !== JSON.stringify(nextState.reportSelectedRowKeys) ||
        enabled !== nextState.enabled || bCheck !== nextState.bCheck || visibleStatement !== nextState.visibleStatement ||
        visibleBatchPriceUpdate !== nextState.visibleBatchPriceUpdate ||
        visibleBatchNPriceUpdate !== nextState.visibleBatchNPriceUpdate ||
        visibleBatchWorkListPriceUpdate !== nextState.visibleBatchWorkListPriceUpdate ||
        bInvalid !== nextState.bInvalid || adDisabled !== nextProps.adDisabled);
  }
  componentDidUpdate(prevProps) {
    const {
      slaveSelectedRowKeys, slaveInfoSelectedRowKeys, slaveData, slaveInfoData,
    } = prevProps;
    if (JSON.stringify(slaveData) !== JSON.stringify(this.props.slaveData) || JSON.stringify(slaveInfoData) !== JSON.stringify(this.props.slaveInfoData) ||
      JSON.stringify(slaveSelectedRowKeys) !== JSON.stringify(this.props.slaveSelectedRowKeys) ||
      JSON.stringify(slaveInfoSelectedRowKeys) !== JSON.stringify(this.props.slaveInfoSelectedRowKeys)) {
      this.handleBtnEnabled(this.props, false);
    }
  }
  /**   获取有三级菜单的父级菜单属性   */
  getMenuProps = (menu, type) => {
    const obj = {};
    obj.key = menu.sControlName;
    obj.disabled = this.getMenuStatus(menu);
    const { iconName, showName } = menu;
    obj.className = this.getMenuStatus(menu) && this.props.billList === 'billList' ? styles.toolBarSubDisabled : styles.toolBarSub;
    if (menu.sControlName !== undefined && (menu.sControlName === 'BtnBsOperation.BtnUpCheck' || menu.sControlName === 'BtnBsOperation.BtnDownCheck')) {
      obj.onMouseEnter = this.handleMouseEnter; /*   根据二级菜单获取三级数据   */
    }
    // if (menu.sControlName !== undefined && (menu.sControlName.indexOf('BtnBsOperation.BtnUpCheck') > -1 || menu.sControlName.indexOf('BtnBsOperation.BtnDownCheck') > -1) && menu.sControlName.split('.').length === 3) {
    //   obj.onMouseEnter = this.handleMouseEnter; /*   根据二级菜单获取三级数据   */
    // }
    obj['data-sactiveid'] = menu.sActiveId;
    if (type === 'icon') {
      obj.title = <span><LegacyIcon type={iconName} />{showName}<DownOutlined /></span>;
    } else if (type === 'title') {
      obj.title = showName;
    } else if (type === 'key' && commonUtils.isEmpty(menu.sControlName)) {
      obj.key = menu.sId;
    }
    return obj;
  };

  /**   获取父级菜单属性   */
  getMenuStatus = (menu) => {
    let { masterData } = this.props;
    const { sortEnabled } = this.props;
    const {
      enabled, adDisabled, sModelsType, masterConfig,
    } = this.props;
    if (commonUtils.isEmptyObject(masterData)) {
      masterData = {};
    }
    const { bCheck, bInvalid } = masterData;
    let disabledData = []; /* 置灰按钮集合 */
    if (adDisabled) {
      disabledData = ['BtnAdd', 'BtnAddChild', 'BtnUpd', 'BtnDel', 'BtnSave', 'BtnCancel', 'BtnSetPeriod'];
    } else if (!adDisabled) {
      if (!enabled) {
        if (bInvalid) { // 已作废
          disabledData = ['BtnUpd', 'BtnDel', 'BtnSave', 'BtnCancel', 'BtnExamine', 'BtnCancelExamine', 'BtnCopyTo', 'BtnCopyFrom', 'BtnBsOperation.BtnInvalid', 'BtnInvalid'];
        } else if (bCheck) { // 已审核
          if (!commonUtils.isEmpty(sModelsType) && sModelsType.includes('element/')) {
            if (sModelsType === 'element/customerInfo') {
              const iIndex = masterConfig.gdsconfigformslave.findIndex(item => item.sControlName === 'BtnCheck');
              if (iIndex > -1) {
                disabledData = ['BtnDel', 'BtnSave', 'BtnCancel', 'BtnExamine', 'BtnCopyFrom', 'BtnCancelInvalid', 'BtnImport']; //'BtnUpd',
              } else {
                disabledData = ['BtnSave', 'BtnCancel', 'BtnCancelExamine', 'BtnCopyFrom', 'BtnCancelInvalid'];
              }
            } else {
              disabledData = ['BtnSave', 'BtnCancel', 'BtnCancelExamine', 'BtnCopyFrom', 'BtnCancelInvalid'];
            }
          } else {
            /* 已审核查看状态 修改 删除 保存 取消 审核 复制从 取消作废置灰 */
            disabledData = ['BtnUpd', 'BtnDel', 'BtnSave', 'BtnCancel', 'BtnExamine', 'BtnCopyFrom', 'BtnCancelInvalid', 'BtnImport'];
          }
        } else {
          /** 查看状态 修改 删除 保存 取消 审核 复制从置灰 */
          disabledData = ['BtnSave', 'BtnCancel', 'BtnCancelExamine', 'BtnCopyTo', 'BtnCopyFrom', 'BtnCancelInvalid'];
          if (!commonUtils.isEmpty(sModelsType) && sModelsType.includes('element/')) {
            /* 除了客户信息,其他基础信息在查看状态状态下 复制到常亮 */
            disabledData = ['BtnSave', 'BtnCancel', 'BtnCancelExamine', 'BtnCopyFrom', 'BtnCancelInvalid'];
            if (sModelsType === 'element/customerInfo') {
              const iIndex = masterConfig.gdsconfigformslave.findIndex(item => item.sControlName === 'BtnCheck');
              if (iIndex > -1) {
                disabledData = ['BtnSave', 'BtnCancel', 'BtnCancelExamine', 'BtnCopyTo', 'BtnCopyFrom', 'BtnCancelInvalid'];
              }
            }
          }
        }
      } else {
        /* 修改状态 */
        if (sModelsType === 'production/productionPlanInfo' || sModelsType === 'productionMainPlan/productionMainPlan') {
          disabledData = ['BtnAdd', 'BtnAddChild', 'BtnUpd', 'BtnDel', 'BtnFirst', 'BtnPrior', 'BtnNext', 'BtnLast', 'BtnUpCheck', 'BtnDownCheck', 'BtnExamine', 'BtnCancelExamine', 'BtnCopyTo', 'BtnBsOperation.BtnInvalid', 'BtnBsOperation.BtnCancelInvalid', 'BtnCancelInvalid', 'BtnInvalid'];
        } else {
          disabledData = ['BtnRefresh', 'BtnAdd', 'BtnAddChild', 'BtnUpd', 'BtnDel', 'BtnFirst', 'BtnPrior', 'BtnNext', 'BtnLast', 'BtnUpCheck', 'BtnDownCheck', 'BtnExamine', 'BtnCancelExamine', 'BtnCopyTo', 'BtnBsOperation.BtnInvalid', 'BtnBsOperation.BtnCancelInvalid', 'BtnPrint', 'BtnCancelInvalid', 'BtnInvalid'];
        }
      }
    }
    // 生产排程搜索时不可以上下移动
    if (sortEnabled === false) {
      disabledData.push('BtnSave');
      disabledData.push('BtnRepairstartdate');
    }

    /* 通用上传按钮 除了新增,其他状态下都是亮的*/
    if (menu.sControlName === 'BtnUpload') {
      const { handleType } = masterData;
      if (handleType === 'add') {
        disabledData.push('BtnUpload');
      }
    }
    // 其它自定义按钮不在以上 不能操作数据里
    if (menu.disabled) {
      disabledData.push(menu.sControlName);
    }
    // 订单已审核 价格批量更新亮 */
    if (commonUtils.isNotEmptyObject(menu.sControlName) && menu.sControlName.includes('PriceUpdate')) {
      const { bCheck } = masterData;
      if (!bCheck) {
        disabledData.push(menu.sControlName);
      }
    }
    /* 导入未清按钮 只有编辑亮的*/
    if (menu.sControlName === 'BtnImportFormData') {
      if (!enabled) {
        disabledData.push('BtnImportFormData');
      }
    }

    /* 盘点导出模板数据 只有非编辑 按钮亮*/
    if (menu.sControlName === 'BtnOutTemplateData') {
      if (enabled) {
        disabledData.push('BtnOutTemplateData');
      }
    }


    if (sModelsType === 'productionMainPlan/productionMainPlan') {
      // 主计划中保存,取消保存按钮默认不可点击
      if (disabledData.indexOf('BtnSave') === -1) {
        disabledData.push('BtnSave');
      }
      if (disabledData.indexOf('BtnRefresh') === -1) {
        disabledData.push('BtnRefresh');
      }
      // 生产主计划数据集有改动的时候才会高亮保存按钮
      // 生产主计划保存按钮和确认计划的按钮互斥,存一
      if (this.props.dataChanged === true) {
        // 列表有所改动
        // 显示保存,禁用确认计划
        if (disabledData.indexOf('BtnSave') !== -1) {
          disabledData.splice(disabledData.indexOf('BtnSave'), 1);
        }
        if (disabledData.indexOf('BtnRefresh') !== -1) {
          disabledData.splice(disabledData.indexOf('BtnRefresh'), 1);
        }
        if (disabledData.indexOf('BtnUnifiedPlanning') === -1) {
          disabledData.push('BtnUnifiedPlanning');
        }
      }
      // if (this.props.dataChanged === false) {
      //   if (disabledData.indexOf('BtnUnifiedPlanning') !== -1) {
      //     disabledData.splice(disabledData.indexOf('BtnUnifiedPlanning'), 1);
      //   }
      //   if (disabledData.indexOf('BtnSave') === -1) {
      //     disabledData.push('BtnSave');
      //     disabledData.push('BtnRefresh'); /* 生产主计划刷新按钮的亮与灰与保存按钮同步 */
      //   }
      // }
    }

    let bReturn = true;
    if (menu.sControlName !== undefined && menu.sControlName.indexOf('.') > -1) {
      bReturn = disabledData.findIndex(item => item === menu.sControlName.substring(0, menu.sControlName.indexOf('.'))) > -1;
      if (!bReturn) {
        bReturn = disabledData.findIndex(item => item === menu.sControlName) > -1;
      }
    } else {
      bReturn = disabledData.findIndex(item => item === menu.sControlName) > -1;
    }
    bReturn = bReturn || (this.props.getMenuStatus !== undefined && this.props.getMenuStatus(menu));
    return bReturn;
  };
  getDisabledProps = (name) => {
    if (commonUtils.isNotEmptyObject(name)) {
      const { enabled } = this.props;
      const obj = {};
      obj.disabled = enabled;
      return obj;
    }
  };

  /* */
  handleBtnEnabled = (props, isReturn) => {
    const { masterConfig: masterConfigOld } = props;
    if (commonUtils.isNotEmptyObject(masterConfigOld)) {
      const masterConfig = JSON.parse(JSON.stringify(masterConfigOld));
      const buttonConfig = masterConfig.gdsconfigformslave.filter(item => item.sName === '' && item.showName !== '' && item.sControlName !== '');
      if (commonUtils.isNotEmptyArr(buttonConfig)) {
        for (const btnItem of buttonConfig) {
          const iIndex = masterConfig.gdsconfigformslave.findIndex(item => btnItem.sId === item.sId);
          let btndisabled = false;
          if (commonUtils.isNotEmptyStr(btnItem.sButtonEnabled)) {
            btndisabled = this.handleAnalysisBtnEnabled(props, btnItem, masterConfig.gdsconfigformslave);
          }
          masterConfig.gdsconfigformslave[iIndex].disabled = btndisabled; // = { ...masterConfig.gdsconfigformslave[iIndex], disabled: btndisabled };
        }
      }
      if (isReturn) {
        return { ...masterConfig };
      } else {
        const addState = {};
        addState.masterConfig = { ...masterConfig };
        this.props.onSaveState({ ...addState });
      }
    }
  }

  handleAnalysisBtnEnabled = (props, currConfig, gdsconfigformslave) => {
    const { sButtonEnabled } = currConfig;
    let btndisabled = false;
    if (commonUtils.isNotEmptyObject(sButtonEnabled)) {
      const enabled = JSON.parse(sButtonEnabled);
      const solution = enabled.solution;
      const rowSelected = enabled.rowSelected;
      const buttonFilter = enabled.button;
      // const dataFilter = enabled.data;

      // 解析配置中  solution:["新工单"]
      if (!(commonUtils.isNotEmptyArr(solution) && solution.includes(props.masterData.sSolutionName))) {
        btndisabled = true;
        return btndisabled;
      }

      let disabledRowSelected;
      // 解析配置中  rowSelected: [{name:'master',rule:'&&'},{name:'slave',rule:'&&'}],
      if (commonUtils.isNotEmptyArr(rowSelected)) {
        let rule;
        let selectRt;
        let i = 0;
        for (const item of rowSelected) {
          const name = item.name;
          i += 1;
          if (commonUtils.isNotEmptyArr(props[`${name}SelectedRowKeys`])) {
            selectRt = true; // 表示 满足当前条件,
          } else {
            selectRt = false;
          }
          /* 只有1个配置:
             selectRt = true 当满足当前条件,按钮应该为亮,即当前btndisabled =false,不返回继续往下进行判断
             selectRt = false 不当满足当前条件,按钮应该为灰色,即当前btndisabled =true,已经有条件不满足,按钮可直接定为灰色的,即直接返回true
          */
          if (i === 1) {
            disabledRowSelected = selectRt;
          } else if (i > 1 && rule === '&&') {
            disabledRowSelected = selectRt && disabledRowSelected;
          } else if (i > 1 && rule === '||') {
            disabledRowSelected = selectRt || disabledRowSelected;
          }
          rule = item.rule;
        }
        if (!disabledRowSelected) {
          btndisabled = true;
          return btndisabled;
        }
      }
      // gdsconfigformslave[iIndex].disabled 为true 表示按钮至灰, false 表示按钮亮,可使用
      let disabledButtonFilter;
      if (commonUtils.isNotEmptyArr(buttonFilter)) {
        let rule;
        let buttonRt;
        let i = 0;
        for (const item of buttonFilter) {
          i += 1;
          const name = item.name;
          const currDisabled = !item.enabled;
          const iIndex = gdsconfigformslave.findIndex(config => config.sControlName === name);
          const tempDisabled = gdsconfigformslave[iIndex].disabled;
          if (tempDisabled === currDisabled) {
            buttonRt = true;
          } else {
            buttonRt = false;
          }
          if (i === 1) {
            disabledButtonFilter = buttonRt;
          } else if (i > 1 && rule === '&&') {
            disabledButtonFilter = buttonRt && disabledRowSelected;
          } else if (i > 1 && rule === '||') {
            disabledButtonFilter = buttonRt || disabledRowSelected;
          }
          rule = item.rule;
        }
        if (!disabledButtonFilter) {
          btndisabled = true;
          return btndisabled;
        }
      }
    }
    return btndisabled;
  }

  /**  根据二级菜单获取三级数据   */
  handleMouseEnter = (e) => {
    if (commonUtils.isNotEmptyStr(e.key) && this.props.onSearchUpDownThird !== undefined) {
      this.props.onSearchUpDownThird(e.key);
    }
  };

  handleImport = async (proName, proInParam) => {
    this.props.onSaveState({
      loading: true,
    });
    const {
      sModelsId, masterData, slaveData, slaveDelData: slaveDelDataOld, app,
    } = this.props;
    const btnConfig = this.props.masterConfig.gdsconfigformslave.filter(item => (item.sControlName === 'BtnCommonImport'))[0];// sButtonEnabled  sButtonParam
    if (!commonUtils.isNotEmptyObject(btnConfig) || !commonUtils.isNotEmptyStr(btnConfig.sButtonParam)) {
      message.error('请配置按钮的存储过程');
      this.props.onSaveState({
        loading: false,
      });
    }

    const sButtonParam = btnConfig.sButtonParam;
    const btn = JSON.parse(sButtonParam);
    const sProName = btn.sproName;
    const inParams = [];
    const inMap = btn.inMap;
    const inlist = inMap.split(',');
    const masterArr = [];
    const slaveArr = [];
    const slaveInfoArr = [];
    const controlArr = [];
    const materialsArr = [];
    const processArr = [];

    if (inlist.length > 0) {
      inlist.forEach((item) => {
        const itemArr = item.split('.');
        if (itemArr.length > 0) {
          const sname = itemArr[0];
          const stype = itemArr[1];
          if (commonUtils.isNotEmptyStr(sname) && sname === 'master') {
            masterArr.push(stype);
          }
          if (commonUtils.isNotEmptyStr(sname) && sname === 'slave') {
            slaveArr.push(stype);
          }
          if (commonUtils.isNotEmptyStr(sname) && sname === 'slaveInfo') {
            slaveInfoArr.push(stype);
          }
          if (commonUtils.isNotEmptyStr(sname) && sname === 'control') {
            controlArr.push(stype);
          }
          if (commonUtils.isNotEmptyStr(sname) && sname === 'materials') {
            materialsArr.push(stype);
          }
          if (commonUtils.isNotEmptyStr(sname) && sname === 'process') {
            processArr.push(stype);
          }
        }
      });

      if (commonUtils.isNotEmptyArr(masterArr) && commonUtils.isNotEmptyObject(masterData)) {
        const addState = {};
        addState.key = 'master';
        const val = [];
        const currVal = {};
        masterArr.forEach((filed) => {
          currVal[`${filed}`] = masterData[`${filed}`];
        });
        val.push(currVal);
        addState.value = val;
        inParams.push({ ...addState });
      }
      if (commonUtils.isNotEmptyArr(slaveArr)) {
        const addState = this.handleProParams('slave', slaveArr);
        if (commonUtils.isNotEmptyObject(addState)) {
          inParams.push({ ...addState });
        }
      }
      if (commonUtils.isNotEmptyArr(slaveInfoArr)) {
        const addState = this.handleProParams('slaveInfo', slaveInfoArr);
        if (commonUtils.isNotEmptyObject(addState)) {
          inParams.push({ ...addState });
        }
      }
      if (commonUtils.isNotEmptyArr(controlArr)) {
        const addState = this.handleProParams('control', controlArr);
        if (commonUtils.isNotEmptyObject(addState)) {
          inParams.push({ ...addState });
        }
      }
      if (commonUtils.isNotEmptyArr(materialsArr)) {
        const addState = this.handleProParams('materials', materialsArr);
        if (commonUtils.isNotEmptyObject(addState)) {
          inParams.push({ ...addState });
        }
      }
      if (commonUtils.isNotEmptyArr(processArr)) {
        const addState = this.handleProParams('process', processArr);
        if (commonUtils.isNotEmptyObject(addState)) {
          inParams.push({ ...addState });
        }
      }
    }

    const value = { sProName, sProInParam: JSON.stringify({ params: inParams }) };
    const url = `${commonConfig.server_host}procedureCall/doGenericProcedureCall?sModelsId=${sModelsId}`;
    const dataReturn = (await commonServices.postValueService(app.token, value, url)).data;
    // const url = `${commonConfig.server_host}eleMaterialsStock/getEleMaterialsStock?sModelsId=${sModelsId}&sWareHouseId=${masterData.sWareHouseId}&num=${num}`;
    // const dataReturn = (await commonServices.getService(this.props.app.token, url)).data;
    if (dataReturn.code === 1) {
      const returnData = dataReturn.dataset.rows;
      const slaveDelData = commonUtils.isEmptyArr(slaveDelDataOld) ? [] : slaveDelDataOld;
      slaveData.forEach((item) => {
        item.handleType = 'del';
        slaveDelData.push({ ...item });
      });
      returnData.forEach((item, index) => {
        item.handleType = 'add';
        item.sParentId = masterData.sId;
        item.iOrder = index + 1;
        returnData[index] = { ...item };
      });
      this.props.onSaveState({ slaveData: returnData, slaveDelData });
    } else {
      this.props.getServiceError(dataReturn);
    }
    this.props.onSaveState({
      loading: false,
    });
  }

  /**   菜单的点击事件   */
  handleClick = (e) => {
    let checkedBoolean = false;
    let obj = { enabled: false };
    const { checked, checkedId } = this.state;
    const { key, keyPath } = e;
    if (checked && checkedId === key) {
      checkedBoolean = true;
    }
    /*   新增   */
    if (key === 'BtnAdd') { /*   增加   */
      this.handleAdd(obj);
    }else if(key === 'BtnClose'){
      const {
        dispatch, onSaveCurrentState, slaveData,
      } = this.props;
      const { app } = this.props;
      let copyToSlaveData = [];
      if(commonUtils.isNotEmptyObject(app) && app.currentPane && app.currentPane.copyTo){
        copyToSlaveData =  app.currentPane.copyTo.slaveData;
      }
      const {  userinfo } = app;
      /* 关闭界面时 清除操作锁定 */
      if (commonUtils.isNotEmptyArr(slaveData)) {
        const sIdArray = [];
        slaveData.forEach((item) => {
          const redisKey =  commonUtils.isNotEmptyObject(item.sOriginalId) ? item.sOriginalId : commonUtils.isNotEmptyObject(item.sSlaveId ) ? item.sSlaveId  : item.sSrcSlaveId ;
          sIdArray.push(redisKey);
        });
        if(commonUtils.isNotEmptyArr(copyToSlaveData)) {
          copyToSlaveData.forEach((item) => {
            const redisKey =  item.sSlaveId;
            sIdArray.push(redisKey);
          });
        }
        const sId = sIdArray.toString();
        console.log('关闭解锁:', sId);
        this.props.handleSendSocketMessage('copyfinish', 'noAction', sId, userinfo.sId, null, null);
      }
      dispatch(routerRedux.push('/indexOee/processReport'));
      onSaveCurrentState(undefined,undefined,undefined,undefined,undefined, true);// 变为当前设备的未清页面
    } else if (key === 'BtnAddChild') { /*   分类增加子级   */
      this.handleAddChild(obj);
    } else if (key === 'BtnUpd') { /*   修改   */
      this.props.onEdit(obj);
    } else if (key === 'BtnSave') { /*   保存   */
      this.props.onSaveState({
        loading: true,
      });
      /*  生产主计划重置数据变化状态  */
      this.props.onSaveState({
        dataChanged: false,
      });
      setTimeout(() => {
        this.props.onSubmit();
      }, 500);
    } else if (key === 'BtnExamine') { /*   审核   */
      this.props.onSaveState({
        loading: true,
      });
      this.props.onBtnExamine();
    } else if (key === 'BtnCancelExamine') { /*   消审   */
      this.props.onSaveState({
        loading: true,
      });
      this.props.onBtnCancelExamine();
    } else if (key.indexOf('BtnBsOperation') > -1) { /*   作废、取消作废   */
      if (key === 'BtnBsOperation.BtnInvalid') {
        obj = {
          title: '确定要作废',
          handleType: 'toVoid',
        };
        this.props.onChangeInvalid(obj);
      } else {
        const name = key.split('.');
        this.props.onButtonClick(name[1]);
      }
    } else if (key === 'BtnInvalid') {
      obj = {
        title: '确定要作废',
        handleType: 'toVoid',
      };
      this.props.onChangeInvalid(obj);
    } else if (key === 'BtnCancelInvalid') {
      obj = {
        title: '确定取消作废',
        handleType: 'cancel',
      };
      this.props.onChangeInvalid(obj);
    } else if (key === 'BtnGetWeight') { // 获取重量
      this.props.onGetWeight();
    } else if (key.indexOf('BtnCopyTo') > -1) { /* 复制到 */ // && commonUtils.isNotEmptyStr(e.item.props.sActiveId)
      this.props.onCopyTo(e.key, e.item.props['data-sactiveid']);
    } else if (key.indexOf('BtnCopyFrom') > -1 && commonUtils.isNotEmptyStr(e.item.props['data-sactiveid'])) { /* 复制从 */
      obj = {
        copyFromKey: key,
        copyFromSActiveId: e.item.props['data-sactiveid'],
      };
      this.props.onCopyFrom(obj);
    } else if (key.indexOf('BtnEject') > -1) { /* 自定义接口弹出 */
      const { masterConfig, masterData } = this.props;
      const buttonConfig = masterConfig.gdsconfigformslave.filter(item => item.sName === '' && item.showName !== '' && item.sControlName === key);
      if (commonUtils.isNotEmptyStr(buttonConfig)) {
        const sActiveKey = buttonConfig[0].sActiveKey;
        /* 拿到表名 */
        if (commonUtils.isNotEmptyObject(sActiveKey)) {
          let tbName = 'slave'; /* 表名 */
          const btnName = key; /* 按钮名 */
          let record = {}; /* 选中行 */
          let iIndex = -1;
          const splitData = sActiveKey.split('.');
          if (commonUtils.isNotEmptyStr(splitData) && splitData.length > 1) {
            tbName = splitData[0]; /* 表名 */
            if (tbName === 'master') {
              record = masterData;
            } else {
              const { [`${tbName}SelectedRowKeys`]: tableSelectedRowKeys, [`${tbName}Data`]: tableData } = this.props;
              if (commonUtils.isNotEmptyStr(tableData)) {
                iIndex = tableData.findIndex(item => tableSelectedRowKeys.includes(item.sSlaveId));
                if (iIndex > -1) {
                  record = tableData[iIndex];
                }
              }
            }
          }
          this.props.onViewClick(tbName, btnName, record, iIndex);
        }
      }
    } else if (keyPath.indexOf('BtnBsOperation.BtnUpCheck') > -1 && commonUtils.isNotEmptyStr(e.item.props['data-sactiveid']) && key.indexOf('BtnBsOperation.BtnUpCheck') < 0) { /* 上查 */ /* key.indexOf('BtnUpCheck') < 0 用于防止用户点击二级菜单时的跳转 */
      this.props.onSearchUpDown(key, e.item.props['data-sactiveid']);
    } else if (keyPath.indexOf('BtnBsOperation.BtnDownCheck') > -1 && commonUtils.isNotEmptyStr(e.item.props['data-sactiveid']) && key.indexOf('BtnBsOperation.BtnDownCheck') < 0) { /* 下查 */ /* key.indexOf('BtnDownCheck') < 0 用于防止用户点击二级菜单时的跳转 */
      this.props.onSearchUpDown(key, e.item.props['data-sactiveid']);
    } else if (key === 'BtnNext') { /*  下一条  */
      this.props.onNext();
    } else if (key === 'BtnPrior') { /*  上一条  */
      this.props.onBtnPrior();
    } else if (key === 'BtnFirst') { /*  首条  */
      this.props.onBtnFirst();
    } else if (key === 'BtnLast') { /*  末条  */
      this.props.onBtnLast();
    } else if (key === 'BtnCancel') { /*   取消   */
      obj = {
        title: '确定要取消',
      };
      this.props.onCancel(obj);
    } else if (key.indexOf('BtnPrint') > -1 && commonUtils.isNotEmptyStr(e.item.props['data-sactiveid'])) { /*   打印   */
      this.props.onBtnPrint(e.item.props['data-sactiveid'], checkedBoolean, e.key);
    } else if (key === 'BtnDel') { /*   删除   */
      obj = {
        title: '确定要删除',
      };
      this.props.onDel(obj);
    } else if (key === 'BtnGetGoods') {
      this.props.onGetGoods();
    } else if (key.indexOf('BtnUpload') > -1) { /*   上传   */
      this.props.onSaveState({
        visibleFilfile: true,
      });
    } else if (key.startsWith('BtnEvent')) {
      this.props.onSaveState({
        loading: true,
      });
      const btnConfig = this.props.masterConfig.gdsconfigformslave.filter(item => (item.sControlName === key))[0];// sButtonEnabled  sButtonParam
      if (commonUtils.isNotEmptyObject(btnConfig) && commonUtils.isNotEmptyStr(btnConfig.sButtonParam)) {
        this.handleBtnEent(btnConfig);
      } else {
        message.error('请配置按钮的存储过程');
        this.props.onSaveState({
          loading: false,
        });
      }
    } else if (key.indexOf('BtnRepair') > -1) {
      if (key.toLowerCase().endsWith('choosedate')) {
        this.handleForceComplete(key, 'chooseDate');
      } else {
        this.handleForceComplete(key);
      }
    } else if (key === 'BtnForceComplete' || key === 'BtnNoPurchase' || key === 'BtnForceComplete2' || key === 'BtnForceComplete3') {
      this.handleForceComplete(key);
    } else if (key === 'BtnUpPbOrder') {
      this.props.onSaveState({
        upPbOrderVisible: true,
      });
    } else if (key === 'BtnDlPbOrder') {
      this.props.onSaveState({
        dlPbOrderVisible: true,
      });
    } else if (key === 'BtnCommonImport') {
      this.handleImport();
    } else if (this.props.onButtonClick !== undefined) {
      this.props.onButtonClick(key);
    }
  };

  /* 新增 */
  handleAdd = () => {
    this.props.onAdd();
  };

  /* 新增子级 */
  handleAddChild= (obj) => {
    this.props.onAddChild(obj);
  };


  handleFilfileManageCancel = (modelVisible) => {
    this.props.onSaveState({ [modelVisible]: false });
  }
  handleFilfileManageOk = (modelVisible, selectConfig, filfileSelectedData, sSrcSlaveId, filfileDelData) => {
    if (commonUtils.isNotEmptyObject(sSrcSlaveId)) { /* 工单、工艺卡、报价单控制表数据带回 */
      let controlFilfileData = [];
      let controlFilfileDelData = [];
      if (commonUtils.isNotEmptyArr(filfileSelectedData)) {
        controlFilfileData = filfileSelectedData.filter(item => item.sSrcSlaveId === sSrcSlaveId);/* 控制表选中行上传的图片数组 */
      }
      if (commonUtils.isNotEmptyArr(filfileDelData)) {
        controlFilfileDelData = filfileDelData.filter(item => item.sSrcSlaveId === sSrcSlaveId);
      }
      this.props.onFilfileManageOk(controlFilfileData, controlFilfileDelData, sSrcSlaveId);
    }
    this.props.onSaveState({ [modelVisible]: false });
  }

  // 获取订单中的取消
  handleCancel = () => {
    this.setState({
      inputChange: '',
    });
    this.props.onGetGoodsCancle();
  };
  // 获取订单中的确定
  handleOk = () => {
    this.props.onGetGoodsValue(this.state.inputChange);
  };
  // 获取订单中的值变化
  handleInputChange = (e) => {
    this.setState({
      inputChange: e.target.value,
    });
  }
  radioClick = (Child, e) => {
    e.stopPropagation();
    this.setState({
      // eslint-disable-next-line react/no-unused-state
      checked: e.target.checked, checkedId: Child.sControlName,
    });
  }
  // 进行存储过程按钮存储过程参数解析拼接 根据存储过程按钮参数配置进行解析,配置是json格式 {"sproName":"cal_sss","inMap":"master.sSlaveId,slave.sId"}
  handleBtnEent = (btnConfig, name, sValue) => {
    if (commonUtils.isNotEmptyObject(btnConfig) && (btnConfig.sControlName === 'BtnEventReceiveReturn' || btnConfig.sControlName === 'BtnEventReceive')) { // 刀模归还, 刀模领用判断是否选择数据
      const { slaveSelectedRowKeys, app } = this.props;
      if (slaveSelectedRowKeys && commonUtils.isEmptyArr(slaveSelectedRowKeys)) {
        message.warn(commonFunc.showMessage(app.commonConst, 'pleaseChooseData')); // 请选择记录
        this.props.onSaveState({
          loading: false,
        });
        return;
      }
    }
    const { masterData, sCurrMemoProps } = this.props;
    if (commonUtils.isNotEmptyObject(name) && name.indexOf('BtnRepair') > -1 && commonUtils.isNotEmptyObject(sCurrMemoProps)) {
      sCurrMemoProps.bVisibleMemo = false;
      this.props.onSaveState({ sCurrMemoProps });
    }
    const sButtonParam = btnConfig.sButtonParam;
    const btn = JSON.parse(sButtonParam);
    const sProName = btn.sproName;
    const inParams = [];
    const inMap = btn.inMap;
    const inlist = inMap.split(',');
    const masterArr = [];
    const slaveArr = [];
    const slaveInfoArr = [];
    const controlArr = [];
    const materialsArr = [];
    const processArr = [];

    if (inlist.length > 0) {
      inlist.forEach((item) => {
        const itemArr = item.split('.');
        if (itemArr.length > 0) {
          const sname = itemArr[0];
          const stype = itemArr[1];
          if (commonUtils.isNotEmptyStr(sname) && sname === 'master') {
            masterArr.push(stype);
          }
          if (commonUtils.isNotEmptyStr(sname) && sname === 'slave') {
            slaveArr.push(stype);
          }
          if (commonUtils.isNotEmptyStr(sname) && sname === 'slaveInfo') {
            slaveInfoArr.push(stype);
          }
          if (commonUtils.isNotEmptyStr(sname) && sname === 'control') {
            controlArr.push(stype);
          }
          if (commonUtils.isNotEmptyStr(sname) && sname === 'materials') {
            materialsArr.push(stype);
          }
          if (commonUtils.isNotEmptyStr(sname) && sname === 'process') {
            processArr.push(stype);
          }
        }
      });

      if (commonUtils.isNotEmptyArr(masterArr) && commonUtils.isNotEmptyObject(masterData)) {
        const addState = {};
        addState.key = 'master';
        const val = [];
        const currVal = {};
        masterArr.forEach((filed) => {
          currVal[`${filed}`] = masterData[`${filed}`];
        });
        val.push(currVal);
        addState.value = val;
        inParams.push({ ...addState });
      }
      if (commonUtils.isNotEmptyArr(slaveArr)) {
        const addState = this.handleProParams('slave', slaveArr);
        if (commonUtils.isNotEmptyObject(addState)) {
          inParams.push({ ...addState });
        }
      }
      if (commonUtils.isNotEmptyArr(slaveInfoArr)) {
        const addState = this.handleProParams('slaveInfo', slaveInfoArr);
        if (commonUtils.isNotEmptyObject(addState)) {
          inParams.push({ ...addState });
        }
      }
      if (commonUtils.isNotEmptyArr(controlArr)) {
        const addState = this.handleProParams('control', controlArr);
        if (commonUtils.isNotEmptyObject(addState)) {
          inParams.push({ ...addState });
        }
      }
      if (commonUtils.isNotEmptyArr(materialsArr)) {
        const addState = this.handleProParams('materials', materialsArr);
        if (commonUtils.isNotEmptyObject(addState)) {
          inParams.push({ ...addState });
        }
      }
      if (commonUtils.isNotEmptyArr(processArr)) {
        const addState = this.handleProParams('process', processArr);
        if (commonUtils.isNotEmptyObject(addState)) {
          inParams.push({ ...addState });
        }
      }
    }
    this.handleProcedureCall(btnConfig, sProName, JSON.stringify({ params: inParams, changeValue: sValue }));
  };
  // 存储过程按钮调用存储过程
  handleProcedureCall = async (btnConfig, proName, proInParam) => {
    const { app, sModelsId } = this.props;
    const value = { sProName: proName, sProInParam: proInParam };
    const url = `${commonConfig.server_host}procedureCall/doGenericProcedureCall?sModelsId=${sModelsId}`;
    const returnData = (await commonServices.postValueService(app.token, value, url)).data;
    if (returnData.code === 1) {
      message.success(returnData.msg);
      this.props.onButtonClick('BtnRefresh');
    } else {
      this.props.getServiceError(returnData);
    }
    this.props.onSaveState({ loading: false });
    // 点击返回重排的时候刷新树
    if (btnConfig.sControlName === 'BtnEventReturn') {
      if (this.props.refreshTreeData) {
        this.props.refreshTreeData();
      }
    }
  }
  // 根据配置解析拼接具体参数
  handleProParams = (sKey, arr) => {
    const { [`${sKey}Data`]: tableData, [`${sKey}SelectedRowKeys`]: selectedRowKeys } = this.props;
    const keyData = commonUtils.isNotEmptyArr(tableData) && commonUtils.isNotEmptyArr(selectedRowKeys) ? tableData.filter(item => selectedRowKeys.includes(item.sId) || selectedRowKeys.includes(item.sSlaveId)) : [];
    if (commonUtils.isNotEmptyArr(keyData)) {
      const addState = {};
      addState.key = sKey;
      const val = [];
      keyData.forEach((currData) => {
        const currVal = {};
        arr.forEach((filed) => {
          currVal[`${filed}`] = currData[`${filed}`];
        });
        val.push(currVal);
      });
      addState.value = val;
      return addState;
    } else {
      return undefined;
    }
  };
  /* 双击弹出Memo */
  handleGetMemo = (name, sValue, sMemoFiled, sRecord, bVisibleMemo, btnConfig) => {
    const { sCurrMemoProps } = this.props;
    sCurrMemoProps.bVisibleMemo = false;
    if (btnConfig.length > 0) {
      sRecord[sMemoFiled] = sValue;
      this.props.onSaveState({ sCurrMemoProps });
      this.handleToForceComplete(sValue);
    } else {
      let { [`${name}Data`]: tableData } = this.props;
      const addStata = { [`${sMemoFiled}`]: sValue };
      if (name !== 'master') {
        const iIndex = tableData.findIndex(item => item.sId === sRecord.sId);
        let handleType = tableData[iIndex].handleType;/* 获取操作类型 */
        handleType = commonUtils.isEmpty(handleType) ? 'update' : handleType;
        addStata.handleType = handleType;
        tableData[iIndex] = { ...tableData[iIndex], ...addStata };
      } else {
        let handleType = tableData.handleType;/* 获取操作类型 */
        handleType = commonUtils.isEmpty(handleType) ? 'update' : handleType;
        addStata.handleType = handleType;
        tableData = { ...tableData, ...addStata };
      }
      this.props.onSaveState({ ...sCurrMemoProps, [`${name}Data`]: tableData });
    }
  };
  /* 点击隐藏Memo 弹窗 */
  handleGetMemoCancel = () => {
    const { sCurrMemoProps } = this.props;
    sCurrMemoProps.bVisibleMemo = false;
    this.props.onSaveState({ sCurrMemoProps });
  };
  handleForceComplete = (name, createDate) => {
    let sysLogData = {};
    const slaveMemoConfigOld = [];
    if (createDate !== 'chooseDate') {
      const {
        slaveSelectedRowKeys, slaveInfoSelectedRowKeys, app, masterConfig, slaveInfoData, masterData,
      } = this.props;
      const btnConfig = masterConfig.gdsconfigformslave.filter(item => item.sControlName === name)[0];// sButtonEnabled  sButtonParam
      let target = '';
      if (btnConfig.sActiveKey) {
        target = btnConfig.sActiveKey.split(',')[0].split('.')[0];
      }
      if (target !== 'slaveInfo' && commonUtils.isEmptyArrNew(slaveSelectedRowKeys)) {
        message.warn(commonFunc.showMessage(app.commonConst, 'pleaseChooseData')); // 请选择记录
      } else if (target === 'slaveInfo' && commonUtils.isEmptyArrNew(slaveInfoSelectedRowKeys)) {
        message.warn(commonFunc.showMessage(app.commonConst, 'pleaseChooseData')); // 请选择记录
      } else if (target === 'slaveInfo' && !Array.isArray(slaveInfoData)) {
        message.warn('请展开详情并选择数据。'); // 请选择记录
      } else {
        let btnConfigNameArr = [];
        let singleConfig = {};
        if (name.indexOf('BtnRepair') > -1) {
          if (!commonUtils.isEmpty(btnConfig.sActiveKey)) {
            btnConfigNameArr = btnConfig.sActiveKey.split(',');
          }
          if (commonUtils.isNotEmptyArr(btnConfigNameArr)) {
            // eslint-disable-next-line array-callback-return
            btnConfigNameArr.map((i) => {
              let sIndex = -1;
              if (target === 'slaveInfo') {
                sIndex = this.props.slaveInfoConfig.gdsconfigformslave.findIndex(item => (item.sName === i.split('.')[1]));
              } else {
                sIndex = this.props.slaveConfig.gdsconfigformslave.findIndex(item => (item.sName === i));
              }
              if (sIndex > -1) {
                if (target === 'slaveInfo') {
                  singleConfig = this.props.slaveInfoConfig.gdsconfigformslave[sIndex];
                } else {
                  singleConfig = this.props.slaveConfig.gdsconfigformslave[sIndex];
                }
                if (masterData) {
                  masterData[singleConfig.sName] = undefined;
                }
                slaveMemoConfigOld.push(singleConfig);
              }
            });
          }
        }
        /* 时间格式的字段 若默认值为空 则取当前时间 */
        const activeKeyData = commonUtils.isNotEmptyObject(btnConfig.sActiveKey) ? btnConfig.sActiveKey.split(',') : [];
        if (activeKeyData.length > 1) { /* 当多字段时候  若时间格式的字段 若默认值为空 则取当前时间 */
          const filterData = activeKeyData.filter(item => item.substring(0, 1) === 't');
          if (commonUtils.isNotEmptyArr(filterData)) {
            filterData.forEach((item) => {
              if (commonUtils.isNotEmptyObject(masterData) && commonUtils.isEmpty(masterData[item])) {
                masterData[item] = moment().format('YYYY-MM-DD HH:mm:ss');
              }
            });
          }
        } else {
          if (commonUtils.isNotEmptyObject(btnConfig.sActiveKey) && btnConfig.sActiveKey.substring(0, 1) === 't') {
            if (commonUtils.isNotEmptyObject(masterData) && commonUtils.isEmpty(masterData[btnConfig.sActiveKey])) {
              masterData[btnConfig.sActiveKey] = moment().format('YYYY-MM-DD HH:mm:ss');
            }
          }
        }
        sysLogData = { sId: slaveSelectedRowKeys.toString() };
        this.props.onSaveState({
          slaveMemoConfig: slaveMemoConfigOld,
          masterData,
          sCurrMemoProps: {
            bVisibleMemo: true,
            sMemoField: 'sReason',
            sRecord: sysLogData,
            dataSource: sysLogData,
            btnName: name,
          },
        });
      }
    } else {
      const chooseDateConfig = {
        sId: commonUtils.createSid(),
        sName: 'pChooseDate',
        sDropDownType: 'sql',
        bNotEmpty: false,
        iVisCount: 1,
        dropDownData: [],
        showName: '生成凭证',
      };
      slaveMemoConfigOld.push(chooseDateConfig);
      this.props.onSaveState({
        slaveMemoConfig: slaveMemoConfigOld,
        sCurrMemoProps: {
          bVisibleMemo: true,
          sMemoField: 'sReason',
          sRecord: sysLogData,
          dataSource: sysLogData,
          btnName: name,
        },
      });
    }
  }
  handleToForceComplete = async (sValue) => {
    const {
      app, slaveSelectedRowKeys, slaveConfig, sModelsId, slaveInfoSelectedRowKeys, formRoute,
      masterConfig,
    } = this.props;

    const { token } = app;
    let iIndex = -1;
    if (masterConfig && Array.isArray(masterConfig.gdsconfigformslave)) {
      iIndex = masterConfig.gdsconfigformslave.findIndex(item => item.sControlName === 'BtnForceComplete' || item.sControlName === 'BtnNoPurchase');
    }
    if (iIndex < 0 && slaveConfig && Array.isArray(slaveConfig.gdsconfigformslave)) {
      iIndex = slaveConfig.gdsconfigformslave.findIndex(item => item.sControlName === 'BtnForceComplete' || item.sControlName === 'BtnNoPurchase');
    }
    if (iIndex < 0) return;
    const btnConfig = slaveConfig.gdsconfigformslave[iIndex];
    // debugger
    const sRelation = btnConfig.sRelation;

    let selectedRowKeys = '';
    if (formRoute === '/indexPage/materialRequirementsPlanning') {
      selectedRowKeys = slaveInfoSelectedRowKeys.toString();
    } else {
      selectedRowKeys = slaveSelectedRowKeys.toString();
    }

    const url = `${commonConfig.server_host}bill/billForceComplete?sModelsId=${sModelsId}&sName=${formRoute}`;
    const values = { sqlParam: sRelation, sId: selectedRowKeys, sReason: sValue };

    const masterReturn = (await commonServices.postValueService(token, values, url)).data;
    if (masterReturn.code === 1) {
      message.success(masterReturn.msg);
      this.props.onButtonClick('BtnRefresh');
    } else {
      this.props.getServiceError(masterReturn);
    }
  }
  /** 上传文件改变时的状态 */
  handleUploadChange = async (info) => {
    const {
      slaveSelectedRowKeys, app, slaveSelectedData, sModelsId, token,
    } = this.props;
    if (slaveSelectedRowKeys === undefined || slaveSelectedRowKeys.length !== 1) {
      message.warn(commonFunc.showMessage(app.commonConst, 'selectedRowKeysNo')); /* 请先选择一条数据! */
      return;
    }
    const { file } = info;
    if (file.response) {
      if (file.response.code === 1) {
        /*   成功   */
        message.success(file.response.msg);
        const savePathStr = file.response.dataset.rows[0].savePathStr;
        const sId = commonUtils.isNotEmptyArr(slaveSelectedData) ? slaveSelectedData[0].sId : '';
        const bFile = commonUtils.isNotEmptyArr(slaveSelectedData) ? slaveSelectedData[0].bCorrespondFile : '';
        if (commonUtils.isNotEmptyObject(sId) && !bFile) {
          const url = `${commonConfig.server_host}salesorder/updateOrderCorrespondFile?sModelsId=${sModelsId}`;
          const values = { sOrderId: sId, savePathStr };
          const sReturn = (await commonServices.postValueService(token, values, url)).data;
          if (sReturn.code === 1) {
            this.props.onButtonClick('BtnRefresh');
          } else {
            this.props.getServiceError(sReturn);
          }
        }
      } else { /*   失败   */
        this.props.getServiceError({ msg: commonFunc.showMessage(app.commonConst, 'reportDesign') + file.response }); /* 报表设计 */
      }
    }
  };
  /* 订单文件下载 */
  handleBtnDownload = () => {
    const {
      slaveSelectedRowKeys, slaveData, app,
    } = this.props;
    if (commonUtils.isEmptyArr(slaveSelectedRowKeys)) {
      message.warn(commonFunc.showMessage(app.commonConst, 'selectedRowKeysNo'));/* 请先选择一条数据 */
      return;
    }
    const dataSelect = slaveData.filter(item => slaveSelectedRowKeys.includes(item.sSlaveId));
    const sBillNoArr = [];
    let sBillNoStr = '';
    if (commonUtils.isNotEmptyArr(dataSelect)) {
      dataSelect.forEach((item) => {
        sBillNoArr.push(item.sBillNo);
      });
      sBillNoStr = JSON.stringify(sBillNoArr);
    }
    if (commonUtils.isNotEmptyArr(sBillNoArr)) {
      const urlPrint = `${commonConfig.file_host}file/downloadPbOrder`;
      this.handleOpenPost(urlPrint, sBillNoStr);
    }
  };
  handleOpenPost= (url, params) => {
    const newWin = window.open();
    let formStr = '';
    formStr = `<form style="visibility:hidden;" method="POST" action="${url}">` +
      `<input type="hidden" name="sOrderNo" value='${params}' />` +
      '</form>';
    newWin.document.body.innerHTML = formStr;
    newWin.document.forms[0].submit();
    return newWin;
  }
  /**   渲染   */
  render() {
    const { menuData, searchUpDownData } = this.state;
    const {
      loading, sModelsId, masterConfig, visibleFilfile, copyFromChooseVisible, app, sTabId, controlSelectedRowKeys, sModelsType, slaveSelectedData, slaveSelectedRowKeys, formRoute, slaveData,
    } = this.props;
    const pane = app.panes.filter(paneTmp => paneTmp.key === sTabId)[0];
    const filfileManageTitle = commonFunc.showMessage(app.commonConst, 'filfileManageTitle');/* 通用文件上传 */
    const getGoodsTitle = commonFunc.showMessage(app.commonConst, 'getGoodsTitle');/* 获取订单表头 */
    const getGoodsPlaceholder = commonFunc.showMessage(app.commonConst, 'handleNoWebOrderIds');/* 获取订单输入框字样 */
    let btnUploadConfig = {};
    if (commonUtils.isNotEmptyObject(masterConfig)) {
      const iIndex = masterConfig.gdsconfigformslave.findIndex(item => item.sControlName === 'BtnUpload');
      if (iIndex > -1) {
        btnUploadConfig = this.props.masterConfig.gdsconfigformslave[iIndex];
      }
    }
    let sSlaveId = '';
    let selectedsId = ''; /*  列表选中行或窗体sFormId */
    const bList = (formRoute === '/indexPage/commonList');
    if ((sModelsType === 'manufacture/workOrder' || sModelsType === 'manufacture/workOrder3' || sModelsType === 'quotation/quotation') && commonUtils.isNotEmptyArr(controlSelectedRowKeys)) {
      sSlaveId = controlSelectedRowKeys[0];/* 控制表选中行ID */
    } else if (bList) { /* HM订单准印资质列表 sSrcId为列表选中行sId */
      if (sModelsType === 'HMOrderList') {
        if (commonUtils.isNotEmptyArr(slaveSelectedRowKeys)) {
          selectedsId = slaveSelectedRowKeys[0];
        }
      } else {
        selectedsId = commonUtils.isNotEmptyArr(slaveData) && commonUtils.isNotEmptyObject(slaveData[0].sFormId) ? slaveData[0].sFormId : ''; /* 列表从表的sFormId */
      }
    }
    const { masterData, visibleGetGoods } = this.props;
    const filfilemanageType = {
      app: {
        ...this.props.app,
        currentPane: {
          name: 'elefilfilemanage',
          config: btnUploadConfig,
          conditonValues: { sSrcId: commonUtils.isNotEmptyObject(selectedsId) ? selectedsId : commonUtils.isNotEmptyObject(masterData) ? masterData.sId : '' },
          title: filfileManageTitle,
          route: '/elefilfilemanage',
          formId: '15864832090002447752315825731600',
          key: `${sModelsId}15864832090002447752315825731600`,
          sModelsType: 'element/filfilemanage',
          sSrcNo: bList ? (commonUtils.isNotEmptyArr(slaveData) ? slaveData[0].sBillNo : '') : (commonUtils.isNotEmptyObject(masterData) ? masterData.sBillNo : ''), /* 源单号 */
          sSrcFormId: bList ? (commonUtils.isNotEmptyArr(slaveData) ? slaveData[0].sFormId : '') : (commonUtils.isNotEmptyObject(masterData) ? masterData.sFormId : ''), /* 源单窗体Id */
          sSrcId: commonUtils.isNotEmptyObject(selectedsId) ? selectedsId : commonUtils.isNotEmptyObject(masterData) ? masterData.sId : '', /* 源单Id */
          sSrcSlaveId: commonUtils.isNotEmptyObject(sSlaveId) ? sSlaveId : '', /* 工单控制表选中行 */
          onFilfileOk: this.handleFilfileManageOk,
          onFilfileCancel: this.handleFilfileManageCancel,
        },
      },
      config: btnUploadConfig,
      enabled: true, /*this.props.enabled */
      dispatch: this.props.dispatch,
      content: this.props.content,
      id: new Date().getTime().toString(),
    };

    /* 通用复制从调用  */
    let copyFromType = {};
    let copyFromConfig = {};
    let copyFromTitle = '自定义复制从窗体';/* 复制从工艺卡查询结果 */
    if (commonUtils.isNotEmptyObject(this.props.copyFromChooseData)) {
      const copyFromKey = this.props.copyFromKey;
      const iIndex = this.props.masterConfig.gdsconfigformslave.findIndex(item => item.sControlName === copyFromKey);
      if (iIndex > -1) {
        copyFromConfig = this.props.masterConfig.gdsconfigformslave[iIndex];
        copyFromTitle = commonUtils.isNotEmptyObject(copyFromConfig) ? copyFromConfig.sActiveName : copyFromTitle;
      }
      copyFromType = {
        app: {
          ...this.props.app,
          currentPane: {
            name: 'commonCopyFrom',
            config: copyFromConfig,
            conditonValues: this.props.getSqlCondition(copyFromConfig),
            title: this.props.copyFromChooseData.sMenuName,
            route: this.props.copyFromChooseData.sName,
            formId: this.props.copyFromChooseData.sId,
            key: sModelsId + this.props.copyFromChooseData.sId,
            sModelsType: this.props.copyFromChooseData.sModelType,
            select: this.props.onCopyFromSelect, /* 自定义复制从窗体时间 */
            selectCancel: this.handleFilfileManageCancel.bind(this, 'copyFromChooseVisible'),
          },
        },
        dispatch: this.props.dispatch,
        content: this.props.content,
        id: new Date().getTime().toString(),
      };
    }


    let upPbOrderProps = {};
    let sBillNo = '';
    if (commonUtils.isNotEmptyArr(slaveSelectedData)) {
      sBillNo = slaveSelectedData[0].sBillNo;
    }
    upPbOrderProps = {
      action: `${commonConfig.file_host_ebc}file/uploadPbOrder?sModelsId=${sModelsId}&&sOrderNo=${sBillNo}`,
      onChange: this.handleUploadChange,
      accept: '.pdf',
      showUploadList: false,
      beforeUpload: () => {
        if (commonUtils.isEmptyObject(sBillNo)) {
          const noUpload = commonFunc.showMessage(app.commonConst, 'NoUpload');/* 禁止上传 */
          message.error(noUpload);
          return false;
        }
      },
    };
    return (
      <div className={oeeStyle.oeeBillToolBar}>
        <Spin spinning={loading === undefined ? false : loading}>
          <Menu mode="horizontal" onClick={this.handleClick} className={`${oeeStyle.toolMenu} ${this.props.className ? this.props.className : ''}`} >
            { menuData.map((item) => {
              const { child, iconName, showName,sColorTerms } = item;
              const sColor = commonUtils.isNotEmptyObject(sColorTerms)? sColorTerms :"#006fc8";
              return (child.length > 1) ?
                <SubMenu {...this.getMenuProps(item, 'icon')}>
                  {child.map((eachChild) => {
                    if (eachChild.sControlName === 'BtnBsOperation.BtnUpCheck' || eachChild.sControlName === 'BtnBsOperation.BtnDownCheck') {
                      return (
                        <SubMenu
                          {...this.getMenuProps(eachChild, 'title')}
                        >
                          {eachChild.child.map((threeChild) => {
                            if (commonUtils.isNotEmptyObject(searchUpDownData) && commonUtils.isNotEmptyArr(searchUpDownData[threeChild.sControlName])) {
                              return (
                                <MenuItemGroup {...this.getMenuProps(threeChild, 'title')} >
                                  {
                                    searchUpDownData[threeChild.sControlName].map((fourMenuItem) => {
                                      return (
                                        <Menu.Item {...this.getMenuProps(fourMenuItem, 'key')}>
                                          <span>{ fourMenuItem.showName}</span>
                                        </Menu.Item>
                                      );
                                    })
                                  }
                                </MenuItemGroup>
                              );
                            } else {
                              return '';
                            }
                          })}
                        </SubMenu>
                      );
                    } else {
                      return (
                        <Menu.Item {...this.getMenuProps(eachChild, 'key')} >
                          <span>{eachChild.showName}</span>
                          {
                            eachChild.sControlName.indexOf('BtnPrint') > -1 ?
                              <Checkbox onClick={this.radioClick.bind(this, eachChild)} style={{ float: 'right' }} />
                              : ''
                          }
                        </Menu.Item>
                      );
                    }
                  })}
                </SubMenu>
                : child.length === 1 ?
                  <Menu.Item {...this.getMenuProps(child[0], 'key')} >
                    <LegacyIcon type={iconName} />{item.sName === 'BtnPrint' ? showName : child[0].showName}
                  </Menu.Item>
                  :
                  <Menu.Item {...this.getMenuProps(item, 'key')} style={{ background:sColor }} >
                    {
                      commonUtils.isNotEmptyObject(item.sControlName) && item.sControlName.indexOf('BtnUpPbOrder') > -1 ?
                        <div className={styles.toolBarUpload}>
                          <Upload {...upPbOrderProps}><a {...this.getDisabledProps('BtnUpPbOrder')}><UploadOutlined /> {showName}</a>
                          </Upload>
                        </div> : commonUtils.isNotEmptyObject(item.sControlName) && item.sControlName.indexOf('BtnDlPbOrder') > -1 ?
                          <div className={styles.toolBarUpload}><a{...this.getDisabledProps('BtnDlPbOrder')} onClick={() => this.handleBtnDownload()}> <DownloadOutlined />{showName}</a></div> :
                          <div><LegacyIcon type={iconName} />{showName}</div>
                    }
                  </Menu.Item>;
            })}
          </Menu>
        </Spin>
      </div>
    );
  }
}

export default ToolBarComponent;