InventoryClassificationDetail.vue
3.83 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
<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>