|
@@ -0,0 +1,239 @@
|
|
|
+<template>
|
|
|
+ <a-card :bordered="false" class="outboundOrderList-wrap">
|
|
|
+ <!-- 搜索条件 -->
|
|
|
+ <div class="table-page-search-wrapper">
|
|
|
+ <a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
|
|
|
+ <a-row :gutter="15">
|
|
|
+ <a-col :md="8" :sm="24">
|
|
|
+ <a-form-item label="审核时间">
|
|
|
+ <a-range-picker
|
|
|
+ style="width:100%"
|
|
|
+ id="outboundOrderList-creatTime"
|
|
|
+ :disabledDate="disabledDate"
|
|
|
+ v-model="time"
|
|
|
+ :format="dateFormat"
|
|
|
+ :placeholder="['开始时间', '结束时间']" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
+ <a-form-item label="客户名称">
|
|
|
+ <a-select
|
|
|
+ id="outboundOrderList-bundleName"
|
|
|
+ placeholder="请选择"
|
|
|
+ allowClear
|
|
|
+ v-model="queryParam.dataSourceNo"
|
|
|
+ :showSearch="true"
|
|
|
+ option-filter-prop="children"
|
|
|
+ :filter-option="filterOption">
|
|
|
+ <a-select-option v-for="item in brandData" :key="item.salesChannelNo" :value="item.salesChannelNo">{{ item.salesChannelName }}</a-select-option>
|
|
|
+ </a-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :md="5" :sm="24">
|
|
|
+ <a-form-item label="出库类型">
|
|
|
+ <v-select
|
|
|
+ v-model="queryParam.outType"
|
|
|
+ ref="outType"
|
|
|
+ id="outboundOrderList-outType"
|
|
|
+ code="PAYMENT_TYPE"
|
|
|
+ placeholder="请选择出库类型"
|
|
|
+ allowClear></v-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <template v-if="advanced">
|
|
|
+ <a-col :md="5" :sm="24">
|
|
|
+ <a-form-item label="单据状态">
|
|
|
+ <v-select
|
|
|
+ v-model="queryParam.billStatus"
|
|
|
+ ref="billStatus"
|
|
|
+ id="outboundOrderList-billStatus"
|
|
|
+ code="PAYMENT_TYPE"
|
|
|
+ placeholder="请选择单据状态"
|
|
|
+ allowClear></v-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ </template>
|
|
|
+ <a-col :md="5" :sm="24">
|
|
|
+ <a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="outboundOrderList-refresh">查询</a-button>
|
|
|
+ <a-button style="margin-left: 8px" @click="resetSearchForm" :disabled="disabled" id="outboundOrderList-reset">重置</a-button>
|
|
|
+ <a @click="advanced=!advanced" style="margin-left: 8px">
|
|
|
+ {{ advanced ? '收起' : '展开' }}
|
|
|
+ <a-icon :type="advanced ? 'up' : 'down'"/>
|
|
|
+ </a>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+ </a-form>
|
|
|
+ </div>
|
|
|
+ <!-- 列表 -->
|
|
|
+ <div style="margin-bottom: 15px">
|
|
|
+ <a-button type="primary" id="outboundOrder-export" :disabled="!hasSelected" :loading="loading" @click="handleOutbounds">
|
|
|
+ 批量出库
|
|
|
+ </a-button>
|
|
|
+ <span style="margin-left: 8px">
|
|
|
+ <template v-if="hasSelected">
|
|
|
+ {{ `已选 ${selectedRowKeys.length} 项` }}
|
|
|
+ </template>
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ <s-table
|
|
|
+ class="sTable"
|
|
|
+ ref="table"
|
|
|
+ size="default"
|
|
|
+ :row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
|
|
|
+ :rowKey="(record) => record.id"
|
|
|
+ :columns="columns"
|
|
|
+ :data="loadData"
|
|
|
+ :showPagination="false"
|
|
|
+ bordered>
|
|
|
+ <!-- 状态 -->
|
|
|
+ <template slot="state" slot-scope="text, record">
|
|
|
+ <span :class="[record.state == 1 ? 'green' : 'red']">{{ record.state == 1 ? '已出库' : '未出库' }}</span>
|
|
|
+ </template>
|
|
|
+ <!-- 操作 -->
|
|
|
+ <template slot="action" slot-scope="text, record">
|
|
|
+ <a-button size="small" type="primary" @click="handleOutbound(record)" id="outboundOrderList-out-btn">出库</a-button>
|
|
|
+ <a-button size="small" @click="handleDetail(record)" style="margin-left: 10px;" id="outboundOrderList-detail-btn">明细</a-button>
|
|
|
+ </template>
|
|
|
+ </s-table>
|
|
|
+ </a-card>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import moment from 'moment'
|
|
|
+// import { customerBundleDelayList, customerBundleExportDelay } from '@/api/FinancialManagement'
|
|
|
+import { STable, VSelect } from '@/components'
|
|
|
+export default {
|
|
|
+ components: { STable, VSelect },
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ advanced: false, // 高级搜索 展开/关闭
|
|
|
+ queryParam: { // 查询条件
|
|
|
+ bundleName: '', // 供应商名称
|
|
|
+ state: undefined // 状态
|
|
|
+ },
|
|
|
+ disabled: false, // 查询、重置按钮是否可操作
|
|
|
+ dateFormat: 'YYYY-MM-DD',
|
|
|
+ time: [], // 创建时间
|
|
|
+ brandData: [], // 客户 下拉数据
|
|
|
+ columns: [
|
|
|
+ { title: '序号', dataIndex: 'no', width: 100, align: 'center' },
|
|
|
+ { title: '创建时间', dataIndex: 'inventoryMoneys', width: 180, align: 'center' },
|
|
|
+ { title: '关联单号', dataIndex: 'productName', width: 200, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '客户名称', dataIndex: 'productBrand', width: 200, align: 'center', ellipsis: true, customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '总款数', dataIndex: 'productType', width: 200, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
|
+ { title: '总数量', dataIndex: 'inventoryNum', width: 180, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
|
+ { title: '总售价', dataIndex: 'totalPrice', width: 180, align: 'center', customRender: function (text) { return ((text || text == 0) ? ('¥' + text) : '--') } },
|
|
|
+ { title: '审核时间', dataIndex: 'authTime', width: 180, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '出库时间', dataIndex: 'outTime', width: 180, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '出库状态', scopedSlots: { customRender: 'state' }, width: 180, align: 'center' },
|
|
|
+ { title: '操作', scopedSlots: { customRender: 'action' }, width: 240, align: 'center' }
|
|
|
+ ],
|
|
|
+ selectedRowKeys: [], // Check here to configure the default column
|
|
|
+ loading: false,
|
|
|
+ // 加载数据方法 必须为 Promise 对象
|
|
|
+ loadData: parameter => {
|
|
|
+ this.disabled = true
|
|
|
+ // return customerBundleDelayList( 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
|
|
|
+ // return data
|
|
|
+ // })
|
|
|
+ const _this = this
|
|
|
+ return new Promise(function (resolve, reject) {
|
|
|
+ const data = {
|
|
|
+ pageNo: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ list: [
|
|
|
+ { id: '1', productNum: 'jgqp11111111111', productName: '产品1', productOldNum: 'jgqp111123545', productBrand: '箭冠品牌', productType: '产品分类1', inventoryNum: '5', inventoryMoney: '122' }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ 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
|
|
|
+ resolve(data)
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ hasSelected () {
|
|
|
+ return this.selectedRowKeys.length > 0
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ // 不可选日期
|
|
|
+ disabledDate (date, dateStrings) {
|
|
|
+ return date && date.valueOf() > Date.now()
|
|
|
+ },
|
|
|
+ filterOption (input, option) {
|
|
|
+ return (
|
|
|
+ option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
|
+ )
|
|
|
+ },
|
|
|
+ // 重置
|
|
|
+ resetSearchForm () {
|
|
|
+ this.queryParam.orderBundleNo = ''
|
|
|
+ this.queryParam.orderBundle.custMobile = ''
|
|
|
+ this.queryParam.bundleName = ''
|
|
|
+ this.queryParam.itemName = ''
|
|
|
+ this.oldTime = undefined
|
|
|
+ this.newTime = undefined
|
|
|
+ this.$refs.table.refresh(true)
|
|
|
+ },
|
|
|
+ // 详情
|
|
|
+ handleDetail (row) {
|
|
|
+ this.$router.push({ name: 'outboundOrderDetail', params: { id: row.id } })
|
|
|
+ },
|
|
|
+ // 单个出库
|
|
|
+ handleOutbound (row) {
|
|
|
+ this.$confirm({
|
|
|
+ title: '提升',
|
|
|
+ content: '确认要出库吗?',
|
|
|
+ onOk () {
|
|
|
+ console.log('OK')
|
|
|
+ },
|
|
|
+ onCancel () {
|
|
|
+ console.log('Cancel')
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 批量出库
|
|
|
+ handleOutbounds () {
|
|
|
+ this.loading = true
|
|
|
+ // ajax request after empty completing
|
|
|
+ setTimeout(() => {
|
|
|
+ this.loading = false
|
|
|
+ this.selectedRowKeys = []
|
|
|
+ }, 1000)
|
|
|
+ },
|
|
|
+ onSelectChange (selectedRowKeys) {
|
|
|
+ console.log('selectedRowKeys changed: ', selectedRowKeys)
|
|
|
+ this.selectedRowKeys = selectedRowKeys
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less">
|
|
|
+ .outboundOrderList-wrap{
|
|
|
+ .sTable{
|
|
|
+ margin-top: 20px;
|
|
|
+ table{
|
|
|
+ width: auto;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .red{
|
|
|
+ color: #ff0000;
|
|
|
+ }
|
|
|
+ .green{
|
|
|
+ color: #19be6b;
|
|
|
+ }
|
|
|
+ }
|
|
|
+</style>
|