123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342 |
- <template>
- <div>
- <a-card size="small" :bordered="false" class="searchBoxNormal">
- <!-- 搜索条件 -->
- <div ref="tableSearch" class="table-page-search-wrapper">
- <a-form layout="inline" id="inventoryQueryList-form" @keyup.enter.native="$refs.table.refresh(true)">
- <a-row :gutter="15">
- <a-col :md="6" :sm="24">
- <a-form-item label="产品编码">
- <a-input id="inventoryQueryList-productCode" v-model.trim="queryParam.productCode" allowClear placeholder="请输入产品编码"/>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="原厂编码">
- <a-input id="inventoryQueryList-productOrigCode" v-model.trim="queryParam.productOrigCode" allowClear placeholder="请输入原厂编码"/>
- </a-form-item>
- </a-col>
- <a-col :md="5" :sm="24">
- <a-form-item label="产品名称">
- <a-input id="inventoryQueryList-productName" v-model.trim="queryParam.productName" allowClear placeholder="请输入产品名称"/>
- </a-form-item>
- </a-col>
- <template v-if="advanced">
- <a-col :md="6" :sm="24">
- <a-form-item label="产品品牌">
- <ProductBrand id="inventoryQueryList-productBrandSn" v-model="queryParam.productBrandSn"></ProductBrand>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="产品分类">
- <ProductType id="inventoryQueryList-productType" placeholder="请选择产品分类" @change="changeProductType" v-model="productType"></ProductType>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="仓库">
- <warehouse isPermission v-model="queryParam.warehouseSn" id="inventoryQueryList-warehouseSn" placeholder="请选择仓库" />
- </a-form-item>
- </a-col>
- <a-col :md="4" :sm="24">
- <a-form-item label="库存情况">
- <a-checkbox v-model="queryParam.zeroQtyFlag" id="inventoryQueryList-zeroQtyFlag">只查看有库存</a-checkbox>
- </a-form-item>
- </a-col>
- </template>
- <a-col :md="7" :sm="24">
- <a-button type="primary" @click="$refs.table.refresh()" :disabled="disabled" id="inventoryQueryList-refresh">查询</a-button>
- <a-button style="margin-left: 5px" @click="resetSearchForm" :disabled="disabled" id="inventoryQueryList-reset">重置</a-button>
- <a-button
- v-if="$hasPermissions('B_inventoryQuery_export')"
- type="primary"
- style="margin-left: 5px"
- class="button-warning"
- @click="openExcelModal=true"
- :disabled="disabled"
- :loading="exportLoading"
- id="inventoryQueryList-export">导出</a-button>
- <a @click="advanced=!advanced" style="margin-left: 5px" id="inventoryQueryList-advanced">
- {{ advanced ? '收起' : '展开' }}
- <a-icon :type="advanced ? 'up' : 'down'"/>
- </a>
- </a-col>
- </a-row>
- </a-form>
- </div>
- </a-card>
- <a-card size="small" :bordered="false" class="inventoryQueryList-wrap">
- <a-spin :spinning="spinning" tip="Loading...">
- <!-- 合计 -->
- <div class="ftext tongji-bar">
- 可用库存总数量:<strong>{{ (currentStock&&(currentStock.currentStockQty || currentStock.currentStockQty==0)) ? currentStock.currentStockQty : '--' }}个</strong>;
- <span v-if="$hasPermissions('M_inventoryQueryList_costPrice')">可用库存总成本:<strong>{{ (currentStock&&(currentStock.currentStockCost || currentStock.currentStockCost==0)) ? toThousands(currentStock.currentStockCost) : '--' }}</strong>。</span>
- </div>
- <!-- 列表 -->
- <s-table
- class="sTable fixPagination"
- ref="table"
- :style="{ height: tableHeight+68+'px' }"
- size="small"
- :rowKey="(record) => record.id"
- :columns="columns"
- :pageSize="30"
- :data="loadData"
- :scroll="{ y: tableHeight }"
- :defaultLoadData="false"
- bordered>
- <!-- 操作 -->
- <template slot="action" slot-scope="text, record">
- <a-button
- v-if="$hasPermissions('B_inventoryQuery_detail')"
- size="small"
- type="link"
- class="button-success"
- @click="goDetail(record)"
- :id="'inventoryQueryList-detail-'+record.id">库存详情</a-button>
- <a-button
- v-if="$hasPermissions('B_inventoryQuery_rkDetail')"
- size="small"
- type="link"
- class="button-warning"
- @click="goWarehouseDetail(record)"
- :id="'inventoryQueryList-whousedetail-'+record.id">出入库明细</a-button>
- <span v-if="!$hasPermissions('B_inventoryQuery_detail')&&!$hasPermissions('B_inventoryQuery_rkDetail')">--</span>
- </template>
- </s-table>
- </a-spin>
- <!-- 库存详情 -->
- <inventory-query-detail-modal v-drag :openModal="openModal" :itemId="itemId" @close="closeModal" />
- <!-- 导出Excel -->
- <export-excel-modal :openModal="openExcelModal" @ok="handleExcelOk" @close="openExcelModal=false" />
- </a-card>
- </div>
- </template>
- <script>
- import { commonMixin } from '@/utils/mixin'
- // 组件
- import { STable, VSelect } from '@/components'
- import inventoryQueryDetailModal from './detailModal.vue'
- import exportExcelModal from './exportExcelModal.vue'
- import { hdExportExcel } from '@/libs/exportExcel'
- import ProductType from '../../common/productType.js'
- import ProductBrand from '@/views/common/productBrand.js'
- import warehouse from '@/views/common/chooseWarehouse.js'
- // 接口
- import { stockList, stockCount, stockExport } from '@/api/stock'
- export default {
- name: 'InventoryQueryList',
- mixins: [commonMixin],
- components: { STable, VSelect, inventoryQueryDetailModal, exportExcelModal, ProductType, ProductBrand, warehouse },
- data () {
- return {
- spinning: false,
- advanced: true, // 高级搜索 展开/关闭
- tableHeight: 0, // 表格高度
- queryParam: { // 查询条件
- productCode: '', // 产品编码
- productName: '', // 产品名称
- productOrigCode: '', // 原厂编码
- productBrandSn: undefined, // 产品品牌
- warehouseSn: undefined, // 仓库
- productTypeSn1: '', // 产品分类1
- productTypeSn2: '', // 产品分类2
- productTypeSn3: '', // 产品分类3
- zeroQtyFlag: false // 库存情况
- },
- productType: [], // 产品分类
- exportLoading: false, // 导出loading
- disabled: false, // 查询、重置按钮是否可操作
- zeroQtyData: [ // 库存情况
- { name: '库存数量为0', id: '1' },
- { name: '库存数量不为0', id: '0' }
- ],
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.disabled = true
- this.spinning = true
- // 排序
- if (parameter.sortOrder && parameter.sortField == 'currentStockQty') {
- parameter.sortField = 'qty'
- parameter.sortAlias = ''
- }
- if (parameter.sortOrder && parameter.sortField == 'currentStockCost') {
- parameter.sortField = 'currentStockCost'
- parameter.sortAlias = 'stock'
- }
- // 没有排序
- if (!parameter.sortOrder) {
- parameter.sortField = ''
- parameter.sortAlias = ''
- }
- const params = Object.assign(parameter, this.queryParam)
- if (params.zeroQtyFlag) {
- params.zeroQtyFlag = '0'
- } else {
- params.zeroQtyFlag = ''
- }
- // 获取列表数据 有分页
- return stockList(params).then(res => {
- let data
- if (res.status == 200) {
- data = res.data
- // 计算表格序号
- const no = (data.pageNo - 1) * data.pageSize
- for (var i = 0; i < data.list.length; i++) {
- data.list[i].no = no + i + 1
- }
- this.disabled = false
- this.spinning = false
- // 总计
- this.getTotal(params)
- }
- return data
- })
- },
- openModal: false, // 查看库存详情 弹框
- itemId: '', // 当前库存记录id
- currentStock: null, // 可用库存合计
- openExcelModal: false // 导出Excel弹框
- }
- },
- computed: {
- // 表头
- columns () {
- const _this = this
- const arr = [
- { title: '序号', dataIndex: 'no', width: '4%', align: 'center' },
- { title: '产品编码', dataIndex: 'productCode', width: '8%', align: 'left', customRender: function (text) { return text || '--' } },
- { title: '货位编号', dataIndex: 'stackPlaceEntity.stackPlaceCode', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '产品名称', dataIndex: 'productName', width: '20%', align: 'left', ellipsis: true, customRender: function (text) { return text || '--' } },
- { title: '仓库', dataIndex: 'warehouseName', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '最后入库时间', dataIndex: 'lastStockTime', width: '9%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '单位', dataIndex: 'productUnit', width: '5%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '产品品牌', dataIndex: 'productBrandName', width: '9%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '可用库存数量', dataIndex: 'currentStockQty', width: '8%', align: 'center', sorter: true, customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '操作', scopedSlots: { customRender: 'action' }, width: '10%', align: 'center' }
- ]
- if (this.$hasPermissions('M_inventoryQueryList_costPrice')) { // 成本价权限
- arr.splice(9, 0, { title: '可用库存成本', dataIndex: 'currentStockCost', width: '8%', align: 'right', sorter: true, customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } })
- }
- return arr
- }
- },
- methods: {
- // 重置
- resetSearchForm () {
- this.queryParam.productBrandSn = undefined
- this.queryParam.productTypeSn1 = ''
- this.queryParam.productTypeSn2 = ''
- this.queryParam.productTypeSn3 = ''
- this.queryParam.productCode = ''
- this.queryParam.productOrigCode = ''
- this.queryParam.productName = ''
- this.queryParam.warehouseSn = undefined
- this.queryParam.zeroQtyFlag = false
- this.productType = []
- this.$refs.table.refresh(true)
- },
- // 合计
- getTotal (param) {
- stockCount(param).then(res => {
- if (res.status == 200 && res.data) {
- this.currentStock = res.data
- } else {
- this.currentStock = null
- }
- })
- },
- // 库存详情
- goDetail (row) {
- this.$store.state.app.curActionPermission = 'B_inventoryQuery_detail'
- this.itemId = row.stockSn
- this.openModal = true
- },
- // 关闭弹框
- closeModal () {
- this.itemId = ''
- this.openModal = false
- },
- // 出入库明细
- goWarehouseDetail (row) {
- this.$router.push({ name: 'inventoryQueryWarehouseDetail', params: { sn: row.productSn, warehouseSn: row.warehouseSn } })
- },
- // 导出Excel
- handleExcelOk (exportType) {
- const _this = this
- const params = JSON.parse(JSON.stringify(this.queryParam))
- if (params.zeroQtyFlag) {
- params.zeroQtyFlag = '0'
- } else {
- params.zeroQtyFlag = ''
- }
- params.exportType = exportType
- this.exportLoading = true
- this.spinning = true
- hdExportExcel(stockExport, params, '库存查询', function () {
- _this.exportLoading = false
- _this.spinning = false
- _this.$store.state.app.curActionPermission = ''
- })
- },
- // 产品分类 change
- changeProductType (val, opt) {
- this.queryParam.productTypeSn1 = val[0] ? val[0] : ''
- this.queryParam.productTypeSn2 = val[1] ? val[1] : ''
- this.queryParam.productTypeSn3 = val[2] ? val[2] : ''
- },
- // 初始化页面
- pageInit () {
- const _this = this
- this.$nextTick(() => { // 页面渲染完成后的回调
- _this.setTableH()
- })
- },
- // 计算表格高度
- setTableH () {
- const tableSearchH = this.$refs.tableSearch.offsetHeight
- this.tableHeight = window.innerHeight - tableSearchH - 226
- }
- },
- watch: {
- advanced (newValue, oldValue) {
- const _this = this
- this.$nextTick(() => { // 页面渲染完成后的回调
- _this.setTableH()
- })
- },
- '$store.state.app.winHeight' (newValue, oldValue) { // 窗口变更时,需同时更改表格高度
- this.setTableH()
- }
- },
- mounted () {
- if (!this.$store.state.app.isNewTab) { // 页签刷新时调用
- this.pageInit()
- this.resetSearchForm()
- }
- },
- activated () {
- // 如果是新页签打开,则重置当前页面
- if (this.$store.state.app.isNewTab) {
- this.pageInit()
- this.resetSearchForm()
- }
- // 仅刷新列表,不重置页面
- if (this.$store.state.app.updateList) {
- this.pageInit()
- this.$refs.table.refresh()
- }
- },
- beforeRouteEnter (to, from, next) {
- next(vm => {})
- }
- }
- </script>
- <style lang="less">
- .inventoryQueryList-wrap{
- .sTable{
- margin-top: 10px;
- }
- }
- </style>
|