InventoryClassificationDetail.vue 3.83 KB
<template>
  <a-card :bordered="false" :class="'cust-erp-sub-tab'">
    <!-- 操作按钮区域 -->
    <!--    <div class="table-operator" v-if="mainId">
          <a-button type="primary" icon="download" @click="handleExportXls('库存分类报表详情')">导出</a-button>
        </div>-->

    <!-- table区域-begin -->
    <div>
      <a-table
        ref="table"
        size="middle"
        bordered
        :rowKey="(record,index) => {return record.zoneCode + '_' + record.materialCode + '_' + record.materialSpec + '_' + record.materialUnit}"
        class="j-table-force-nowrap"
        :scroll="{x:true}"
        :columns="columns"
        :dataSource="dataSource"
        :pagination="ipagination"
        :loading="loading"
        @change="handleTableChange">

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

        <span slot="companyCode" slot-scope="companyCode" :companyList="companyList">
          <a-tag :key="companyCode" :color="getTagColor(companyCode)">
            {{ solution(companyList, companyCode) }}
          </a-tag>
        </span>

        <span slot="zoneCode" slot-scope="zoneCode" :zoneList="zoneList">
          <a-tag :key="zoneCode" :color="getTagColor(zoneCode)">
            {{ solution(zoneList, zoneCode) }}
          </a-tag>
        </span>

      </a-table>
    </div>

    <inventoryDetail-modal ref="modalForm" @ok="modalFormOk" :mainId="mainId"></inventoryDetail-modal>
  </a-card>
</template>

<script>

import {JeecgListMixin} from '@/mixins/JeecgListMixin'
import InventoryDetailModal from '@views/system/inventory/modules/InventoryDetailModal'
import {getCompanyList, getZoneList} from '@/api/api'

export default {
  name: 'InventoryClassificationDetail',
  mixins: [JeecgListMixin],
  components: {InventoryDetailModal},
  props: {
    mainId: {
      type: String,
      default: '',
      required: false
    }
  },
  watch: {
    mainId: {
      immediate: true,
      handler(val) {
        if (!this.mainId) {
          this.clearList()
        } else {
          this.queryParam['materialTypeCode'] = val.split("_")[0];
          this.loadData(1)
        }
      }
    }
  },
  data() {
    return {
      description: '库存分类报表详情页面',
      disableMixinCreated: true,
      companyList: [],
      zoneList: [],
      // 表头
      columns: [
        {
          title: '物料编码',
          align: "center",
          dataIndex: 'materialCode'
        },
        {
          title: '物料名称',
          align: "center",
          dataIndex: 'materialName'
        },
        {
          title: '物料规格',
          align: "center",
          dataIndex: 'materialSpec'
        },
        {
          title: '物料单位',
          align: "center",
          dataIndex: 'materialUnit'
        },
        {
          title: '库存总数量',
          align: "center",
          dataIndex: 'qty'
        }
      ],
      url: {
        list: '/report/listInventoryClassificationDetail',
      },
      dictOptions: {
        containerStatus: []
      }
    }
  },
  created() {
    this.loadFrom();
  },
  computed: {
    importExcelUrl() {
      return `${window._CONFIG['domianURL']}/${this.url.importUrl}/${this.mainId}`
    }
  },
  methods: {
    loadFrom() {
      getCompanyList().then(res => {
        if (res.success) {
          this.companyList = res.result
        }
      })
      getZoneList().then(res => {
        if (res.success) {
          this.zoneList = res.result
        }
      })
    },
    clearList() {
      this.dataSource = []
      this.selectedRowKeys = []
      this.ipagination.current = 1
    }
  }
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>