123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272 |
- <template>
- <a-card size="small" :bordered="false" class="warehousingOrderList-wrap">
- <a-spin :spinning="spinning" tip="Loading...">
- <!-- 搜索条件 -->
- <div class="table-page-search-wrapper">
- <a-form-model
- id="warehousingOrderList-form"
- ref="ruleForm"
- class="form-model-con"
- layout="inline"
- :model="queryParam"
- :rules="rules"
- @keyup.enter.native="handleSearch">
- <a-row :gutter="15">
- <a-col :md="6" :sm="24">
- <a-form-model-item label="完成日期" prop="time">
- <rangeDate ref="rangeDate" :value="queryParam.time" @change="dateChange" />
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-model-item label="入库单号">
- <a-input id="warehousingOrderList-stockPutNo" v-model.trim="queryParam.stockPutNo" allowClear placeholder="请输入入库单号"/>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-model-item label="单位名称">
- <a-input id="warehousingOrderList-supplierName" v-model.trim="queryParam.supplierName" allowClear placeholder="请输入单位名称"/>
- </a-form-model-item>
- </a-col>
- <template v-if="advanced">
- <a-col :md="6" :sm="24">
- <a-form-model-item label="入库类型">
- <v-select
- v-model="queryParam.putBizType"
- ref="putBizType"
- id="warehousingOrderList-putBizType"
- code="PUT_STOCK_TYPE_REPORT"
- placeholder="请选择入库类型"
- allowClear></v-select>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-model-item label="散件入库子类型">
- <v-select
- v-model="queryParam.sparePartsType"
- ref="sparePartsType"
- id="warehousingOrderList-sparePartsType"
- code="SPARE_PARTS_TYPE"
- placeholder="请选择散件入库子类型"
- allowClear></v-select>
- </a-form-model-item>
- </a-col>
- </template>
- <a-col :md="6" :sm="24" style="margin-bottom: 10px;">
- <a-button
- type="primary"
- class="button-info"
- size="small"
- @click="handleStock"
- id="warehousingOrderList-stockDate">盘点区间日期</a-button>
- <a-button style="margin-left: 5px" type="primary" @click="handleSearch" :disabled="disabled" id="warehousingOrderList-refresh">查询</a-button>
- <a-button style="margin-left: 5px" @click="resetSearchForm" :disabled="disabled" id="warehousingOrderList-reset">重置</a-button>
- <a-button
- style="margin-left: 5px"
- type="primary"
- class="button-warning"
- @click="handleExport"
- :disabled="disabled"
- :loading="exportLoading"
- v-if="$hasPermissions('B_warehousingOrderExport')"
- id="warehousingOrderList-export">导出</a-button>
- <a @click="advanced=!advanced" style="margin-left: 5px">
- {{ advanced ? '收起' : '展开' }}
- <a-icon :type="advanced ? 'up' : 'down'"/>
- </a>
- </a-col>
- </a-row>
- </a-form-model>
- </div>
- <!-- 列表 -->
- <s-table
- class="sTable"
- ref="table"
- size="small"
- :rowKey="(record) => record.id"
- :columns="columns"
- :data="loadData"
- :defaultLoadData="false"
- bordered>
- <template slot="footer">
- <a-row :gutter="15">
- <a-col :md="4" :sm="24">
- 总数量:{{ (totalData && (totalData.productTotalQty || totalData.productTotalQty==0)) ? totalData.productTotalQty : '--' }}
- </a-col>
- <a-col :md="4" :sm="24" v-if="$hasPermissions('M_warehousingOrderList_costPrice')">
- 总金额:{{ (totalData && (totalData.productTotalCost || totalData.productTotalCost==0)) ? toThousands(totalData.productTotalCost) : '--' }}
- </a-col>
- </a-row>
- </template>
- </s-table>
- </a-spin>
- <!-- 导出提示框 -->
- <reportModal :visible="showExport" @close="showExport=false"></reportModal>
- </a-card>
- </template>
- <script>
- import { commonMixin } from '@/utils/mixin'
- import { STable, VSelect } from '@/components'
- import rangeDate from '@/views/common/rangeDate.vue'
- import { hdExportExcel } from '@/libs/exportExcel'
- import reportModal from '@/views/common/reportModal.vue'
- import { reportStockPutList, reportStockPutCount, reportStockPutExport } from '@/api/reportData'
- export default {
- name: 'WarehousingOrderList',
- mixins: [commonMixin],
- components: { STable, VSelect, rangeDate, reportModal },
- data () {
- return {
- spinning: false,
- advanced: false,
- tableHeight: 0,
- showExport: false,
- queryParam: { // 查询条件
- time: [],
- beginDate: '',
- endDate: '',
- stockPutNo: '',
- supplierName: '',
- putBizType: undefined,
- sparePartsType: undefined
- },
- rules: {
- 'time': [{ required: true, message: '请选择完成日期', trigger: 'change' }]
- },
- disabled: false, // 查询、重置按钮是否可操作
- exportLoading: false,
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.disabled = true
- this.spinning = true
- const params = Object.assign(parameter, this.queryParam)
- delete params.time
- return reportStockPutList(params).then(res => {
- let data
- if (res.status == 200) {
- data = res.data
- this.getCount(params)
- 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
- return data
- })
- },
- totalData: null
- }
- },
- computed: {
- columns () {
- const _this = this
- const arr = [
- { title: '入库单号', dataIndex: 'stockPutNo', width: '21%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '入库开单日期', dataIndex: 'createDate', width: '13%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '单位名称', dataIndex: 'supplierName', width: '22%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
- { title: '入库数量', dataIndex: 'productTotalQty', width: '11%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- // { title: '入库金额', dataIndex: 'productTotalCost', width: '11%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '入库类型', dataIndex: 'putBizTypeDictValue', width: '11%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '散件入库子类型', dataIndex: 'sparePartsTypeDictValue', width: '11%', align: 'center', customRender: function (text) { return text || '--' } }
- ]
- if (this.$hasPermissions('M_warehousingOrderList_costPrice')) { // 成本价权限
- arr.splice(4, 0, { title: '入库金额', dataIndex: 'productTotalCost', width: '11%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } })
- }
- return arr
- }
- },
- methods: {
- // 盘点库存日期
- handleStock () {
- this.$message.info('无盘点区间的起始/终止时间,请自行选择日期区间查询!')
- },
- // 总计
- getCount (params) {
- reportStockPutCount(params).then(res => {
- if (res.status == 200 && res.data) {
- this.totalData = res.data
- } else {
- this.totalData = null
- }
- })
- },
- handleSearch () {
- const _this = this
- this.$refs.ruleForm.validate(valid => {
- if (valid) {
- _this.$refs.table.refresh(true)
- } else {
- return false
- }
- })
- },
- // 创建时间 change
- dateChange (date) {
- if (date[0] && date[1]) {
- this.queryParam.time = date
- } else {
- this.queryParam.time = []
- }
- this.queryParam.beginDate = date[0] || ''
- this.queryParam.endDate = date[1] || ''
- },
- // 重置
- resetSearchForm () {
- this.$refs.rangeDate.resetDate()
- this.queryParam.time = []
- this.queryParam.beginDate = ''
- this.queryParam.endDate = ''
- this.queryParam.stockPutNo = ''
- this.queryParam.supplierName = ''
- this.queryParam.putBizType = undefined
- this.queryParam.sparePartsType = undefined
- this.totalData = null
- this.$refs.ruleForm.resetFields()
- this.$refs.table.clearTable()
- },
- // 导出
- handleExport () {
- const _this = this
- this.$refs.ruleForm.validate(valid => {
- if (valid) {
- const params = _this.queryParam
- params.showCostFlag = this.$hasPermissions('B_warehousingOrderExport_costPrice')
- _this.showExport = true
- _this.exportLoading = true
- _this.spinning = true
- hdExportExcel(reportStockPutExport, params, '入库单报表', function () {
- _this.exportLoading = false
- _this.spinning = false
- })
- } else {
- return false
- }
- })
- },
- filterOption (input, option) {
- return (
- option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
- )
- },
- pageInit () {}
- },
- mounted () {
- if (!this.$store.state.app.isNewTab) { // 页签刷新时调用
- this.pageInit()
- this.resetSearchForm()
- }
- },
- activated () {
- // 如果是新页签打开,则重置当前页面
- if (this.$store.state.app.isNewTab) {
- this.pageInit()
- this.resetSearchForm()
- }
- },
- beforeRouteEnter (to, from, next) {
- next(vm => {})
- }
- }
- </script>
|