123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348 |
- <template>
- <div class="salesDetail-wrap" :style="{paddingBottom:hideFooter?'0px':'45px'}">
- <a-spin :spinning="spinning" tip="Loading...">
- <a-page-header :ghost="false" :backIcon="false" class="salesDetail-cont">
- <template slot="subTitle">
- <a href="javascript:;" @click="handleBack"><a-icon type="left" /> 返回列表</a>
- </template>
- </a-page-header>
- <a-card size="small" :bordered="false" class="pages-wrap">
- <!-- 查询 -->
- <div class="table-page-search-wrapper" ref="searchbox">
- <div style="display: flex;justify-content: space-between;align-items: center;">
- <div style="flex-grow: 1;width: 60%;">
- <a-form layout="inline" @keyup.enter.native="searchTable">
- <a-row :gutter="15" type="flex">
- <a-col flex="300px">
- <a-form-item label="促销名称/简称">
- <a-input v-model.trim="queryParam.promotionDescription" allowClear placeholder="请输入促销名称/简称"/>
- </a-form-item>
- </a-col>
- <a-col flex="300px">
- <a-form-item label="费用类型">
- <v-select
- v-model="queryParam.convertExpenseAccountType"
- code="CONVERT_EXPENSE_ACCOUNT_TYPE"
- placeholder="请选择费用类型"
- allowClear></v-select>
- </a-form-item>
- </a-col>
- <a-col flex="300px">
- <a-form-item label="客户名称">
- <dealerSubareaScopeList ref="dealerSubareaScopeList" @change="custChange" />
- </a-form-item>
- </a-col>
- <a-col flex="300px">
- <a-form-item label="销售单号">
- <a-input v-model.trim="queryParam.salesBillNo" allowClear placeholder="请输入销售单号"/>
- </a-form-item>
- </a-col>
- <a-col flex="300px">
- <a-form-item label="规则简称">
- <a-input v-model.trim="queryParam.promotionRuleDescription" allowClear placeholder="请输入规则简称"/>
- </a-form-item>
- </a-col>
- <a-col flex="150px">
- <a-button type="primary" :disabled="disabled" @click="searchForm">查询</a-button>
- <a-button style="margin-left: 10px" :disabled="disabled" @click="resetSearchForm()">重置</a-button>
- </a-col>
- </a-row>
- </a-form>
- </div>
- </div>
- </div>
- <!-- 产品列表 -->
- <div style="padding:0 0 5px;">
- <span>
- 已选 <template v-if="rowSelectionInfo && rowSelectionInfo.selectedRowKeys.length>0">{{ rowSelectionInfo.selectedRowKeys.length }}</template><template v-else>0</template> 项
- </span>
- </div>
- <div>
- <s-table
- class="sTable fixPagination"
- ref="table"
- :style="{ height: pageHeight+67+'px' }"
- size="small"
- :rowKey="(record) => record.no"
- rowKeyName="no"
- :columns="columns"
- :row-selection="{ columnWidth: 40, getCheckboxProps: record => ({ props: { disabled: curExpenseAccountType ? record.convertExpenseAccountType != curExpenseAccountType : false } }) }"
- @rowSelection="rowSelectionFun"
- :data="loadData"
- :scroll="{ y: pageHeight }"
- :defaultLoadData="false"
- bordered>
- <!-- 操作 -->
- <template slot="action" slot-scope="text, record">
- <div>
- <a-button
- size="small"
- type="link"
- class="button-warning"
- @click="handleSave(record)"
- >转费用报销单</a-button>
- </div>
- </template>
- </s-table>
- </div>
- </a-card>
- </a-spin>
- <div class="affix-cont" :style="{padding:hideFooter?0:'7px 0 4px'}">
- <a-button
- style="width: 100px;"
- type="primary"
- class="button-info"
- @click="handleView()"
- >
- 查看
- </a-button>
- <a-button
- type="primary"
- :disabled="spinning"
- style="width: 100px;margin: 0 20px;"
- @click="handleSave()"
- >
- 提交
- </a-button>
- </div>
- <!-- 新增费用单 -->
- <baseDataModal ref="expenseModal" @expenseSaveOk="expenseSaveOk" :show="openBaseModal" @close="openBaseModal=false"></baseDataModal>
- <!-- 查看已选费用单 -->
- <viewSelectModal ref="viewModal" :openModal="showViewModal" @close="showViewModal=false"></viewSelectModal>
- </div>
- </template>
- <script>
- import { commonMixin } from '@/utils/mixin'
- import moment from 'moment'
- import { STable, VSelect } from '@/components'
- import dealerSubareaScopeList from '@/views/common/dealerSubareaScopeList.vue'
- import baseDataModal from '@/views/expenseManagement/expenseReimbursement/baseDataModal.vue'
- import viewSelectModal from './viewSelectModal.vue'
- import { salesConvertExpenseList, expenseAccountSave, queryBatchCreateBySalesBillSn } from '@/api/salesNew'
- export default {
- name: 'WaitCostOrder',
- mixins: [commonMixin],
- components: { STable, VSelect, dealerSubareaScopeList, baseDataModal, viewSelectModal },
- data () {
- return {
- spinning: false,
- disabled: false,
- hideFooter: false,
- openBaseModal: false, // 费用弹框
- fromRouter: '',
- authCode: '',
- queryParam: {
- promotionDescription: '',
- convertExpenseAccountType: '',
- salesBillNo: '',
- promotionRuleDescription: '',
- buyerName: ''
- },
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.disabled = true
- this.spinning = true
- delete parameter.tableId
- delete parameter.index
- this.getPageHeight()
- return salesConvertExpenseList(Object.assign(parameter, this.queryParam)).then(res => {
- let data
- if (res.status == 200) {
- data = res.data
- const no = (data.pageNo - 1) * data.pageSize
- data.list.forEach((con, i) => {
- con.no = no + i + 1
- })
- this.disabled = false
- }
- this.spinning = false
- return data
- })
- },
- rowSelectionInfo: null,
- curExpenseAccountType: '',
- pageHeight: 300,
- showViewModal: false,
- isSearch: false
- }
- },
- computed: {
- hasSelect () {
- return this.rowSelectionInfo && this.rowSelectionInfo.selectedRowKeys.length
- },
- columns () {
- const _this = this
- const arr = [
- { title: '序号', dataIndex: 'no', width: '5%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '销售单号', dataIndex: 'salesBillNo', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '客户名称', dataIndex: 'buyerName', width: '16%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
- { title: '费用类型', dataIndex: 'convertExpenseAccountTypeDictValue', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '待转金额', dataIndex: 'expense', width: '8%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
- { title: '促销名称', dataIndex: 'promotionTitle', width: '17%', align: 'left', customRender: function (text) { return text || '--' } },
- { title: '促销简称', dataIndex: 'promotionDescription', width: '17%', align: 'left', customRender: function (text) { return text || '--' }, sorter: true },
- { title: '规则简称', dataIndex: 'promotionRuleDescription', width: '15%', align: 'left', customRender: function (text) { return text || '--' }, sorter: true },
- { title: '促销类型', dataIndex: 'promotionRuleTypeDictValue', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '操作', scopedSlots: { customRender: 'action' }, width: '8%', align: 'center' }
- ]
- return arr
- }
- },
- methods: {
- // 返回
- handleBack () {
- this.$router.push({ name: 'salesQueryNewList' })
- },
- getPageHeight () {
- this.pageHeight = window.innerHeight - 290 - (this.$refs.searchbox ? this.$refs.searchbox.clientHeight : 0)
- },
- // 表格选中项
- rowSelectionFun (obj) {
- console.log(obj)
- this.rowSelectionInfo = obj || null
- if (obj.selectedRows) {
- this.curExpenseAccountType = obj.selectedRows && obj.selectedRows[0] && obj.selectedRows[0]['convertExpenseAccountType'] || ''
- if (obj.selectedRows.length <= 1) {
- if (!this.isSearch) {
- this.$refs.table.refresh()
- }
- this.isSearch = false
- } else {
- // 全选
- const ret = obj.selectedRows.filter(item => item.convertExpenseAccountType == this.curExpenseAccountType)
- if (ret.length != obj.selectedRows.length) {
- this.$message.warning('所选数据费用类型不一致!')
- this.$refs.table.clearSelected()
- }
- }
- }
- },
- custChange (val) {
- this.queryParam.buyerName = val.name || ''
- },
- // 提交
- handleSave (row) {
- const _this = this
- const salesPromoSnList = []
- // 单个转
- if (row) {
- salesPromoSnList.push(row.salesPromoSn)
- } else {
- const slen = _this.rowSelectionInfo.selectedRowKeys.length
- if (!_this.rowSelectionInfo || (_this.rowSelectionInfo && slen < 1)) {
- _this.$message.warning('请在列表勾选后再进行批量操作!')
- return
- }
- // 批量转
- this.rowSelectionInfo.selectedRows.map(item => {
- salesPromoSnList.push(item.salesPromoSn)
- })
- }
- this.handleExpense(salesPromoSnList)
- },
- // 转费用单
- async handleExpense (snList) {
- const _this = this
- const hasExpense = await queryBatchCreateBySalesBillSn({ salesPromoSnList: snList }).then(res => res.data || [])
- let result = null
- for (const key in hasExpense) {
- result = hasExpense[key]
- }
- _this.expenseSave(result)
- },
- // 转费用单
- expenseSave (data) {
- console.log(data)
- if (data) {
- this.openBaseModal = true
- this.$refs.expenseModal.setDetail(data, 'sales')
- }
- },
- expenseSaveOk (params) {
- expenseAccountSave(params).then(res => {
- if (res.status == 200) {
- this.$message.info(res.message)
- this.openBaseModal = false
- this.searchForm()
- this.$router.push({ name: 'expenseReimbursementEdit', params: { sn: res.data.expenseAccountSn } })
- }
- })
- },
- // 查看
- handleView () {
- if (!this.hasSelect) {
- this.$message.warning('请先勾选!')
- return
- }
- this.showViewModal = true
- this.$refs.viewModal.setData(this.rowSelectionInfo && this.rowSelectionInfo.selectedRows)
- },
- // 重置
- resetSearchForm () {
- this.isSearch = true
- this.queryParam.buyerName = undefined
- this.queryParam.convertExpenseAccountType = undefined
- this.queryParam.salesBillNo = ''
- this.queryParam.promotionDescription = ''
- this.queryParam.promotionRuleDescription = ''
- this.$refs.dealerSubareaScopeList.resetForm()
- this.$refs.table.refresh(true)
- this.$refs.table.clearSelected()
- },
- searchForm () {
- this.isSearch = true
- this.$refs.table.refresh(true)
- this.$refs.table.clearSelected()
- }
- },
- activated () {
- // 如果是新页签打开或者进入新的子页(例:存在列表第2条数据编辑页页签时再打开第4条数据的编辑页),则重置当前页面
- if (this.$store.state.app.isNewTab || !this.$store.state.app.isNewSubTab) {
- this.resetSearchForm()
- }
- },
- beforeRouteEnter (to, from, next) {
- next(vm => {
- vm.fromRouter = from
- vm.authCode = to.meta.permission
- })
- }
- }
- </script>
- <style lang="less">
- .salesDetail-wrap{
- position: relative;
- height: 100%;
- padding-bottom: 45px;
- box-sizing: border-box;
- >.ant-spin-nested-loading{
- overflow-y: auto;
- height: 100%;
- }
- .salesDetail-cont{
- margin-bottom: 6px;
- }
- .active-title{
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 10px;
- background: #f3f8fa;
- }
- .flexBox{
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .footer-cont{
- margin-top: 5px;
- text-align: center;
- }
- .redStyle{
- font-weight: bold;
- color: red;
- }
- }
- </style>
|