xiongchao 3 年之前
父節點
當前提交
c7a943997d

+ 16 - 0
src/api/sqarepartmanage/sparepartinfo.js

@@ -17,6 +17,22 @@ export function getSparePartInfoPage (parameter) {
   })
 }
 
+/**
+ * page func
+ * parameter: { }
+ * @param parameter
+ * @returns {*}
+ */
+export function getSparePartInfoCheckWarnPage (parameter) {
+  return axios({
+    url: '/sqarepartmanage/spare-part-info/check/warn/page?' + stringify(parameter),
+    method: 'get',
+    headers: {
+      'Content-Type': 'application/json;charset=UTF-8'
+    }
+  })
+}
+
 /**
  * add func
  * parameter: { }

+ 1 - 0
src/router/generator-platform-routers.js

@@ -100,6 +100,7 @@ const constantRouterComponents = {
   'SpareType': () => import('@/views/sqarepartmanage/sparetype/SpareType'),
   // 备件基础信息
   'SparePartInfo': () => import('@/views/sqarepartmanage/sparepartinfo/SparePartInfo'),
+  'SparePartInfoCheckWarn': () => import('@/views/sqarepartmanage/sparepartinfo/SparePartInfoCheckWarn'),
   'SparePartInfoPrint': () => import('@/views/sqarepartmanage/sparepartinfo/SparePartInfoPrint'),
   // 备件使用信息
   'SparePartUsed': () => import('@/views/sqarepartmanage/sparepartused/SparePartUsed'),

+ 393 - 0
src/views/sqarepartmanage/sparepartinfo/SparePartInfoCheckWarn.vue

@@ -0,0 +1,393 @@
+<template>
+  <a-card :bordered="false">
+    <a-row :gutter="8" v-show="visible">
+      <a-col :span="24">
+        <div class="table-page-search-wrapper">
+          <a-form layout="inline">
+            <a-row :gutter="48">
+              <a-col :md="8" :sm="24">
+                <a-form-item label="月份">
+                  <a-input-number
+                    :step="1"
+                    :min="1"
+                    v-model="queryParam.month"
+                    placeholder="请输入要查询最近多少月份"/>
+                </a-form-item>
+              </a-col>
+              <!--<a-col :md="8" :sm="24">
+                <a-form-item label="类型">
+                  <a-tree-select
+                    style="width: 100%"
+                    :dropdownStyle="{ maxHeight: '400px', overflow: 'auto' }"
+                    :treeData="spareTypeTreeData"
+                    :treeNodeFilterProp="'title'"
+                    :showSearch="true"
+                    v-model="queryParam.typeId"
+                    placeholder="请选择"
+                  >
+                  </a-tree-select>
+                </a-form-item>
+              </a-col>
+              <a-col :md="8" :sm="24">
+                <a-form-item label="规格型号">
+                  <a-input v-model="queryParam.ggxh" placeholder="模糊查询"/>
+                </a-form-item>
+              </a-col>
+              <a-col :md="8" :sm="24">
+                <a-form-item label="原厂编号">
+                  <a-input v-model="queryParam.initNo" placeholder="模糊查询"/>
+                </a-form-item>
+              </a-col>
+              <a-col :md="8" :sm="24">
+                <a-form-item label="生产商">
+                  <a-input v-model="queryParam.producerName" placeholder="名称模糊查询"/>
+                </a-form-item>
+              </a-col>
+              <a-col :md="8" :sm="24">
+                <a-form-item label="供应商">
+                  <a-input v-model="queryParam.supplierName" placeholder="名称模糊查询"/>
+                </a-form-item>
+              </a-col>
+              <a-col :md="8" :sm="24">
+                <a-form-item label="等级">
+                  <a-select v-model="queryParam.level" placeholder="请选择">
+                    <a-select-option
+                      v-for="(label,value) in levelMap"
+                      :key="value"
+                      :label="label"
+                      :value="parseInt(value)">{{ label }}
+                    </a-select-option>
+                  </a-select>
+                </a-form-item>
+              </a-col>
+              <a-col :md="6" :sm="24">
+                <a-form-item label="用途">
+                  <a-select v-model="queryParam.yt"  placeholder="请选择">
+                    <a-select-option
+                       v-for="(label,value) in ytMap"
+                       :key="value"
+                       :label="label"
+                       :value="parseInt(value)">{{ label }}
+                     </a-select-option>
+                  </a-select>
+                </a-form-item>
+              </a-col>-->
+              <a-col :md="6 || 24" :sm="24">
+                <span class="table-page-search-submitButtons">
+                  <a-button type="primary" @click="$refs.table.refresh(true)">查询</a-button>
+                  <a-button style="margin-left: 8px" @click="resetSearchForm">重置</a-button>
+                </span>
+              </a-col>
+            </a-row>
+          </a-form>
+        </div>
+
+        <div class="table-operator">
+        </div>
+
+        <s-table
+          ref="table"
+          size="default"
+          rowKey="spareId"
+          :columns="columns"
+          :data="loadData"
+          :scroll="{x: 1500, y: BaseTool.Constant.scrollY}"
+          :alert="options.alert"
+          :rowSelection="options.rowSelection"
+          showPagination="auto"
+        >
+        </s-table>
+      </a-col>
+    </a-row>
+    <base-form ref="baseModal" @ok="handleOk"/>
+    <detail ref="detailModal" @ok="handleOk"/>
+    <detail-bom ref="detailBomModal" @ok="handleOk"/>
+    <storeList ref="storeListModal"/>
+    <inStoreList ref="inStoreListModal"/>
+    <outStoreList ref="outStoreListModal"/>
+    <spare-part-used-select-modal ref="sparePartUsedSelectModal"/>
+    <spare-part-info-select-modal-for-adjust :type="'radio'" ref="spareSelectModal" @selected="handleSpareSelected"/>
+    <import-form-add ref="importModal" @ok="handleOk"/>
+    <import-form-update ref="importModalForUpdate" @ok="handleOk"/>
+  </a-card>
+</template>
+
+<script>
+import { STable, Ellipsis } from '@/components'
+import BaseForm from './modules/BaseForm'
+import Detail from './modules/Detail'
+import DetailBom from './modules/DetailBom'
+import StoreList from './modules/StoreList'
+import InStoreList from './modules/InStoreList'
+import OutStoreList from './modules/OutStoreList'
+import SparePartUsedSelectModal from '@/views/sqarepartmanage/sparepartused/modules/SparePartUsedSelectModal'
+import { getSparePartInfoCheckWarnPage, updateSpareIdsBatch, deleteSparePartInfos, fetchSparePartInfo, fetchStoreList, fetchInStoreList, fetchOutStoreList, exportSparePartInfo } from '@/api/sqarepartmanage/sparepartinfo'
+import { fetchSpareTypeTree } from '@/api/sqarepartmanage/sparetype'
+import ImportFormAdd from './modules/ImportFormAdd'
+import ImportFormUpdate from './modules/ImportFormUpdate'
+import SparePartInfoSelectModalForAdjust from '@/views/sqarepartmanage/sparepartinfo/modules/SparePartInfoSelectModalForAdjust'
+
+export default {
+  name: 'SparePartInfoListCheckWarn',
+  components: {
+    STable,
+    Ellipsis,
+    BaseForm,
+    Detail,
+    DetailBom,
+    StoreList,
+    InStoreList,
+    OutStoreList,
+    SparePartUsedSelectModal,
+    ImportFormAdd,
+    SparePartInfoSelectModalForAdjust,
+    ImportFormUpdate
+  },
+  data () {
+    return {
+      // 查询参数
+      queryParam: {
+        type: 2,
+        month: 6
+      },
+      // 表头
+      columns: [
+        {
+          title: '序号',
+          dataIndex: 'index',
+          width: 100,
+          checked: true,
+          customRender: (text, record, index) => {
+            return `${index + 1}`
+          }
+        },
+        {
+          title: '备件名称',
+          dataIndex: 'spareName',
+          checked: true,
+          width: '150px'
+        },
+        {
+          title: '规格型号',
+          checked: true,
+          width: '150px',
+          dataIndex: 'ggxh'
+        },
+        {
+          title: '预消耗数量',
+          checked: true,
+          width: '150px',
+          dataIndex: 'num'
+        },
+        {
+          title: '库存数量',
+          checked: true,
+          width: '150px',
+          dataIndex: 'storeNum'
+        }
+      ],
+      // 加载数据方法 必须为 Promise 对象
+      loadData: parameter => {
+        parameter = {
+          ...parameter,
+          ...this.queryParam,
+          dataScope: {
+            sortBy: 'desc',
+            sortName: 'name'
+          }
+        }
+        return getSparePartInfoCheckWarnPage(Object.assign(parameter, this.queryParam))
+          .then(res => {
+            return res.data
+          })
+      },
+      selectedRowKeys: [],
+      selectedRows: [],
+      expandedKeys: [],
+      selectedKeys: [],
+      levelMap: {},
+      unitMap: {},
+      cdMap: {},
+      ytMap: {},
+      id: null,
+      visible: true,
+      spareTypeTreeData: [],
+      options: {
+        alert: { show: true, clear: () => { this.selectedRowKeys = [] } },
+        rowSelection: {
+          selectedRowKeys: this.selectedRowKeys,
+          onChange: this.onSelectChange
+        }
+      },
+      optionAlertShow: false
+    }
+  },
+  created () {
+    // 下拉框map
+    this.levelMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SPARE_PART_INFO_LEVEL)
+    this.unitMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SBINFO_UNIT)
+    this.cdMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.PRODUCER_AREA)
+    this.ytMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SPARE_USE_TYPE)
+    this.tableOption()
+    fetchSpareTypeTree({}).then(res => {
+      this.spareTypeTreeData = res.data
+    })
+  },
+  methods: {
+    tableOption () {
+      if (!this.optionAlertShow) {
+        this.options = {
+          alert: { show: true, clear: () => { this.selectedRowKeys = [] } },
+          rowSelection: {
+            selectedRowKeys: this.selectedRowKeys,
+            onChange: this.onSelectChange,
+            getCheckboxProps: record => ({
+              props: {
+                disabled: false,
+                name: record.id
+              }
+            })
+          }
+        }
+        this.optionAlertShow = true
+      } else {
+        this.options = {
+          alert: false,
+          rowSelection: null
+        }
+        this.optionAlertShow = false
+      }
+    },
+    batchDelete (id) {
+      let ids = []
+      if (this.BaseTool.String.isBlank(id)) {
+        const length = this.selectedRows.length
+        if (length === 0) {
+          this.$message.info('请选择要删除的记录')
+          return
+        }
+        ids = this.selectedRows.map(item => item.id)
+      } else {
+        ids = [id]
+      }
+      deleteSparePartInfos(ids).then(res => {
+        this.$message.info('删除成功')
+        this.handleOk()
+        this.$refs.table.clearSelected()
+      })
+    },
+    handleEdit (record) {
+      this.visible = false
+      fetchSparePartInfo({ id: record.id }).then(res => {
+        const modal = this.$refs.baseModal
+        modal.base(res.data)
+      })
+    },
+    handleDetailBom (record) {
+      this.visible = false
+      const modal = this.$refs.detailBomModal
+      modal.base(record)
+    },
+    handleCopy (record) {
+      this.visible = false
+      fetchSparePartInfo({ id: record.id }).then(res => {
+        const modal = this.$refs.baseModal
+        res.data.id = null
+        modal.base(res.data)
+      })
+    },
+    handleStore (record) {
+      fetchStoreList({ id: record.id }).then(res => {
+        const modal = this.$refs.storeListModal
+        modal.base(res.data)
+      })
+    },
+    handleInStore (record) {
+      fetchInStoreList({ id: record.id }).then(res => {
+        const modal = this.$refs.inStoreListModal
+        modal.base(res.data)
+      })
+    },
+    handleSparePartUsed (record) {
+      this.$refs.sparePartUsedSelectModal.base({}, { spareId: record.id })
+    },
+    handleOutStore (record) {
+      fetchOutStoreList({ id: record.id }).then(res => {
+        const modal = this.$refs.outStoreListModal
+        modal.base(res.data)
+      })
+    },
+    handleAdd (record) {
+      this.visible = false
+      this.$refs.baseModal.base()
+    },
+    handleView (record) {
+      this.visible = false
+      fetchSparePartInfo({ id: record.id }).then(res => {
+        const modal = this.$refs.detailModal
+        modal.base(res.data)
+      })
+    },
+    handleOk () {
+      this.visible = true
+      this.$refs.table.refresh()
+    },
+    onSelectChange (selectedRowKeys, selectedRows) {
+      this.selectedRowKeys = selectedRowKeys
+      this.selectedRows = selectedRows
+    },
+    resetSearchForm () {
+      this.queryParam = {
+      }
+      this.$refs.table.refresh(true)
+    },
+    onSelect: function (selectedKeys, info) {
+      this.selectedKeys = selectedKeys
+      this.queryParam.typeId = selectedKeys.length > 0 ? selectedKeys[0] : ''
+      this.$refs.table.refresh(true)
+    },
+    onExpand (expandedKeys) {
+      this.expandedKeys = expandedKeys
+      this.autoExpandParent = false
+    },
+    doExport () {
+      this.$message.info('数据正在处理,耐心等待,请勿重复点击')
+      const parameter = {
+        ...this.queryParam
+      }
+      exportSparePartInfo(parameter).then(file => {
+        this.BaseTool.UPLOAD.downLoadExportExcel(file)
+      })
+    },
+
+    doImport () {
+      this.$refs.importModal.base()
+    },
+    doImportForUpdate () {
+      this.$refs.importModalForUpdate.base()
+    },
+    handleSpareSelect (id) {
+      const length = this.selectedRows.length
+      if (length < 2) {
+        this.$message.info('请至少选择2个备件')
+        return
+      }
+      this.$refs.spareSelectModal.base(this.selectedRows)
+    },
+    handleSpareSelected (keys) {
+      const spareId = keys[0]
+      let ids = []
+      ids = this.selectedRows.map(item => item.id).filter(id => id !== spareId)
+      updateSpareIdsBatch(spareId, ids)
+        .then((res) => {
+          this.$message.info('校正成功')
+          this.handleOk()
+          this.id = null
+          this.$refs.table.clearSelected()
+        }).catch(() => {
+          this.confirmLoading = false
+        })
+    }
+  }
+}
+</script>