<template>
|
<div>
|
<a-card :bordered="false" :bodyStyle="tstyle">
|
|
<div class="table-page-search-wrapper">
|
<a-form layout="inline">
|
<a-row :gutter="48">
|
<a-col :md="8" :sm="24">
|
<a-form-item label="单据编号">
|
<a-input v-model="queryParam.orderNo" allow-clear placeholder="请输入单据编号"/>
|
</a-form-item>
|
</a-col>
|
<a-col :md="8" :sm="24">
|
<a-form-item label="单据状态">
|
<a-select :allowClear="true" style="width: 100%" v-model="queryParam.orderStatusEnum" placeholder="请选择单据状态">
|
<a-select-option v-for="(item,index) in orderStatusEnumData" :key="index" :value="item.code">{{ item.name }}</a-select-option>
|
</a-select>
|
</a-form-item>
|
</a-col>
|
<template v-if="advanced">
|
<a-col :md="8" :sm="24">
|
<a-form-item label="目标仓库">
|
<a-input v-model="queryParam.areaName" allow-clear placeholder="请输入目标仓库"/>
|
</a-form-item>
|
</a-col>
|
|
</template>
|
|
<a-col :md="8" :sm="24" >
|
<span class="table-page-search-submitButtons">
|
<a-button type="primary" @click="$refs.table.refresh(true)" >查询</a-button>
|
<a-button style="margin-left: 8px" @click="() => queryParam = {}">重置</a-button>
|
<a @click="toggleAdvanced" style="margin-left: 8px"> {{ advanced ? '收起' : '展开' }}
|
<a-icon :type="advanced ? 'up' : 'down'"/>
|
</a>
|
</span>
|
</a-col>
|
|
</a-row>
|
</a-form>
|
</div>
|
</a-card>
|
<a-card :bordered="false">
|
<s-table
|
ref="table"
|
:columns="columns"
|
:data="loadData"
|
:alert="true"
|
:rowKey="(record) => record.id"
|
:pageSize="5"
|
:pageSizeOptions="['5','10','20','30']"
|
:rowSelection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
|
>
|
<template class="table-operator" slot="operator" >
|
<a-button type="primary" icon="plus" @click="onNew">新增销售退库</a-button>
|
<a-button type="danger" icon="step-forward" :disabled="!selectedRowKeys.length" @click="onMulDistribute">下发</a-button>
|
</template>
|
<template slot="linkSlot" slot-scope="text,record">
|
<a @click="onViewDetail(record)">{{text}}</a>
|
</template>
|
<span slot="orderStatusEnumscopedSlots" slot-scope="text">
|
<a-tag :color="text===1?'gray':(text===2?'#0000ff':(text===3?'#7fff00':'#deb887'))">{{ 'order_status' | dictType(text) }}</a-tag>
|
</span>
|
<span slot="action" slot-scope="text, record">
|
<a @click="onEdit(record)">编辑</a>
|
<a-divider type="vertical" />
|
<a @click="onDistribute(record)">下发</a>
|
<a-divider type="vertical" />
|
<a-popconfirm placement="topRight" title="确认删除?" @confirm="() => SalesStockReturnOrderDelete(record)">
|
<a>删除</a>
|
</a-popconfirm>
|
</span>
|
</s-table>
|
<info-block :query-id="infoId" v-if="infoId" :order-no="infoOrderNo" @callback="infoCallback" />
|
<add-form ref="addForm" :type="formType" @ok="handleOk" />
|
</a-card>
|
</div>
|
</template>
|
<script>
|
import { STable } from '@/components'
|
import { SalesStockReturnOrderPage, SalesStockReturnOrderDelete, SalesStockReturnOrderMulDistribute } from '@/api/modular/main/SalesStockReturnOrderManage'
|
import addForm from './addForm.vue'
|
import infoBlock from './infoBlock.vue'
|
export default {
|
components: {
|
STable,
|
addForm,
|
infoBlock
|
},
|
data () {
|
return {
|
advanced: false, // 高级搜索 展开/关闭
|
queryParam: {},
|
selectOptions:{
|
largeCategories:[],
|
subclasses:[]
|
},
|
columns: [
|
{
|
title: '单据编号',
|
align: 'center',
|
dataIndex: 'orderNo',
|
scopedSlots: { customRender: 'linkSlot' }
|
},
|
{
|
title: '单据数量',
|
align: 'center',
|
dataIndex: 'orderQuantity'
|
},
|
{
|
title: '目标仓库',
|
align: 'center',
|
dataIndex: 'areaName'
|
},
|
{
|
title: '退货方',
|
align: 'center',
|
dataIndex: 'returnGoods'
|
},
|
{
|
title: '编号',
|
align: 'center',
|
dataIndex: 'returnGoodsOrderNo'
|
},
|
{
|
title: '销售单据',
|
align: 'center',
|
dataIndex: 'saleOrderNo'
|
},
|
{
|
title: '发货单据',
|
align: 'center',
|
dataIndex: 'dispatchedOrderOrderNo'
|
},
|
{
|
title: '单据状态',
|
align: 'center',
|
dataIndex: 'orderStatusEnum',
|
scopedSlots: { customRender: 'orderStatusEnumscopedSlots' }
|
},
|
{
|
title: '操作',
|
width: '150px',
|
dataIndex: 'action',
|
scopedSlots: { customRender: 'action' }
|
}
|
],
|
tstyle: { 'padding-bottom': '0px', 'margin-bottom': '10px' },
|
// 加载数据方法 必须为 Promise 对象
|
loadData: parameter => {
|
return SalesStockReturnOrderPage(Object.assign(parameter, this.queryParam)).then((res) => {
|
let _arr = res.data.rows || []
|
if (_arr.length>0){
|
this.onViewDetail(_arr[0],true)
|
}
|
this.selectedRowKeys = []
|
return res.data
|
})
|
},
|
orderStatusEnumData: [],
|
selectedRowKeys: [],
|
infoId:null,
|
infoOrderNo:'',
|
formType:''
|
}
|
},
|
created () {
|
const orderStatusEnumOption = this.$options
|
this.orderStatusEnumData = orderStatusEnumOption.filters['dictData']('order_status')
|
},
|
methods: {
|
onViewDetail(obj,mainRefresh=false){
|
if (this.infoId===obj.id && mainRefresh===false) {
|
this.infoId = null
|
this.infoOrderNo = ''
|
} else {
|
this.infoId = obj.id;
|
this.infoOrderNo = obj.orderNo
|
}
|
},
|
onNew(){
|
this.formType = 'add'
|
this.$refs.addForm.init()
|
},
|
onEdit(obj){
|
this.formType = 'modify'
|
this.$refs.addForm.init(obj)
|
},
|
clearInfo(){
|
this.infoId = null
|
this.infoOrderNo = ''
|
},
|
/**
|
* 查询参数组装
|
*/
|
switchingDate () {
|
const obj = JSON.parse(JSON.stringify(this.queryParam))
|
return obj
|
},
|
SalesStockReturnOrderDelete (record) {
|
SalesStockReturnOrderDelete(record).then((res) => {
|
if (res.success) {
|
this.$message.success('删除成功')
|
if (this.infoId && record.id) {
|
this.clearInfo()
|
}
|
this.$refs.table.refresh()
|
} else {
|
this.$message.error('删除失败') // + res.message
|
}
|
})
|
},
|
toggleAdvanced () {
|
this.advanced = !this.advanced
|
},
|
handleOk () {
|
if (this.formType==='modify'){
|
this.infoId = null
|
this.$nextTick(()=>{
|
this.$refs.table.refresh()
|
})
|
} else {
|
this.$refs.table.refresh()
|
}
|
},
|
infoCallback(){
|
this.$refs.table.refresh()
|
},
|
onSelectChange (selectedRowKeys, selectedRows) {
|
this.selectedRowKeys = selectedRowKeys
|
},
|
onMulDistribute(){
|
this.dealDistribute(this.selectedRowKeys)
|
},
|
onDistribute(obj){
|
this.dealDistribute([obj.id])
|
},
|
dealDistribute(ids){
|
this.$confirm({
|
title: '确定要进行下发操作吗?',
|
okText: '确定',
|
okType: 'danger',
|
cancelText: '取消',
|
onOk:()=>{
|
this.handleDistribute(ids,(f)=>{
|
if (f) {
|
this.$refs.table.refresh()
|
}
|
})
|
}
|
});
|
},
|
handleDistribute(ids,callback){
|
this.$loading.show()
|
SalesStockReturnOrderMulDistribute(ids).then(()=>{
|
this.$loading.hide()
|
callback(true)
|
}).catch(()=>{
|
this.$loading.hide()
|
callback(false)
|
})
|
}
|
}
|
}
|
</script>
|
<style lang="less">
|
.table-operator {
|
margin-bottom: 18px;
|
}
|
button {
|
margin-right: 8px;
|
}
|
</style>
|