<template>
|
<div>
|
<a-card :bordered="false" :bodyStyle="tstyle">
|
|
<div class="table-page-search-wrapper" v-if="hasPerm('PurchaseOrder:page')">
|
<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.purchaseOrderStatusEnum" placeholder="请选择...">
|
<a-select-option v-for="(item,index) in purchaseOrderStatusEnumData" :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-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>
|
|
<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="onReset">重置</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="">ERP获取</a-button>
|
</template>
|
<template slot="linkSlot" slot-scope="text,record">
|
<a @click="onViewDetail(record)">{{text}}</a>
|
</template>
|
<span slot="purchaseOrderStatusEnumscopedSlots" slot-scope="text">
|
<a-tag :color="text===1?'gray':(text===2?'#00ffff':(text===3?'#0000ff':'#7fff00'))">{{ 'purchase_orderstatus' | dictType(text) }}</a-tag>
|
</span>
|
<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="isFullOrderscopedSlots" slot-scope="text">
|
<a-tag :color="!!text?'#90ee90':'gray'">{{ 'number_yes_no' | dictType(text) }}</a-tag>
|
</span>
|
</s-table>
|
|
<info-block :query-id="infoId" v-if="infoId" :order-no="infoOrderNo" @callback="infoCallback" />
|
</a-card>
|
</div>
|
</template>
|
<script>
|
import { STable } from '@/components'
|
import { PurchaseOrderPage, PurchaseOrderDelete, PurchaseOrderLargeCategories, PurchaseOrderSubclass } from '@/api/modular/main/PurchaseOrderManage'
|
import infoBlock from './infoBlock.vue'
|
export default {
|
components: {
|
STable,
|
infoBlock
|
},
|
data () {
|
return {
|
advanced: false, // 高级搜索 展开/关闭
|
queryParam: {},
|
selectOptions:{
|
largeCategories:[],
|
subclasses:[]
|
},
|
columns: [
|
{
|
title: '单据编号',
|
align: 'center',
|
dataIndex: 'orderNo',
|
scopedSlots: { customRender: 'linkSlot' }
|
},
|
{
|
title: '订单状态',
|
align: 'center',
|
dataIndex: 'purchaseOrderStatusEnum',
|
scopedSlots: { customRender: 'purchaseOrderStatusEnumscopedSlots' }
|
},
|
// {
|
// title: '单据优先级',
|
// align: 'center',
|
// dataIndex: 'orderLevel'
|
// },
|
// {
|
// title: '单据大类',
|
// align: 'center',
|
// dataIndex: 'orderLargeCategory'
|
// },
|
// {
|
// title: '单据小类',
|
// align: 'center',
|
// dataIndex: 'orderSubclass'
|
// },
|
{
|
title: '收货仓库',
|
align: 'center',
|
dataIndex: 'areaName'
|
},
|
{
|
title: '单据状态',
|
align: 'center',
|
dataIndex: 'orderStatusEnum',
|
scopedSlots: { customRender: 'orderStatusEnumscopedSlots' }
|
},
|
{
|
title: '发货日期',
|
align: 'center',
|
dataIndex: 'sendGoodsTime'
|
},
|
{
|
title: '交货日期',
|
align: 'center',
|
dataIndex: 'deliveryGoodsTime'
|
},
|
{
|
title: '供应商',
|
align: 'center',
|
dataIndex: 'supplier'
|
},
|
{
|
title: '接货人',
|
align: 'center',
|
dataIndex: 'receivingPerson'
|
},
|
{
|
title: '电话联系人',
|
align: 'center',
|
dataIndex: 'phoneNumber'
|
},
|
{
|
title: '收货地址',
|
align: 'center',
|
dataIndex: 'address'
|
},
|
{
|
title: '运输公司',
|
align: 'center',
|
dataIndex: 'transportationCompany'
|
},
|
{
|
title: '运输单号',
|
align: 'center',
|
dataIndex: 'transportationOrderNo'
|
},
|
{
|
title: '取消原因',
|
align: 'center',
|
dataIndex: 'reasonForCancellation'
|
},
|
{
|
title: '整单收货',
|
align: 'center',
|
dataIndex: 'isFullOrder',
|
scopedSlots: { customRender: 'isFullOrderscopedSlots' }
|
},
|
{
|
title: '货主编号',
|
align: 'center',
|
dataIndex: 'shipperOrder'
|
},
|
{
|
title: '备注',
|
align: 'center',
|
dataIndex: 'remarks'
|
}
|
],
|
tstyle: { 'padding-bottom': '0px', 'margin-bottom': '10px' },
|
// 加载数据方法 必须为 Promise 对象
|
loadData: parameter => {
|
return PurchaseOrderPage(Object.assign(parameter, this.queryParam)).then((res) => {
|
let _arr = res.data.rows || []
|
if (_arr.length>0){
|
this.onViewDetail(_arr[0])
|
}
|
return res.data
|
})
|
},
|
purchaseOrderStatusEnumData: [],
|
orderStatusEnumData: [],
|
infoId:null,
|
infoOrderNo:''
|
}
|
},
|
created () {
|
this.purchaseOrderStatusEnumData = this.$options.filters['dictData']('purchase_orderstatus')
|
this.orderStatusEnumData = this.$options.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
|
}
|
},
|
onReset(){
|
this.queryParam = {}
|
this.selectOptions.subclasses = []
|
},
|
getLargeCategoriesOptions(){
|
PurchaseOrderLargeCategories().then(d=>{
|
this.selectOptions.largeCategories = d.data || []
|
}).catch(err=>{
|
console.log(err)
|
})
|
},
|
getSubclassOptions(id){
|
PurchaseOrderSubclass(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
|
},
|
PurchaseOrderDelete (record) {
|
PurchaseOrderDelete(record).then((res) => {
|
if (res.success) {
|
this.$message.success('删除成功')
|
this.$refs.table.refresh()
|
} else {
|
this.$message.error('删除失败') // + res.message
|
}
|
})
|
},
|
toggleAdvanced () {
|
this.advanced = !this.advanced
|
},
|
infoCallback(){
|
this.$refs.table.refresh()
|
}
|
}
|
}
|
</script>
|
<style lang="less">
|
.table-operator {
|
margin-bottom: 18px;
|
}
|
button {
|
margin-right: 8px;
|
}
|
</style>
|