MachineTransfer.vue 36.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
<template>
  <a-card :bordered="false">
    <!-- 查询区域 -->
    <div class="table-page-search-wrapper">
      <a-form layout="inline" @keyup.enter.native="searchQuery">
        <a-row :gutter="24">
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item label="计划号">
              <a-input placeholder="请输入计划号" v-model="queryParam.planNo"></a-input>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item label="料号(唯一码)">
              <a-input placeholder="请输入料号(唯一码)" v-model="queryParam.sn"></a-input>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item label="宽度">
              <a-input placeholder="请输入宽度" v-model="queryParam.thickness"></a-input>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item label="批次">
              <a-input placeholder="请输入批次" v-model="queryParam.batch"></a-input>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item label="缓存点位">
              <a-input placeholder="请输入缓存点位" v-model="queryParam.locationCode"></a-input>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item label="状态">
              <j-dict-select-tag
                placeholder="请选择状态"
                v-model="queryParam.innerPackagestuts"
                dictCode="inner_packagestuts"
              />
            </a-form-item>
          </a-col>
          <template v-if="toggleSearchStatus">
            <a-col :xl="12" :lg="14" :md="16" :sm="24">
              <a-form-item label="创建日期">
                <j-date :show-date="true" date-format="YYYY-MM-DD" placeholder="请选择开始时间"
                        class="query-group-cust" v-model="queryParam.createTime_begin"></j-date>
                <span class="query-group-split-cust"></span>
                <j-date :show-date="true" date-format="YYYY-MM-DD" placeholder="请选择结束时间"
                        class="query-group-cust" v-model="queryParam.createTime_end"></j-date>
              </a-form-item>
            </a-col>
          </template>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
              <a-button id="search" type="primary" @click="searchQuery" icon="search">查询</a-button>
              <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
              <a @click="handleToggleSearch" style="margin-left: 8px">
                {{ toggleSearchStatus ? '收起' : '展开' }}
                <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
              </a>
            </span>
          </a-col>
        </a-row>
      </a-form>
    </div>
    <!-- 查询区域-END -->

    <!-- 操作按钮区域 -->
    <div class="table-operator">
      <a-button v-show="showReturnMaterial" type="primary" @click="returnMaterial" class="btn-info">退料入库
      </a-button>
      <a-button v-show="showEmptyTrayButton" type="primary" @click="callEmptyOut" class="btn-info">呼叫空托盘
      </a-button>
      <a-button v-show="showBindingPort" type="primary" @click="inventoryBindingLocationCode"
                class="btn-info">绑定缓存点位
      </a-button>
      <a-button v-show="showTransfer" @click="createTransfer" type="primary">过跨</a-button>
      <a-button v-show="showTransferToOtherArea" @click="createTransferToOtherArea" type="primary">移库</a-button>
      <a-button v-show="showExecuteIn" @click="executeIn" type="primary">入库</a-button>
      <a-button v-show="showShelfIn" @click="shelfIn" type="primary">货架库入库</a-button>
      <a-button v-show="showCantaleverIn" @click="cantaleverIn" type="primary">悬臂库入库</a-button>
    </div>

    <!-- table区域-begin -->
    <div>
      <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
        <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a
        style="font-weight: 600">{{ selectedRowKeys.length }}</a> 项
        <a style="margin-left: 24px" @click="onClearSelected">清空</a>
      </div>

      <a-table
        ref="table"
        size="middle"
        :scroll="{ x: true }"
        bordered
        rowKey="id"
        class="j-table-force-nowrap"
        :columns="columns"
        :dataSource="dataSource"
        :pagination="false"
        :loading="loading"
        :rowSelection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
        @change="handleTableChange"
      >


         <span slot="action" slot-scope="text, record">
          <span v-if="record.id == '合计'"></span>
          <span v-else>
           <a @click="handleDetail(record)">详情</a>
          </span>
        </span>

        <span slot="containerStatus_dictText" slot-scope="containerStatus_dictText">
            <a-tag :key="containerStatus_dictText" :color="getStatusColor(containerStatus_dictText)">
              {{ containerStatus_dictText }}
            </a-tag>
        </span>

        <span slot="enable_dictText" slot-scope="enable_dictText">
          <a-tag :key="enable_dictText" :color="getStatusColor(enable_dictText)">
            {{ enable_dictText }}
          </a-tag>
        </span>

        <span slot="innerPackagestuts_dictText" slot-scope="innerPackagestuts_dictText">
          <a-tag :key="innerPackagestuts_dictText" :color="getStatusColor(innerPackagestuts_dictText)">
            {{ innerPackagestuts_dictText }}
          </a-tag>
        </span>

        <span slot="inventoryStatus_dictText" slot-scope="inventoryStatus_dictText">
          <a-tag :key="inventoryStatus_dictText" :color="getStatusColor(inventoryStatus_dictText)">
            {{ inventoryStatus_dictText }}
          </a-tag>
        </span>

        <span slot="companyCode" slot-scope="companyCode">
          <a-tag :key="companyCode" color="blue">
            {{ solutionCompany(companyCode) }}
          </a-tag>
        </span>

        <span slot="zoneCode" slot-scope="zoneCode">
          <a-tag :key="zoneCode" color=blue>
            {{ solutionZoneCode(zoneCode) }}
          </a-tag>
        </span>

        <span slot="action" slot-scope="text, record">

        </span>
      </a-table>

      <!-- 页面使用分页组件 -->
      <Pagination
        v-model="ipagination.current"
        :total="ipagination.total"
        show-size-changer
        :page-size="ipagination.pageSize"
        @onShowSizeChange="onShowSizeChange"
        :pageSizeOptions="ipagination.pageSizeOptions"
      ></Pagination>

    </div>

    <quick-shipment-detail-modal ref='quickShipmentDetailModal' @ok="modalFormOk"></quick-shipment-detail-modal>
    <CantaleverShipmentDetailModal ref="cantaleverShipmentDetailModal"
                                   @ok="modalFormOk"></CantaleverShipmentDetailModal>
    <quality-inventory-detail-modal ref="qualityInventoryDetailModal"
                                    @ok="modalFormOk"></quality-inventory-detail-modal>
    <ExpressStorageModal ref="ExpressStorageModal" @ok="modalFormOk"></ExpressStorageModal>
    <ExpressDeliveryModal ref="ExpressDeliveryModal" @ok="modalFormOk"></ExpressDeliveryModal>
    <TransferTaskCantaleverModal ref="transferTaskCantaleverModal" @ok="modalFormOk"></TransferTaskCantaleverModal>
    <MachineTransferModal ref="machineTransferModal"></MachineTransferModal>
    <MachineCallEmpty ref="machineCallEmpty"/>
    <ReceiptModal ref="receiptModal"/>
    <CallShelfBoxTaskModal ref="callShelfBoxTaskModal"/>
    <InventoryBindingLocationCode ref="inventoryBindingLocationCode"/>
    <MachineTransferToOtherAreaModal ref="machineTransferToOtherAreaModal"/>
    <CantaleverInReceiptModal ref="cantaleverInReceiptModal"/>
  </a-card>
</template>

<script>
import '@/assets/less/TableExpand.less'
import {mixinDevice} from '@/utils/mixin'
import {JeecgListMixin} from '@/mixins/JeecgListMixin'
import {execute, getCompanyList, getZoneList, queryInventoryDetailListByMainIds,} from "@api/api";
import {getAction, postAction} from '@/api/manage'
import QuickShipmentDetailModal from "@views/system/shipment/modules/QuickShipmentDetailModal";
import QualityInventoryDetailModal from "@views/system/inventory/modules/QualityInventoryDetailModal";
import Pagination from '@/components/jeecgbiz/Pagination'
import ExpressStorageModal from "@views/system/monitor/modules/ExpressStorageModal.vue"; //引入 Pagination组件
import ExpressDeliveryModal from "@views/system/monitor/modules/ExpressDeliveryModal";
import TransferTaskCantaleverModal from "@views/system/task/modules/TransferTaskCantaleverModal";
import Vue from "vue";
import {ACCESS_TOKEN} from "@/store/mutation-types";
import store from "@/store";
import CantaleverShipmentDetailModal from "@views/system/shipment/modules/CantaleverShipmentDetailModal.vue";
import MachineTransferModal from "./MachineTransferModal.vue";
import MachineCallEmpty from "./MachineCallEmpty.vue";
import ReceiptModal from "../verticalCuttingDelivery/ReceiptModal.vue";
import CallShelfBoxTaskModal from "../../task/modules/CallShelfBoxTaskModal.vue";
import InventoryBindingLocationCode from "../verticalCutting/InventoryBindingLocationCode.vue";
import MachineTransferToOtherAreaModal from "./MachineTransferToOtherAreaModal.vue";
import CantaleverInReceiptModal from "../verticalCuttingDelivery/CantaleverInReceiptModal.vue";

export default {
  name: 'MachineTransfer',
  mixins: [JeecgListMixin, mixinDevice],
  props: {
    zoneCode: {
      type: String,
      required: true,
      default: '',
      validator: function (value) {
        return ['A1', 'A2', 'B1', 'B2', 'S'].includes(value);
      }
    },
    A2ButtonPermission: {
      type: String,
      default: ''
    },
  },
  components: {
    CantaleverShipmentDetailModal,
    ExpressStorageModal,
    ExpressDeliveryModal,
    QualityInventoryDetailModal,
    QuickShipmentDetailModal,
    Pagination,
    TransferTaskCantaleverModal,
    MachineTransferModal,
    MachineCallEmpty,
    ReceiptModal,
    CallShelfBoxTaskModal,
    InventoryBindingLocationCode,
    MachineTransferToOtherAreaModal,
    CantaleverInReceiptModal
  },
  data() {
    return {
      newArr: [],
      newDataSource: [],
      initDateSource: [],
      initPageSize: 10,
      zoneList: [],
      zoneOptions: [],
      companyList: [],
      firstLoad: 0,
      description: '库存详情管理页面',
      // 表头
      columns: [
        {
          title: '库存详情ID',
          align: 'center',
          dataIndex: 'id',
        },
        {
          title: '作业库区',
          align: "center",
          dataIndex: 'zoneCode',
          key: 'zoneCode',
          scopedSlots: {customRender: 'zoneCode'},
          filterMultiple: true,
          filters: []
        },
        // {
        //   title: '作业区',
        //   align: "center",
        //   dataIndex: 'workAct'
        // },
        {
          title: '计划号',
          align: "center",
          dataIndex: 'planNo'
        },
        {
          title: '料号(唯一码)',
          align: "center",
          dataIndex: 'sn',
          ellipsis: true,
        },
        {
          title: '容器编码',
          align: 'center',
          dataIndex: 'containerCode',
        },
        // {
        //   title: '容器状态',
        //   align: "center",
        //   dataIndex: 'containerStatus_dictText',
        //   scopedSlots: {customRender: 'containerStatus_dictText'},
        //   filterMultiple: false,
        //   filters: [
        //     {text: '空闲', value: 'empty'},
        //     {text: '锁定', value: 'lock'},
        //   ]
        // },
        {
          title: '缓存点位',
          align: 'center',
          dataIndex: 'locationCode'
        },
        {
          title: '位置',
          align: 'center',
          dataIndex: 'position'
        },
        {
          title: '数量',
          align: 'center',
          dataIndex: 'qty'
        },
        {
          title: '任务锁定数量',
          align: 'center',
          dataIndex: 'taskQty'
        },
        {
          title: '物料编码',
          align: 'center',
          dataIndex: 'materialCode'
        },
        {
          title: '物料规格',
          align: 'center',
          dataIndex: 'materialSpec'
        },
        {
          title: '批次',
          align: 'center',
          dataIndex: 'batch'
        },
        {
          title: '理论重量',
          align: 'center',
          dataIndex: 'lrsuttle'
        },
        {
          title: '净重',
          align: 'center',
          dataIndex: 'weight'
        },
        {
          title: '宽度',
          align: 'center',
          dataIndex: 'thickness'
        },
        {
          title: '长度',
          align: 'center',
          dataIndex: 'length'
        },
        {
          title: '外径',
          align: 'center',
          dataIndex: 'outside'
        },
        {
          title: '厂区',
          align: 'center',
          dataIndex: 'factory'
        },
        {
          title: '建议库区',
          align: 'center',
          dataIndex: 'warehouseSug'
        },
        {
          title: '实际库区',
          align: 'center',
          dataIndex: 'warehouseAct'
        },
        {
          title: '卷类别',
          align: 'center',
          dataIndex: 'rollUpType'
        },
        {
          title: '入库日期',
          align: 'center',
          dataIndex: 'indate'
        },
        {
          title: '出库日期',
          align: 'center',
          dataIndex: 'outdate'
        },
        {
          title: '生产指令单',
          align: 'center',
          dataIndex: 'productionCode'
        },
        {
          title: '状态',
          align: 'center',
          dataIndex: 'innerPackagestuts_dictText',
          scopedSlots: {customRender: 'innerPackagestuts_dictText'}
        },
        {
          title: '库龄(天)',
          align: 'center',
          dataIndex: 'inventoryAge'
        },
        {
          title: '可用状态',
          align: 'center',
          dataIndex: 'enable_dictText',
          scopedSlots: {customRender: 'enable_dictText'},
          filterMultiple: false,
          filters: [
            {text: '正常', value: '0'},
            {text: '冻结', value: '1'},
          ]
        },
        {
          title: '创建人',
          align: 'center',
          dataIndex: 'createBy'
        },
        {
          title: '创建日期',
          align: 'center',
          dataIndex: 'createTime'
        },
        {
          title: '更新人',
          align: 'center',
          dataIndex: 'updateBy'
        },
        {
          title: '更新日期',
          align: 'center',
          dataIndex: 'updateTime'
        },
      ],
      url: {
        list: '/inventory/inventoryDetail/list',
        delete: '/inventory/inventoryDetail/delete',
        deleteBatch: '/inventory/inventoryDetail/deleteBatch',
        exportXlsUrl: '/inventory/inventoryDetail/exportXls',
        importExcelUrl: 'inventory/inventoryDetail/importExcel',
        importPinkuUrl: 'inventory/inventoryDetail/importPinku',
        controller: 'inventory/inventoryHeader/controller',
        quickShipment: 'inventory/inventoryHeader/quickShipment',
        releaseController: 'inventory/inventoryHeader/releaseController',
      },
      dictOptions: {},
      superFieldList: [],
      selectRecord: [],
    }
  },
  created() {
    this.initPageSize = this.ipagination.pageSize
    this.loadData()
    this.loadFrom()
    this.getSuperFieldList()
  },
  watch: {
    zoneCode(newVal, oldVal) {
      console.log('zoneCode 从', oldVal, '变为', newVal);
    }
  },
  mounted() {
    if (this.firstLoad == 0) {
      this.firstLoad = 1;
      return;
    }
    //页面没加载完,此时methods里的方法找不到,使用定时器模拟点击
    let timeSearch = setInterval(() => {
      let eleSearch = document.getElementById("search");
      if (eleSearch != null) {
        //调用成功,清除定时器
        clearInterval(timeSearch)
        eleSearch.click();
      }
    }, 200)
  },
  computed: {
    importExcelUrl: function () {
      return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
    },
    importPinkuUrl: function () {
      return `${window._CONFIG['domianURL']}/${this.url.importPinkuUrl}`
    },
    showReturnMaterial() {
      return this.getRoute().includes('crossCutting/CrossCutting') && this.A2ButtonPermission === '1'
    },
    showEmptyTrayButton() {
      return this.getRoute().includes('verticalCutting/VerticalCutting') ||
        this.getRoute().includes('verticalCuttingDelivery/VerticalCuttingDelivery') ||
        (this.getRoute().includes('crossCutting/CrossCutting') && this.A2ButtonPermission === '2')
    },
    showBindingPort() {
      return this.getRoute().includes('verticalCutting/VerticalCutting') ||
        (this.getRoute().includes('crossCutting/CrossCutting') && this.A2ButtonPermission === '2')
    },
    showTransfer() {
      return this.getRoute().includes('verticalCutting/VerticalCutting')
    },
    showTransferToOtherArea() {
      return this.getRoute().includes('verticalCutting/VerticalCutting')
    },
    showExecuteIn() {
      return this.getRoute().includes('verticalCutting/VerticalCutting') ||
        (this.getRoute().includes('crossCutting/CrossCutting') && this.A2ButtonPermission === '2')
    },
    showShelfIn() {
      return this.getRoute().includes('verticalCuttingDelivery/VerticalCuttingDelivery')
    },
    showCantaleverIn() {
      return this.getRoute().includes('verticalCuttingDelivery/VerticalCuttingDelivery')
    }
  },
  methods: {
    getRoute() {
      return this.$route.path;
    },
    // 退料入库
    returnMaterial(){
      if (this.selectedRowKeys.length <= 0) {
        this.$message.warning('请选择一条记录!')
        return;
      } else {
        let snList = [];
        for (let a = 0; a < this.selectRecord.length; a++) {
          snList.push(this.selectRecord[a].sn);
        }
        if (this.zoneCode === "A2") {
          this.$message.success('成功!')
        }
      }
    },
    // 上架
    executeIn() {
      if (this.selectedRowKeys.length <= 0) {
        this.$message.warning('请选择一条记录!')
        return;
      } else {
        let snList = [];
        for (let a = 0; a < this.selectRecord.length; a++) {
          snList.push(this.selectRecord[a].sn);
        }
        if (this.zoneCode === "A1") {
          this.$message.success('成功!')
        }
      }
    },
    // 呼叫空托盘
    async callEmptyOut() {
      // console.log("this.$route.meta.matched.at(-1).name", this.$route.meta.matched.at(-1).name)
      if (this.getRoute().includes("verticalCutting/VerticalCutting")) {
        this.$refs.machineCallEmpty.edit(this.zoneCode);
      } else if (this.getRoute().includes("verticalCuttingDelivery/VerticalCuttingDelivery")) {
        this.$refs.callShelfBoxTaskModal.edit();
        this.$refs.callShelfBoxTaskModal.model.toPortCode = "P1031";
        this.$refs.callShelfBoxTaskModal.title = "发货区入库口呼叫空托盘";
        this.$refs.callShelfBoxTaskModal.url.add = "/task/taskHeader/p1031CallEmptyBox";
      } else if (this.getRoute().includes('crossCutting/CrossCutting')) {
        this.$refs.machineCallEmpty.edit(this.zoneCode);
      }
    },
    // 卷绑定缓存库位
    inventoryBindingLocationCode() {
      if (this.selectedRowKeys.length <= 0) {
        this.$message.warning('请选择一条记录!')
        return;
      }
      let snList = [];
      for (let a = 0; a < this.selectRecord.length; a++) {
        snList.push(this.selectRecord[a].sn);
      }
      this.$refs.inventoryBindingLocationCode.title = "卷与点位绑定";
      this.$refs.inventoryBindingLocationCode.edit(this.zoneCode, snList);
    },
    // 转移
    createTransfer() {
      if (this.selectedRowKeys.length <= 0) {
        this.$message.warning('请选择一条记录!')
        return;
      } else {
        let snList = [];
        for (let a = 0; a < this.selectRecord.length; a++) {
          snList.push(this.selectRecord[a].sn);
        }
        let set = new Set(this.selectRecord.map(record => record.locationCode));
        if (set.size > 1) {
          this.$message.warning('只能选择一个点位转移!');
          return;
        }
        let record = {'zoneCode': this.zoneCode, 'fromLocationCode': [...set][0]}
        this.$refs.machineTransferModal.edit(record);
      }
    },
    // 跨站
    createTransferToOtherArea() {
      if (this.selectedRowKeys.length <= 0) {
        this.$message.warning('请选择一条记录!')
        return;
      } else {
        let snList = [];
        for (let a = 0; a < this.selectRecord.length; a++) {
          snList.push(this.selectRecord[a].sn);
        }
        let set = new Set(this.selectRecord.map(record => record.locationCode));
        if (set.size > 1) {
          this.$message.warning('只能选择一个点位转移!');
          return;
        }
        let record = {'zoneCode': this.zoneCode, 'fromLocationCode': [...set][0]}
        this.$refs.machineTransferToOtherAreaModal.edit(record);
      }
    },
    // 货架库入库
    shelfIn() {
      if (this.selectedRowKeys.length <= 0) {
        this.$message.warning('请选择一条记录!')
        return;
      } else {
        let snList = [];
        for (let a = 0; a < this.selectRecord.length; a++) {
          snList.push(this.selectRecord[a].sn);
        }
        this.$refs.receiptModal.edit({}, snList.map(i => ({sn: i})));
      }
    },
    // 悬臂库入库
    cantaleverIn() {
      if (this.selectedRowKeys.length <= 0) {
        this.$message.warning('请选择一条记录!')
        return;
      } else {
        let snList = [];
        for (let a = 0; a < this.selectRecord.length; a++) {
          snList.push(this.selectRecord[a].sn);
        }
        this.$refs.cantaleverInReceiptModal.edit({}, snList.map(i => ({sn: i})));
      }
    },
    loadData(arg) {
      if (!this.url.list) {
        this.$message.error('请设置url.list属性!')
        return
      }
      //加载数据 若传入参数1则加载第一页的内容
      if (arg === 1) {
        this.ipagination.current = 1
      }
      //设置请求的条数为初始值
      this.ipagination.pageSize = this.initPageSize
      var params = this.getQueryParams() //查询条件
      params.zoneCode = this.zoneCode;
      params.a2ButtonPermission = this.A2ButtonPermission;
      this.loading = true
      getAction(this.url.list, params).then((res) => {
        if (res.success) {
          this.initDateSource = res.result.records || res.result
          this.newDataSource = res.result.records || res.result
          this.dataHandling()
          if (res.result.total) {
            this.ipagination.total = res.result.total
          } else {
            this.ipagination.total = 0
          }
        }
        if (res.code === 510) {
          this.$message.warning(res.message)
        }
        this.loading = false
      })
    },
    /*如果分页走这个方法*/
    dataHandling() {
      //动态新增每页条数
      this.ipagination.pageSize = this.initPageSize + 1
      this.newArr = []
      // var arrs = this.newDataSource
      // if (arrs.length > 0) {
      //   let item = {}
      //   item.id = '合计'
      //   var qty = 0
      //   for (let i = 0; i < arrs.length; i++) {
      //     qty += arrs[i].qty
      //   }
      //   item.qty = qty
      //   this.newDataSource.push(item)
      // }
      this.dataSource = Object.values(this.newDataSource)
    },
    // 分页改变时调用组件里的方法
    onShowSizeChange(current, pageSize) {
      this.ipagination.current = current
      this.ipagination.pageSize = pageSize
      //调整每页请求数值
      this.initPageSize = this.ipagination.pageSize
      this.loadData()
    },

    handleTableChange(pagination, filters, sorter) {
      //分页、排序、筛选变化时触发
      if (Object.keys(sorter).length > 0) {
        this.isorter.column = sorter.field;
        this.isorter.order = "ascend" == sorter.order ? "asc" : "desc"
      }
      //这种筛选方式只支持单选
      if (filters && Object.keys(filters).length > 0 && filters.containerStatus_dictText) {
        this.filters.containerStatus = filters.containerStatus_dictText[0];
      }
      if (filters && Object.keys(filters).length > 0 && filters.enable_dictText) {
        this.filters.enable = filters.enable_dictText[0];
      }
      if (filters && Object.keys(filters).length > 0 && filters.inventoryStatus_dictText) {
        this.filters.inventoryStatus = filters.inventoryStatus_dictText.toString();
      }
      if (filters && Object.keys(filters).length > 0 && filters.zoneCode) {
        this.filters.zoneCode = filters.zoneCode.toString();
      }
      this.ipagination = pagination;
      this.loadData();
    },
    getStatusColor(status) {
      const colors = {
        '良品': 'green',
        '报废品': 'purple',
        '待确认	': 'grey',
        '次品': 'red',
        '锁定': 'red',
        '冻结': 'red',
        '空闲': 'green',
        '有货': 'purple',
        '满盘': 'blue',
        '交库': 'green',
        '提货': 'purple',
        '出库': 'red',
        default: 'blue'
      };
      return colors[status] || colors.default;
    },
    loadFrom() {
      getZoneList().then((res) => {
        if (res.success) {
          this.zoneList = res.result
          //延迟半秒执行,避免组件未加载完,数据已经加载完
          setTimeout(() => {
            //slice可以在数组的任何位置进行删除/添加操作
            this.zoneOptions.splice(0, 1);
            for (let i = 0; i < res.result.length; i++) {
              this.zoneOptions.push({value: res.result[i].code, text: res.result[i].name})
              // this.columns[2].filters.push({value: res.result[i].code,text:res.result[i].name})
            }
          }, 500)
        }
      });
      getCompanyList().then(res => {
        if (res.success) {
          this.companyList = res.result
        }
      })
    },
    // controller: function () {
    //   if (this.selectedRowKeys.length <= 0) {
    //     this.$message.warning('请选择一条记录!')
    //   } else {
    //     let that = this;
    //     this.$confirm({
    //       title: '确认冻结',
    //       content: '是否冻结选中数据?',
    //       onOk: function () {
    //         that.loading = true;
    //         postAction(that.url.controller, that.selectedRowKeys).then((res) => {
    //           if (res.success) {
    //             //重新计算分页问题
    //             that.reCalculatePage(that.selectedRowKeys.length);
    //             that.$message.success(res.message);
    //             that.loadData();
    //             that.onClearSelected();
    //           } else {
    //             that.$message.warning(res.message);
    //             this.selectedRowKeys = [];
    //           }
    //         }).finally(() => {
    //           that.loading = false;
    //         })
    //       }
    //     })
    //   }
    // },
    releaseController() {
      if (this.selectedRowKeys.length <= 0) {
        this.$message.warning('请选择一条记录!')
      } else {
        let that = this;
        this.$confirm({
          title: '释放冻结',
          content: '释放冻结选中数据?',
          onOk: function () {
            that.loading = true;
            postAction(that.url.releaseController, that.selectedRowKeys).then((res) => {
              if (res.success) {
                //重新计算分页问题
                that.reCalculatePage(that.selectedRowKeys.length);
                that.$message.success(res.message);
                that.loadData();
                that.onClearSelected();
              } else {
                that.$message.warning(res.message);
                this.selectedRowKeys = [];
              }
            }).finally(() => {
              that.loading = false;
            })
          }
        })
      }
    },
    controller: function () {
      if (this.selectedRowKeys.length <= 0) {
        this.$message.warning('请选择一条记录!')
      } else {
        let that = this;
        this.$confirm({
          title: '确认冻结',
          content: '是否冻结选中数据?',
          onOk: function () {
            that.loading = true;
            postAction(that.url.controller, that.selectedRowKeys).then((res) => {
              if (res.success) {
                //重新计算分页问题
                that.reCalculatePage(that.selectedRowKeys.length);
                that.$message.success(res.message);
                that.loadData();
                that.onClearSelected();
              } else {
                that.$message.warning(res.message);
                this.selectedRowKeys = [];
              }
            }).finally(() => {
              that.loading = false;
            })
          }
        })
      }
    },
    onSelectChange(selectedRowKeys, selectionRows) {
      if (selectedRowKeys != null && selectedRowKeys.length > 0) {
        this.selectedMainId = selectedRowKeys[0].toString();
      }
      selectedRowKeys = selectedRowKeys.filter((item) => item !== '合计');
      this.selectedRowKeys = selectedRowKeys;
      this.selectRecord = selectionRows;
    },
    cantaleverQuickShipment() {
      if (this.selectedRowKeys.length <= 0) {
        this.$message.warning('请选择一条记录!');
      } else {
        let zoneCodes = this.selectRecord.map(row => row.zoneCode);
        if (new Set(zoneCodes).size !== 1) {
          this.$message.warning('所选数据非同库区');
          return;
        }
        const isInList = this.selectRecord.some(row => {
          if (row.zoneType != "L") {
            return true
          }
        })
        if (isInList) {
          this.$message.warning('所选数据非立库区类型');
          return;
        }
        this.$refs.cantaleverShipmentDetailModal.edit(this.selectRecord);
        this.$refs.cantaleverShipmentDetailModal.title = '悬臂库出库';
      }
    },
    quickShipment() {
      if (this.selectedRowKeys.length <= 0) {
        this.$message.warning('请选择一条记录!');
      } else {
        let zoneCodes = this.selectRecord.map(row => row.zoneCode);
        if (new Set(zoneCodes).size !== 1) {
          this.$message.warning('所选数据非同库区');
          return;
        }
        const isInList = this.selectRecord.some(row => {
          if (row.zoneType != "L") {
            return true
          }
        })
        if (isInList) {
          this.$message.warning('所选数据非立库区类型');
          return;
        }
        this.$refs.quickShipmentDetailModal.edit(this.selectRecord);
        this.$refs.quickShipmentDetailModal.title = '快速出库';
      }
    },
    qualityInventoryDetail() {
      if (this.selectedRowKeys.length <= 0) {
        this.$message.warning('请选择一条记录!');
      } else {
        let zoneCodes = this.selectRecord.map(row => row.zoneCode);
        if (new Set(zoneCodes).size !== 1) {
          this.$message.warning('所选数据非同库区');
          return;
        }
        this.$refs.qualityInventoryDetailModal.edit(this.selectRecord);
        this.$refs.qualityInventoryDetailModal.title = '选择出库口';
      }
    },
    solutionCompany(value) {
      var actions = []
      Object.keys(this.companyList).some(key => {
        if (this.companyList[key].code == '' + value) {
          actions.push(this.companyList[key].name)
          return true
        }
      })
      return actions.join('')
    },
    solutionZoneCode(value) {
      var actions = []
      Object.keys(this.zoneList).some((key) => {
        if (this.zoneList[key].code == ('' + value)) {
          actions.push(this.zoneList[key].name)
          return true
        }
      })
      return actions.join('')
    },
    expressStorage() {
      let json = {
        "containerCode": null,
        "locationCode": null
      }
      this.$refs.ExpressStorageModal.edit(json);
    },
    createTransferTaskCantalever() {
      if (this.selectedRowKeys.length <= 0) {
        this.$message.warning('请选择一条记录!');
        return;
      } else {
        let zoneCodes = this.selectRecord.map(row => row.zoneCode);
        if (new Set(zoneCodes).size !== 1) {
          this.$message.warning('所选数据非同库区');
          return;
        }
      }
      const isInList = this.selectRecord.some(row => {
        if (row.zoneCode != "B") {
          return true
        }
      })
      if (isInList) {
        this.$message.warning('所选数据非悬臂区类型');
        return;
      }
      this.loading = true;
      queryInventoryDetailListByMainIds(this.selectRecord).then((res) => {
        this.loading = false;
        if (res.success) {
          this.$refs.transferTaskCantaleverModal.edit(res.result);
        } else {
          this.$message.error(res.message);
        }
      });
    },
    expressDelivery() {
      if (this.selectedRowKeys.length <= 0) {
        this.$message.warning('请选择一条记录!');
        return;
      } else {
        let zoneCodes = this.selectRecord.map(row => row.zoneCode);
        if (new Set(zoneCodes).size !== 1) {
          this.$message.warning('所选数据非同库区');
          return;
        }
      }
      const isInList = this.selectRecord.some(row => {
        if (row.zoneType != "P") {
          return true
        }
      })
      if (isInList) {
        this.$message.warning('所选数据非平库区类型');
        return;
      }
      this.loading = true;
      queryInventoryDetailListByMainIds(this.selectRecord).then((res) => {
        this.loading = false;
        if (res.success) {
          let parameter = [];
          let newArr = res.result;
          for (let i of newArr) {
            let param = {
              materialCode: i.materialCode,
              qty: i.qty,
              shipQty: 0,
              inventoryDetailId: i.id,
              containerCode: i.containerCode
            }
            parameter.push(param);
          }
          this.$refs.ExpressDeliveryModal.edit(parameter);
        } else {
          this.$message.error(res.message);
        }
      });
    },
    initDictConfig() {
    },
    getSuperFieldList() {
      let fieldList = []
      fieldList.push({type: 'string', value: 'companyCode', text: '货主', dictCode: ''})
      fieldList.push({type: 'string', value: 'zoneCode', text: '库区', dictCode: ''})
      fieldList.push({type: 'string', value: 'containerCode', text: '容器编码', dictCode: ''})
      fieldList.push({type: 'string', value: 'locationCode', text: '库位编码', dictCode: ''})
      fieldList.push({type: 'string', value: 'materialCode', text: '物料编码', dictCode: ''})
      fieldList.push({type: 'string', value: 'materialName', text: '物料名称', dictCode: ''})
      fieldList.push({type: 'string', value: 'materialSpec', text: '物料规格', dictCode: ''})
      fieldList.push({type: 'string', value: 'materialUnit', text: '物料单位', dictCode: ''})
      fieldList.push({type: 'BigDecimal', value: 'qty', text: '数量', dictCode: ''})
      fieldList.push({type: 'BigDecimal', value: 'taskQty', text: '任务锁定数量', dictCode: ''})
      fieldList.push({type: 'string', value: 'inventoryStatus', text: '库存状态', dictCode: 'inventory_status'})
      fieldList.push({type: 'int', value: 'enable', text: '可用状态', dictCode: 'inventory_enable'})
      fieldList.push({type: 'string', value: 'batch', text: '批次', dictCode: ''})
      // fieldList.push({type:'string',value:'sn',text:'序列号',dictCode:''})
      fieldList.push({type: 'datetime', value: 'receiptDate', text: '入库日期'})
      fieldList.push({type: 'int', value: 'inventoryAge', text: '库龄(天)', dictCode: ''})
      fieldList.push({type: 'string', value: 'createBy', text: '创建人', dictCode: ''})
      fieldList.push({type: 'datetime', value: 'createTime', text: '创建日期'})
      fieldList.push({type: 'string', value: 'updateBy', text: '更新人', dictCode: ''})
      fieldList.push({type: 'datetime', value: 'updateTime', text: '更新日期'})
      this.superFieldList = fieldList
    }
  }
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>