123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- <template>
- <a-card size="small" :bordered="false" class="financialCollectionList-wrap">
- <a-spin :spinning="spinning" tip="Loading...">
- <!-- 标签页 -->
- <a-tabs type="card" default-active-key="ALL" @change="handleTabChange" class="financialCollectionList-tabs ">
- <a-tab-pane v-for="item in tabPaneData" :key="item.bizType">
- <span slot="tab">{{ item.bizName }}({{ item.countNum }})</span>
- </a-tab-pane>
- </a-tabs>
- <!-- 搜索条件 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
- <a-row :gutter="15">
- <a-col :md="6" :sm="24">
- <a-form-item label="收款单号"><a-input id="financialCollectionList-settleNo" v-model.trim="queryParam.settleNo" allowClear placeholder="请输入收款单号" /></a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="关联单号"><a-input id="financialCollectionList-bizNo" v-model.trim="queryParam.bizNo" allowClear placeholder="请输入关联单号" /></a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="商户名称">
- <a-input id="financialCollectionList-settleClientName" v-model.trim="queryParam.settleClientName" allowClear placeholder="请输入商户名称" />
- </a-form-item>
- </a-col>
- <template v-if="advanced">
- <a-col :md="6" :sm="24">
- <a-form-item label="单据状态">
- <v-select
- v-model="queryParam.billState"
- ref="settleState"
- id="financialCollectionList-settleState"
- code="BILL_STATUS"
- placeholder="请选择单据状态"
- allowClear
- ></v-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="审核时间">
- <rangeDate ref="rangeDate" @change="dateChange" />
- </a-form-item>
- </a-col>
- </template>
- <a-col :md="6" :sm="24">
- <span class="table-page-search-submitButtons">
- <a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="financialCollectionList-refresh">查询</a-button>
- <a-button style="margin-left: 8px" @click="resetSearchForm()" :disabled="disabled" id="financialCollectionList-reset">重置</a-button>
- <a @click="advanced = !advanced" style="margin-left: 8px">
- {{ advanced ? '收起' : '展开' }}
- <a-icon :type="advanced ? 'up' : 'down'" />
- </a>
- </span>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <!-- alert -->
- <a-alert type="info" showIcon style="margin-bottom:15px">
- <div slot="message">
- 共
- <strong>{{ totalData.count }}</strong>
- 条记录,应收金额合计
- <strong>¥{{ totalData.totalAmount }}</strong>
- ,其中已收金额
- <strong>¥{{ totalData.settledAmount }}</strong>
- ,待收金额
- <strong>¥{{ totalData.unsettleAmount }}</strong>
- </div>
- </a-alert>
- <div v-if="$hasPermissions('B_financialCollectionPl')" style="margin-bottom: 15px">
- <a-button type="primary" id="financialCollectionList-export" :loading="loading" @click="handleCollection">批量收款</a-button>
- <span style="margin-left: 8px" v-if="$hasPermissions('B_financialCollectionPl')">
- <template v-if="hasSelected">
- {{ `已选 ${selectedRowKeys.length} 项` }}
- </template>
- </span>
- </div>
- <!-- 列表 -->
- <s-table
- class="sTable"
- ref="table"
- size="default"
- :row-selection="$hasPermissions('B_financialCollectionPl') ? rowSelection : null"
- :rowKey="record => record.id"
- :columns="columns"
- :data="loadData"
- :scroll="{ x: 1660, y: tableHeight }"
- bordered
- >
- <!-- 操作 -->
- <template slot="action" slot-scope="text, record">
- <a-button
- size="small"
- type="link"
- class="button-info"
- v-if="record.settleState == 'SETTLED' && $hasPermissions('B_financialCollectionDetail')"
- @click="handleVoucher(record)"
- id="financialCollectionList-voucher-btn">凭证</a-button>
- <a-button
- size="small"
- type="link"
- :loading="loading"
- class="button-warning"
- v-if="record.settleState == 'UNSETTLE'&&record.satelliteFlag!=1 && $hasPermissions('B_financialCollectionSing')"
- @click="handleCollectionSing(record)"
- id="financialCollectionList-pay-btn">收款</a-button>
- <span v-if="(!(record.settleState == 'SETTLED') && !(record.settleState == 'UNSETTLE'&&record.satelliteFlag!=1))||(!$hasPermissions('B_financialCollectionSing') && !$hasPermissions('B_financialCollectionDetail'))||(record.settleState == 'SETTLED' && !$hasPermissions('B_financialCollectionDetail'))||(record.settleState == 'UNSETTLE'&&record.satelliteFlag!=1 && !$hasPermissions('B_financialCollectionSing'))">--</span>
- <!-- satelliteFlag为1,是卫星仓 -->
- </template>
- </s-table>
- </a-spin>
- <!-- 详情 -->
- <detail-modal :openModal="openModal" ref="detailModal" @close="openModal = false" />
- </a-card>
- </template>
- <script>
- import { STable, VSelect } from '@/components'
- import detailModal from './detailModal.vue'
- import rangeDate from '@/views/common/rangeDate.vue'
- import { settleReceiptQuery, queryByTypeSum, settleReceiptMoney, settleReceiptQuerySum } from '@/api/settleReceipt'
- export default {
- components: { STable, VSelect, detailModal, rangeDate },
- data () {
- return {
- spinning: false,
- advanced: false, // 高级搜索 展开/关闭
- disabled: false, // 查询、重置按钮是否可操作
- openModal: false, // 详情弹框
- tableHeight: 0,
- // 查询参数
- queryParam: {
- bizType: 'ALL',
- settleNo: '',
- bizNo: '',
- settleClientName: '',
- billState: '',
- auditBeginDate: '',
- auditEndDate: ''
- },
- // 总计
- totalData: {
- settledAmount: 0,
- totalAmount: 0,
- unsettleAmount: 0,
- count: 0
- },
- // 表头
- columns: [
- { title: '序号', dataIndex: 'no', width: 80, align: 'center' },
- { title: '收款单号', dataIndex: 'settleNo', width: 220, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '关联单号', dataIndex: 'bizNo', width: 220, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '商户名称', dataIndex: 'settleClientName', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '应收金额', dataIndex: 'totalAmount', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? ('¥' + text) : '--') } },
- { title: '已收金额', dataIndex: 'settledAmount', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? ('¥' + text) : '--') } },
- { title: '待收金额', dataIndex: 'unsettleAmount', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? ('¥' + text) : '--') } },
- { title: '收款类型', dataIndex: 'bizName', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '收款方式', dataIndex: 'settleStyleName', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '审核时间', dataIndex: 'auditTime', width: 160, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '收款时间', dataIndex: 'settleTime', width: 160, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '操作', scopedSlots: { customRender: 'action' }, width: 100, align: 'center', fixed: 'right' }
- ],
- selectedRowKeys: [], // Check here to configure the default column
- loading: false,
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.disabled = true
- if (this.tableHeight == 0) {
- this.tableHeight = window.innerHeight - 450
- }
- return settleReceiptQuery(Object.assign(parameter, this.queryParam)).then(res => {
- const 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.totalData.count = data.count
- // 查询总计
- this.settleReceiptQuerySum(Object.assign(parameter, this.queryParam))
- return data
- })
- },
- tabPaneData: []
- }
- },
- computed: {
- hasSelected () {
- return this.selectedRowKeys.length > 0
- },
- rowSelection () {
- if (this.$hasPermissions('B_financialCollectionPl')) {
- return {
- selectedRowKeys: this.selectedRowKeys,
- onChange: (selectedRowKeys, selectedRows) => {
- this.selectedRowKeys = selectedRowKeys
- },
- getCheckboxProps: record => ({
- props: {
- disabled: record.settleState == 'SETTLED'
- }
- })
- }
- } else {
- return null
- }
- }
- },
- beforeRouteEnter (to, from, next) {
- next(vm => {
- vm.queryByTypeSum()
- })
- },
- methods: {
- // 时间 change
- dateChange (date) {
- this.queryParam.auditBeginDate = date[0]
- this.queryParam.auditEndDate = date[1]
- },
- // 总计
- settleReceiptQuerySum (params) {
- settleReceiptQuerySum(params).then(res => {
- if (res.status == 200) {
- this.totalData = Object.assign(this.totalData, res.data)
- }
- })
- },
- // 获取类型
- queryByTypeSum () {
- queryByTypeSum({}).then(res => {
- if (res.data && res.status == 200) {
- this.tabPaneData = res.data
- this.queryParam.bizType = res.data[0].bizType
- }
- })
- },
- // 凭证弹框
- handleVoucher (row) {
- this.$refs.detailModal.getDetail(row.id)
- this.openModal = true
- },
- // 收款
- handleCollectionSing (row) {
- this.loading = true
- this.spinning = true
- settleReceiptMoney([row.id]).then(res => {
- this.loading = false
- if (res.status == 200) {
- this.$message.success(res.message)
- this.selectedRowKeys = []
- this.$refs.table.refresh()
- this.spinning = false
- } else {
- this.spinning = false
- }
- })
- },
- // 选择类型
- handleTabChange (key) {
- this.queryParam.bizType = key
- this.$refs.table.refresh(true)
- this.curBizType = key
- },
- // 批量收款
- handleCollection () {
- if (this.selectedRowKeys.length < 1) {
- this.$message.warning('请在列表勾选后再进行批量操作!')
- return
- }
- this.loading = true
- this.spinning = true
- settleReceiptMoney(this.selectedRowKeys).then(res => {
- this.loading = false
- if (res.status == 200) {
- this.$message.success(res.message)
- this.selectedRowKeys = []
- this.$refs.table.refresh()
- this.spinning = false
- } else {
- this.spinning = false
- }
- })
- },
- // 重置
- resetSearchForm () {
- if (this.advanced) {
- this.$refs.rangeDate.resetDate()
- }
- this.queryParam = {
- bizType: this.curBizType,
- settleNo: '',
- bizNo: '',
- settleClientName: '',
- billState: '',
- auditBeginDate: '',
- auditEndDate: ''
- }
- this.$refs.table.refresh(true)
- }
- }
- }
- </script>
- <style lang="less">
- .financialCollectionList-wrap {
- .sTable {
- margin-top: 15px;
- }
- .financialCollectionList-tabs {
- margin-bottom: 15px;
- }
- }
- </style>
|