2024-03-11 13:46:44 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
|
<!--工具栏-->
|
|
|
|
|
|
<div class="head-container">
|
2024-04-17 16:03:36 +08:00
|
|
|
|
<el-input
|
|
|
|
|
|
style="width: 140px"
|
|
|
|
|
|
v-model="query.relatedBill1"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
placeholder="系统单号"
|
|
|
|
|
|
class="filter-item"
|
|
|
|
|
|
@keyup.enter.native="crud.toQuery"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<el-input
|
|
|
|
|
|
style="width: 140px"
|
|
|
|
|
|
v-model="query.relatedBill2"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
placeholder="登记单号"
|
|
|
|
|
|
class="filter-item"
|
|
|
|
|
|
@keyup.enter.native="crud.toQuery"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
style="width: 110px"
|
|
|
|
|
|
v-model="query.status"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
size="small"
|
|
|
|
|
|
placeholder="订单状态"
|
|
|
|
|
|
class="filter-item"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="item in dict.asn_status"
|
|
|
|
|
|
:key="item.id"
|
|
|
|
|
|
:label="item.label"
|
|
|
|
|
|
:value="item.value"
|
2024-03-11 13:46:44 +08:00
|
|
|
|
/>
|
2024-04-17 16:03:36 +08:00
|
|
|
|
</el-select>
|
|
|
|
|
|
<rrOperation :crud="crud"/>
|
2024-03-11 13:46:44 +08:00
|
|
|
|
<!--如果想在工具栏加入更多按钮,可以使用插槽方式, slot = 'left' or 'right'-->
|
2024-03-25 15:20:00 +08:00
|
|
|
|
<crudOperation :permission="permission" :table-key="this.$options.name">
|
2024-03-25 13:48:40 +08:00
|
|
|
|
<el-button
|
|
|
|
|
|
slot="right"
|
|
|
|
|
|
class="filter-item"
|
|
|
|
|
|
type="success"
|
|
|
|
|
|
icon="el-icon-edit"
|
|
|
|
|
|
size="mini"
|
2024-03-25 15:20:00 +08:00
|
|
|
|
:disabled="crud.selections.length !== 1 || this.crud.selections[0].status !=='OPEN'"
|
2024-03-25 13:48:40 +08:00
|
|
|
|
@click="allocate(crud.selections)"
|
|
|
|
|
|
>
|
|
|
|
|
|
分配
|
|
|
|
|
|
</el-button>
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
slot="right"
|
|
|
|
|
|
class="filter-item"
|
|
|
|
|
|
type="success"
|
|
|
|
|
|
icon="el-icon-edit"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
:loading="crud.delAllLoading"
|
2024-03-25 15:20:00 +08:00
|
|
|
|
:disabled="crud.selections.length !== 1 || this.crud.selections[0].status !=='ALLOCATE'"
|
2024-03-25 13:48:40 +08:00
|
|
|
|
@click="cancelAllocate(crud.selections)"
|
|
|
|
|
|
>
|
|
|
|
|
|
取消分配
|
|
|
|
|
|
</el-button>
|
|
|
|
|
|
</crudOperation>
|
2024-03-11 13:46:44 +08:00
|
|
|
|
<!--表单组件-->
|
2024-04-17 16:03:36 +08:00
|
|
|
|
<el-dialog :close-on-click-modal="false" :before-close="crud.cancelCU" :visible.sync="crud.status.cu > 0" :title="crud.status.title" width="580px">
|
|
|
|
|
|
<el-form ref="form" :inline="true" :model="form" :rules="rules" size="small" label-width="120px">
|
|
|
|
|
|
<el-form-item label="系统单号" prop="relatedBill1">
|
|
|
|
|
|
<el-input v-model="form.relatedBill1" style="width: 135px;" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="登记单号">
|
|
|
|
|
|
<el-input v-model="form.relatedBill2" style="width: 135px;" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="单据类型" prop="billType">
|
|
|
|
|
|
<el-select v-model="form.billType" value-key="id" filterable placeholder="请选择单据类型"
|
|
|
|
|
|
style="width: 135px;">
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="item in billTypeList"
|
|
|
|
|
|
:key="item.id"
|
|
|
|
|
|
:label="item.name"
|
|
|
|
|
|
:value="item"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="订单状态" prop="status">
|
|
|
|
|
|
<el-select v-model="form.status" filterable placeholder="请选择" style="width: 135px;">
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="item in dict.pick_status"
|
|
|
|
|
|
:key="item.id"
|
|
|
|
|
|
:label="item.label"
|
|
|
|
|
|
:value="item.value" />
|
|
|
|
|
|
</el-select>
|
2024-03-11 13:46:44 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="订单来源">
|
2024-04-17 16:03:36 +08:00
|
|
|
|
<el-input v-model="form.orderOrigin" style="width: 135px;" />
|
2024-03-11 13:46:44 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="优先级">
|
2024-04-17 16:03:36 +08:00
|
|
|
|
<el-input v-model="form.priority" style="width: 135px;" />
|
2024-03-11 13:46:44 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="货主">
|
2024-04-17 16:03:36 +08:00
|
|
|
|
<el-input v-model="form.owner" style="width: 135px;" />
|
2024-03-11 13:46:44 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="来源名称">
|
2024-04-17 16:03:36 +08:00
|
|
|
|
<el-input v-model="form.sourceName" style="width: 135px;" />
|
2024-03-11 13:46:44 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="发货时间">
|
2024-04-17 16:03:36 +08:00
|
|
|
|
<el-date-picker v-model="form.dispatchDate" type="datetime" style="width: 135px;" />
|
2024-03-11 13:46:44 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="操作时间">
|
2024-04-17 16:03:36 +08:00
|
|
|
|
<el-date-picker v-model="form.erTime" type="datetime" style="width: 135px;" />
|
2024-03-11 13:46:44 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
|
<el-button type="text" @click="crud.cancelCU">取消</el-button>
|
|
|
|
|
|
<el-button :loading="crud.status.cu === 2" type="primary" @click="crud.submitCU">确认</el-button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
<!--表格渲染-->
|
2024-04-17 16:03:36 +08:00
|
|
|
|
<el-table ref="table" v-loading="crud.loading" :data="crud.data" size="small" style="width: 100%;" @selection-change="crud.selectionChangeHandler">
|
2024-03-11 13:46:44 +08:00
|
|
|
|
<el-table-column type="selection" width="55" />
|
|
|
|
|
|
<el-table-column prop="relatedBill1" label="系统单号" />
|
2024-04-17 16:03:36 +08:00
|
|
|
|
<el-table-column prop="relatedBill2" label="登记单号" />
|
2024-03-12 13:08:57 +08:00
|
|
|
|
<el-table-column prop="billType.name" label="单据类型" />
|
2024-03-11 13:46:44 +08:00
|
|
|
|
<el-table-column prop="status" label="订单状态">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
{{ dict.label.pick_status[scope.row.status] }}
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2024-04-17 16:03:36 +08:00
|
|
|
|
<el-table-column prop="priority" label="优先级" />
|
|
|
|
|
|
<el-table-column prop="owner" label="货主" />
|
|
|
|
|
|
<el-table-column prop="address" label="整合地址" />
|
2024-03-11 13:46:44 +08:00
|
|
|
|
<el-table-column prop="dispatchDate" label="发货时间" />
|
|
|
|
|
|
<el-table-column prop="erTime" label="操作时间" />
|
2024-04-17 16:03:36 +08:00
|
|
|
|
<el-table-column v-if="checkPer(['admin','asn:edit','asn:del'])" fixed="right" label="操作" align="center">
|
2024-03-11 13:46:44 +08:00
|
|
|
|
<template slot-scope="scope">
|
2024-04-17 16:03:36 +08:00
|
|
|
|
<el-button
|
|
|
|
|
|
v-permission="permission.add"
|
|
|
|
|
|
class="filter-item"
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
icon="el-icon-document-add"
|
|
|
|
|
|
@click="jumpPickDetail(scope.row.relatedBill1)"
|
|
|
|
|
|
>
|
|
|
|
|
|
查看明细
|
|
|
|
|
|
</el-button>
|
2024-03-11 13:46:44 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
<!--分页组件-->
|
|
|
|
|
|
<pagination />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2024-03-25 15:20:00 +08:00
|
|
|
|
import crudPick from '@/api/pick'
|
2024-03-11 13:46:44 +08:00
|
|
|
|
import CRUD, { presenter, header, form, crud } from '@crud/crud'
|
|
|
|
|
|
import rrOperation from '@crud/RR.operation'
|
|
|
|
|
|
import crudOperation from '@crud/CRUD.operation'
|
|
|
|
|
|
import udOperation from '@crud/UD.operation'
|
|
|
|
|
|
import pagination from '@crud/Pagination'
|
2024-04-17 16:03:36 +08:00
|
|
|
|
import {getBillType} from "@/api/billType";
|
2024-03-11 13:46:44 +08:00
|
|
|
|
|
2024-03-12 13:08:57 +08:00
|
|
|
|
const defaultForm = { id: null, deptId: null, billType: null, orderOrigin: null, priority: null, owner: null, relatedBill1: null, relatedBill2: null, sourceName: null, status: null, address: null, dispatchDate: null, erTime: null, createBy: null, updateBy: null, createTime: null, updateTime: null, orderDate: null }
|
2024-03-11 13:46:44 +08:00
|
|
|
|
export default {
|
|
|
|
|
|
name: 'Pick',
|
|
|
|
|
|
components: { pagination, crudOperation, rrOperation, udOperation },
|
|
|
|
|
|
mixins: [presenter(), header(), form(defaultForm), crud()],
|
2024-04-17 16:03:36 +08:00
|
|
|
|
dicts: ['pick_status', 'asn_status'],
|
2024-03-11 13:46:44 +08:00
|
|
|
|
cruds() {
|
2024-04-17 16:03:36 +08:00
|
|
|
|
return CRUD({ title: '出库单', url: 'api/pick', idField: 'id', sort: 'id,desc', crudMethod: { ...crudPick }})
|
2024-03-11 13:46:44 +08:00
|
|
|
|
},
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
2024-04-17 16:03:36 +08:00
|
|
|
|
billTypeList: [],
|
2024-03-11 13:46:44 +08:00
|
|
|
|
permission: {
|
|
|
|
|
|
add: ['admin', 'pick:add'],
|
|
|
|
|
|
edit: ['admin', 'pick:edit'],
|
2024-04-17 16:03:36 +08:00
|
|
|
|
del: ['admin', 'pick:del'],
|
|
|
|
|
|
download: ['admin', 'pick:download'],
|
|
|
|
|
|
allocate: ['admin', 'pick:allocate'],
|
|
|
|
|
|
cancelAllocate: ['admin', 'pick:cancelAllocate']
|
2024-03-11 13:46:44 +08:00
|
|
|
|
},
|
2024-03-12 13:08:57 +08:00
|
|
|
|
tableKey: 'api/pick',
|
2024-03-11 13:46:44 +08:00
|
|
|
|
rules: {
|
2024-04-17 16:03:36 +08:00
|
|
|
|
relatedBill1: [
|
|
|
|
|
|
{ required: true, message: '必填', trigger: 'blur' }
|
|
|
|
|
|
],
|
|
|
|
|
|
billType: [
|
|
|
|
|
|
{ required: true, message: '必填', trigger: 'blur' }
|
|
|
|
|
|
],
|
|
|
|
|
|
status: [
|
|
|
|
|
|
{ required: true, message: '必填', trigger: 'blur' }
|
|
|
|
|
|
]
|
2024-03-11 13:46:44 +08:00
|
|
|
|
},
|
|
|
|
|
|
queryTypeOptions: [
|
|
|
|
|
|
]
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2024-04-17 16:03:36 +08:00
|
|
|
|
mounted() {
|
|
|
|
|
|
this.getBillType()
|
|
|
|
|
|
},
|
2024-03-11 13:46:44 +08:00
|
|
|
|
methods: {
|
|
|
|
|
|
// 钩子:在获取表格数据之前执行,false 则代表不获取数据
|
|
|
|
|
|
[CRUD.HOOK.beforeRefresh]() {
|
|
|
|
|
|
return true
|
2024-03-25 13:48:40 +08:00
|
|
|
|
},
|
2024-04-17 16:03:36 +08:00
|
|
|
|
getBillType() {
|
|
|
|
|
|
getBillType({}).then(res => {
|
|
|
|
|
|
this.billTypeList = res.map(function(obj) {
|
|
|
|
|
|
if (obj.hasChildren) {
|
|
|
|
|
|
obj.children = null
|
|
|
|
|
|
}
|
|
|
|
|
|
return obj
|
|
|
|
|
|
})
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
2024-03-25 13:48:40 +08:00
|
|
|
|
allocate(datas) {
|
|
|
|
|
|
this.$confirm(`选中的${datas.length}条数据分配确认?`, '提示', {
|
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
|
type: 'warning'
|
|
|
|
|
|
}).then(() => {
|
|
|
|
|
|
const ids = []
|
|
|
|
|
|
for (let i = 0; i < datas.length; i++) {
|
|
|
|
|
|
ids.push(datas[i].id)
|
|
|
|
|
|
}
|
|
|
|
|
|
crudPick.allocate(ids).then(res => {
|
2024-03-25 15:20:00 +08:00
|
|
|
|
this.crud.notify(res.data, res.status)
|
2024-03-25 13:48:40 +08:00
|
|
|
|
this.crud.toQuery()
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
this.crud.toQuery()
|
|
|
|
|
|
})
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
this.$refs.table.clearSelection()
|
|
|
|
|
|
this.crud.notify('取消成功!', CRUD.NOTIFICATION_TYPE.SUCCESS)
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
2024-04-17 16:03:36 +08:00
|
|
|
|
jumpPickDetail(relatedBill1) {
|
|
|
|
|
|
// 路径/home对应我在router目录下index.js中定义的path属性值
|
|
|
|
|
|
this.$router.push({ path: '/business-data/pickDetail/pickDetail', query: { relatedBill1: relatedBill1 }})
|
|
|
|
|
|
},
|
2024-03-25 13:48:40 +08:00
|
|
|
|
cancelAllocate(datas) {
|
|
|
|
|
|
this.$confirm(`选中的${datas.length}条数据取消分配确认?`, '提示', {
|
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
|
type: 'warning'
|
|
|
|
|
|
}).then(() => {
|
|
|
|
|
|
const ids = []
|
|
|
|
|
|
for (let i = 0; i < datas.length; i++) {
|
|
|
|
|
|
ids.push(datas[i].id)
|
|
|
|
|
|
}
|
|
|
|
|
|
crudPick.cancelAllocate(ids).then(res => {
|
2024-04-17 16:03:36 +08:00
|
|
|
|
this.crud.notify(res.data, res.status)
|
2024-03-25 13:48:40 +08:00
|
|
|
|
this.crud.toQuery()
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
this.$refs.table.clearSelection()
|
|
|
|
|
|
this.crud.notify('取消成功!', CRUD.NOTIFICATION_TYPE.SUCCESS)
|
|
|
|
|
|
})
|
2024-03-11 13:46:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|