|
@@ -0,0 +1,292 @@
|
|
|
|
+<template>
|
|
|
|
+ <a-card size="small" :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="6" :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-demanderName"
|
|
|
|
+ placeholder="请选择"
|
|
|
|
+ allowClear
|
|
|
|
+ v-model="queryParam.demanderName"
|
|
|
|
+ :showSearch="true"
|
|
|
|
+ option-filter-prop="children"
|
|
|
|
+ :filter-option="filterOption">
|
|
|
|
+ <a-select-option v-for="item in custAllList" :key="item.customerSn" :value="item.customerName">{{ item.customerName }}</a-select-option>
|
|
|
|
+ </a-select>
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
|
+ <a-form-item label="出库类型">
|
|
|
|
+ <v-select
|
|
|
|
+ v-model="queryParam.outBizType"
|
|
|
|
+ ref="outBizType"
|
|
|
|
+ id="outboundOrderList-outBizType"
|
|
|
|
+ code="OUT_STOCK_TYPE"
|
|
|
|
+ placeholder="请选择出库类型"
|
|
|
|
+ allowClear></v-select>
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <template v-if="advanced">
|
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
|
+ <a-form-item label="单据状态">
|
|
|
|
+ <v-select
|
|
|
|
+ v-model="queryParam.state"
|
|
|
|
+ ref="state"
|
|
|
|
+ id="outboundOrderList-state"
|
|
|
|
+ code="OUT_STATE"
|
|
|
|
+ placeholder="请选择单据状态"
|
|
|
|
+ allowClear></v-select>
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ </template>
|
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
|
+ <a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="outboundOrderList-refresh" style="margin-bottom: 15px;">查询</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="rowSelection"
|
|
|
|
+ :rowKey="(record) => record.id"
|
|
|
|
+ :columns="columns"
|
|
|
|
+ :data="loadData"
|
|
|
|
+ :showPagination="false"
|
|
|
|
+ :scroll="{ x: 1710 }"
|
|
|
|
+ bordered> -->
|
|
|
|
+ <s-table
|
|
|
|
+ class="sTable"
|
|
|
|
+ ref="table"
|
|
|
|
+ size="default"
|
|
|
|
+ :rowKey="(record) => record.id"
|
|
|
|
+ :columns="columns"
|
|
|
|
+ :data="loadData"
|
|
|
|
+ :scroll="{ x: 1720, y: tableHeight }"
|
|
|
|
+ bordered>
|
|
|
|
+ <!-- 操作 -->
|
|
|
|
+ <template slot="action" slot-scope="text, record">
|
|
|
|
+ <a-button
|
|
|
|
+ size="small"
|
|
|
|
+ type="link"
|
|
|
|
+ v-if="record.state=='WAIT'"
|
|
|
|
+ class="button-primary"
|
|
|
|
+ @click="handleOutbound(record)"
|
|
|
|
+ id="outboundOrderList-out-btn">出库</a-button>
|
|
|
|
+ <a-button
|
|
|
|
+ size="small"
|
|
|
|
+ type="link"
|
|
|
|
+ class="button-success"
|
|
|
|
+ @click="handleDetail(record)"
|
|
|
|
+ id="outboundOrderList-detail-btn">详情</a-button>
|
|
|
|
+ </template>
|
|
|
|
+ </s-table>
|
|
|
|
+ </a-card>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+import moment from 'moment'
|
|
|
|
+import { STable, VSelect } from '@/components'
|
|
|
|
+import { custAllList } from '@/api/customer'
|
|
|
|
+import { stockOutList, stockOutOut } from '@/api/stockOut'
|
|
|
|
+export default {
|
|
|
|
+ components: { STable, VSelect },
|
|
|
|
+ data () {
|
|
|
|
+ return {
|
|
|
|
+ advanced: false, // 高级搜索 展开/关闭
|
|
|
|
+ tableHeight: 0, // 表格高度
|
|
|
|
+ queryParam: { // 查询条件
|
|
|
|
+ demanderName: undefined, // 客户名称
|
|
|
|
+ outBizType: undefined, // 出库类型
|
|
|
|
+ state: undefined // 状态
|
|
|
|
+ },
|
|
|
|
+ disabled: false, // 查询、重置按钮是否可操作
|
|
|
|
+ dateFormat: 'YYYY-MM-DD',
|
|
|
|
+ time: [], // 审核时间
|
|
|
|
+ custAllList: [], // 客户下拉数据
|
|
|
|
+ columns: [
|
|
|
|
+ { title: '序号', dataIndex: 'no', width: 80, align: 'center' },
|
|
|
|
+ { title: '创建时间', dataIndex: 'createDate', width: 160, align: 'center' },
|
|
|
|
+ { title: '关联单号', dataIndex: 'outBizNo', width: 220, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
+ { title: '出库类型', dataIndex: 'outBizTypeDictValue', width: 140, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
+ { title: '客户名称', dataIndex: 'demanderName', align: 'center', ellipsis: true, customRender: function (text) { return text || '--' } },
|
|
|
|
+ { title: '总款数', dataIndex: 'productTotalCategory', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
|
|
+ { title: '总数量', dataIndex: 'productTotalQty', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
|
|
+ { title: '总售价', dataIndex: 'productTotalPrice', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
|
|
+ { title: '审核时间', dataIndex: 'auditTime', width: 160, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
+ { title: '出库时间', dataIndex: 'outTime', width: 160, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
+ { title: '出库状态', dataIndex: 'stateDictValue', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
+ { title: '操作', scopedSlots: { customRender: 'action' }, width: 140, 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 - 260
|
|
|
|
+ }
|
|
|
|
+ // 审核时间
|
|
|
|
+ if (this.time && this.time.length > 0) {
|
|
|
|
+ this.queryParam.beginDate = moment(this.time[0]).format(this.dateFormat)
|
|
|
|
+ this.queryParam.endDate = moment(this.time[1]).format(this.dateFormat)
|
|
|
|
+ } else {
|
|
|
|
+ this.queryParam.beginDate = undefined
|
|
|
|
+ this.queryParam.endDate = undefined
|
|
|
|
+ }
|
|
|
|
+ return stockOutList(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
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ computed: {
|
|
|
|
+ hasSelected () {
|
|
|
|
+ return this.selectedRowKeys.length > 0
|
|
|
|
+ },
|
|
|
|
+ rowSelection () {
|
|
|
|
+ return {
|
|
|
|
+ selectedRowKeys: this.selectedRowKeys,
|
|
|
|
+ onChange: (selectedRowKeys, selectedRows) => {
|
|
|
|
+ this.onSelectChange(selectedRowKeys)
|
|
|
|
+ },
|
|
|
|
+ getCheckboxProps: record => ({
|
|
|
|
+ props: {
|
|
|
|
+ disabled: record.state == 'FINISH' // Column configuration not to be checked
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ 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.demanderName = undefined
|
|
|
|
+ this.queryParam.outBizType = undefined
|
|
|
|
+ this.queryParam.state = undefined
|
|
|
|
+ this.time = []
|
|
|
|
+ this.$refs.table.refresh(true)
|
|
|
|
+ },
|
|
|
|
+ // 详情
|
|
|
|
+ handleDetail (row) {
|
|
|
|
+ // 根据出库类型跳转对应页面
|
|
|
|
+ if (row.outBizType == 'PURCHASE_RETURN') { // 采购退货
|
|
|
|
+ this.$router.push({ path: `/purchasingManagement/purchaseReturn/detail/${row.outBizSn}` })
|
|
|
|
+ } else if (row.outBizType == 'SPARE_PARTS_RETURN') { // 散件退货
|
|
|
|
+ this.$message.warning('该出库类型对应页面未开发')
|
|
|
|
+ // this.$router.push({ path: `/purchasingManagement/purchaseReturn/detail/${row.outBizSn}` })
|
|
|
|
+ } else if (row.outBizType == 'SALES') { // 出库
|
|
|
|
+ this.$router.push({ path: `/salesManagement/salesQuery/detail/${row.outBizSn}` })
|
|
|
|
+ } else if (row.outBizType == 'DISPATCH_DEDUCT') { // 急件冲减
|
|
|
|
+ this.$router.push({ path: `/salesManagement/urgentItemsOffset/detail/${row.outBizSn}` })
|
|
|
|
+ } else if (row.outBizType == 'SHOP_CALL_OUT') { // 店内调出
|
|
|
|
+ this.$router.push({ path: `/allocationManagement/storeTransferOut/detail/${row.outBizSn}` })
|
|
|
|
+ } else if (row.outBizType == 'CHECK_ORDER_OUT') { // 库存盘点盘亏
|
|
|
|
+ this.$message.warning('该出库类型对应页面未开发')
|
|
|
|
+ // this.$router.push({ path: `/purchasingManagement/purchaseReturn/detail/${row.outBizSn}` })
|
|
|
|
+ } else if (row.outBizType == 'LINKAGE_CALL_OUT') { // 连锁调出
|
|
|
|
+ this.$message.warning('该出库类型对应页面未开发')
|
|
|
|
+ // this.$router.push({ path: `/purchasingManagement/purchaseReturn/detail/${row.outBizSn}` })
|
|
|
|
+ } else if (row.outBizType == 'WAREHOUSE_CALL_OUT') { // 仓库调出
|
|
|
|
+ this.$router.push({ path: `/allocationManagement/warehouseAllocation/detail/${row.outBizSn}` })
|
|
|
|
+ } else {
|
|
|
|
+ this.$message.warning('出库类型未知')
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ // 单个出库
|
|
|
|
+ handleOutbound (row) {
|
|
|
|
+ const _this = this
|
|
|
|
+ this.$confirm({
|
|
|
|
+ title: '提示',
|
|
|
|
+ content: '确认要出库吗?',
|
|
|
|
+ centered: true,
|
|
|
|
+ onOk () {
|
|
|
|
+ stockOutOut(Object.assign(row, { outStockEnum: row.outBizType })).then(res => {
|
|
|
|
+ if (res.status == 200) {
|
|
|
|
+ _this.$message.success(res.message)
|
|
|
|
+ _this.$refs.table.refresh()
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 批量出库
|
|
|
|
+ handleOutbounds () {
|
|
|
|
+ if (this.selectedRowKeys.length < 1) {
|
|
|
|
+ this.$message.warning('请在列表勾选后再进行批量操作!')
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ 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
|
|
|
|
+ },
|
|
|
|
+ // 客户无分页列表数据
|
|
|
|
+ getCustAllList () {
|
|
|
|
+ const _this = this
|
|
|
|
+ custAllList().then(res => {
|
|
|
|
+ if (res.status == 200) {
|
|
|
|
+ _this.custAllList = res.data || []
|
|
|
|
+ } else {
|
|
|
|
+ _this.custAllList = []
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ beforeRouteEnter (to, from, next) {
|
|
|
|
+ next(vm => {
|
|
|
|
+ vm.getCustAllList()
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+</script>
|