<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-select :allowClear="true" style="width: 100%" v-model="queryParam.orderLargeCategory" placeholder="请选择..." @change="onLargeCategorySelect">
|
<a-select-option v-for="(item,index) in selectOptions.largeCategories" :key="index" :value="item.orderTypeId">{{ item.orderTypeName }}</a-select-option>
|
</a-select>
|
</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.orderSubclass" placeholder="请选择...">
|
<a-select-option v-for="(item,index) in selectOptions.subclasses" :key="index" :value="item.orderTypeId">{{ item.orderTypeName }}</a-select-option>
|
</a-select>
|
</a-form-item>
|
</a-col> -->
|
<a-col :md="8" :sm="24">
|
<a-form-item label="目标仓库">
|
<a-input v-model="queryParam.areaName" allow-clear placeholder="请输入目标仓库"/>
|
</a-form-item>
|
</a-col>
|
<a-col :md="8" :sm="24">
|
<a-form-item label="发货人">
|
<a-input v-model="queryParam.dispatchedWorker" allow-clear placeholder="请输入发货人"/>
|
</a-form-item>
|
</a-col>
|
<a-col :md="8" :sm="24">
|
<a-form-item label="收货地址">
|
<a-input v-model="queryParam.shippingAddress" allow-clear placeholder="请输入收货地址"/>
|
</a-form-item>
|
</a-col>
|
<a-col :md="8" :sm="24">
|
<a-form-item label="客户">
|
<a-input v-model="queryParam.customer" 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']"
|
>
|
<template class="table-operator" slot="operator" >
|
<a-button type="primary" icon="plus" @click="$refs.addForm.add()">新增发货出库</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="$refs.editForm.edit(record)">编辑</a>
|
<a-divider type="vertical" />
|
<a-popconfirm placement="topRight" title="确认删除?" @confirm="() => DispatchedOutboundOrderDelete(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" @ok="handleOk" />
|
<edit-form ref="editForm" @ok="handleOk" />
|
</a-card>
|
</div>
|
</template>
|
<script>
|
import { STable } from '@/components'
|
import {
|
DispatchedOutboundOrderPage,
|
DispatchedOutboundOrderDelete ,
|
DispatchedOutboundOrderLargeCategories,
|
DispatchedOutboundOrderSubclass
|
} from '@/api/modular/main/DispatchedOutboundOrderManage'
|
import addForm from './addForm.vue'
|
import editForm from './editForm.vue'
|
import infoBlock from './infoBlock.vue'
|
export default {
|
components: {
|
STable,
|
addForm,
|
editForm,
|
infoBlock
|
},
|
data () {
|
return {
|
advanced: false, // 高级搜索 展开/关闭
|
queryParam: {},
|
selectOptions:{
|
largeCategories:[],
|
subclasses:[]
|
},
|
columns: [
|
{
|
title: '发货单号',
|
align: 'center',
|
dataIndex: 'orderNo',
|
scopedSlots: { customRender: 'linkSlot' }
|
},
|
// {
|
// title: '单据大类',
|
// align: 'center',
|
// dataIndex: 'orderLargeCategory',
|
// //scopedSlots: { customRender: 'orderLargeCategoryscopedSlots' }
|
// },
|
// {
|
// title: '单据小类',
|
// align: 'center',
|
// dataIndex: 'orderSubclass',
|
// //scopedSlots: { customRender: 'orderSubclassscopedSlots' }
|
// },
|
{
|
title: '单据总数量',
|
align: 'center',
|
dataIndex: 'orderQuantity'
|
},
|
{
|
title: '发货批号',
|
align: 'center',
|
dataIndex: 'dispatchedBatch'
|
},
|
{
|
title: '目标仓库',
|
align: 'center',
|
dataIndex: 'areaName'
|
},
|
{
|
title: '发货人',
|
align: 'center',
|
dataIndex: 'dispatchedWorker'
|
},
|
{
|
title: '发货时间',
|
align: 'center',
|
dataIndex: 'dispatchedTime'
|
},
|
{
|
title: '收货地址',
|
align: 'center',
|
dataIndex: 'shippingAddress'
|
},
|
{
|
title: '客户',
|
align: 'center',
|
dataIndex: 'customer'
|
},
|
{
|
title: '单据状态',
|
align: 'center',
|
dataIndex: 'orderStatus',
|
scopedSlots: { customRender: 'orderStatusEnumscopedSlots' }
|
},
|
{
|
title: '操作',
|
width: '150px',
|
dataIndex: 'action',
|
scopedSlots: { customRender: 'action' }
|
}
|
],
|
tstyle: { 'padding-bottom': '0px', 'margin-bottom': '10px' },
|
// 加载数据方法 必须为 Promise 对象
|
loadData: parameter => {
|
return DispatchedOutboundOrderPage(Object.assign(parameter, this.queryParam)).then((res) => {
|
let _arr = res.data.rows || []
|
if (_arr.length>0){
|
this.onViewDetail(_arr[0])
|
}
|
return res.data
|
})
|
},
|
orderStatusEnumData: [],
|
infoId:null,
|
infoOrderNo:''
|
}
|
},
|
created () {
|
const orderStatusEnumOption = this.$options
|
this.orderStatusEnumData = orderStatusEnumOption.filters['dictData']('order_status')
|
},
|
mounted(){
|
this.getLargeCategoriesOptions()
|
},
|
methods: {
|
onViewDetail(obj){
|
if (this.infoId===obj.id) {
|
this.infoId = null
|
this.infoOrderNo = ''
|
} else {
|
this.infoId = obj.id;
|
this.infoOrderNo = obj.orderNo
|
}
|
},
|
getLargeCategoriesOptions(){
|
DispatchedOutboundOrderLargeCategories().then(d=>{
|
this.selectOptions.largeCategories = d.data || []
|
}).catch(err=>{
|
console.log(err)
|
})
|
},
|
getSubclassOptions(id){
|
DispatchedOutboundOrderSubclass(id).then(d=>{
|
this.selectOptions.subclasses = d.data || []
|
this.queryParam.subclasses = undefined
|
}).catch(err=>{
|
this.clearSubclass()
|
console.log(err)
|
})
|
},
|
onLargeCategorySelect(val){
|
if (val) {
|
this.getSubclassOptions(val)
|
} else {
|
this.clearSubclass()
|
}
|
},
|
clearSubclass(){
|
this.selectOptions.subclasses = []
|
this.queryParam.subclasses = undefined
|
},
|
/**
|
* 查询参数组装
|
*/
|
switchingDate () {
|
const obj = JSON.parse(JSON.stringify(this.queryParam))
|
return obj
|
},
|
DispatchedOutboundOrderDelete (record) {
|
DispatchedOutboundOrderDelete(record).then((res) => {
|
if (res.success) {
|
this.$message.success('删除成功')
|
if (this.infoId && record.id) {
|
this.infoId = null
|
}
|
this.$refs.table.refresh()
|
} else {
|
this.$message.error('删除失败') // + res.message
|
}
|
})
|
},
|
toggleAdvanced () {
|
this.advanced = !this.advanced
|
},
|
handleOk () {
|
this.$refs.table.refresh()
|
},
|
infoCallback(){
|
this.$refs.table.refresh()
|
}
|
}
|
}
|
</script>
|
<style lang="less">
|
.table-operator {
|
margin-bottom: 18px;
|
}
|
button {
|
margin-right: 8px;
|
}
|
</style>
|