2024-05-30 13:52:06 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
|
<!--工具栏-->
|
|
|
|
|
|
<div class="head-container">
|
|
|
|
|
|
<label class="el-form-item-label">物料编码</label>
|
2024-11-12 10:56:40 +08:00
|
|
|
|
<el-select v-model="query.itemCode" placeholder="物料编码" filterable clearable style="width: 170px;"
|
|
|
|
|
|
class="filter-item">
|
2024-05-30 13:52:06 +08:00
|
|
|
|
<el-option
|
|
|
|
|
|
@keyup.enter.native="crud.toQuery"
|
2024-11-01 17:58:26 +08:00
|
|
|
|
v-for="item in this.items"
|
2024-05-30 13:52:06 +08:00
|
|
|
|
:key="item.code"
|
|
|
|
|
|
:label="item.code"
|
2024-11-01 17:58:26 +08:00
|
|
|
|
:value="item.code"
|
|
|
|
|
|
>
|
2024-05-30 13:52:06 +08:00
|
|
|
|
<span style="float: left">{{ item.code }}</span>
|
|
|
|
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.name }}</span>
|
|
|
|
|
|
</el-option>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
|
|
|
|
|
|
<label class="el-form-item-label">物料名称</label>
|
|
|
|
|
|
<el-input v-model="query.itemName" clearable placeholder="物料名称" style="width: 170px;" class="filter-item"
|
2024-11-01 17:58:26 +08:00
|
|
|
|
@keyup.enter.native="crud.toQuery"
|
|
|
|
|
|
/>
|
2024-05-30 13:52:06 +08:00
|
|
|
|
|
|
|
|
|
|
<label class="el-form-item-label">任务状态</label>
|
|
|
|
|
|
<el-select
|
2024-11-01 17:58:26 +08:00
|
|
|
|
v-model="query.taskStatus"
|
2024-05-30 13:52:06 +08:00
|
|
|
|
clearable
|
|
|
|
|
|
size="small"
|
|
|
|
|
|
placeholder="任务状态"
|
|
|
|
|
|
class="filter-item"
|
|
|
|
|
|
style="width: 150px"
|
|
|
|
|
|
@change="crud.toQuery"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="item in dict.task_status"
|
|
|
|
|
|
:key="item.id"
|
|
|
|
|
|
:label="item.label"
|
|
|
|
|
|
:value="item.value"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
|
|
|
|
|
|
<label class="el-form-item-label">日期</label>
|
|
|
|
|
|
<date-range-picker v-model="query.createTime" class="date-item" style="width: 100px"/>
|
|
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<label class="el-form-item-label">原点位</label>
|
|
|
|
|
|
<el-input v-model="query.srcPointCode" clearable placeholder="原点位" style="width: 185px;" class="filter-item"
|
2024-11-01 17:58:26 +08:00
|
|
|
|
@keyup.enter.native="crud.toQuery"
|
|
|
|
|
|
/>
|
2024-05-30 13:52:06 +08:00
|
|
|
|
<label class="el-form-item-label">目标点位</label>
|
|
|
|
|
|
<el-input v-model="query.dstPointCode" clearable placeholder="目标点位" style="width: 170px;"
|
2024-11-01 17:58:26 +08:00
|
|
|
|
class="filter-item" @keyup.enter.native="crud.toQuery"
|
|
|
|
|
|
/>
|
2024-05-30 13:52:06 +08:00
|
|
|
|
<rrOperation :crud="crud"/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!--如果想在工具栏加入更多按钮,可以使用插槽方式, slot = 'left' or 'right'-->
|
2024-06-17 16:10:20 +08:00
|
|
|
|
<crudOperation :permission="permission" :tableKey="this.$options.name">
|
2024-11-01 17:58:26 +08:00
|
|
|
|
|
2024-06-17 16:10:20 +08:00
|
|
|
|
</crudOperation>
|
2024-05-30 13:52:06 +08:00
|
|
|
|
<!--表单组件-->
|
|
|
|
|
|
|
|
|
|
|
|
<!--表格渲染-->
|
2024-11-01 17:58:26 +08:00
|
|
|
|
<el-table ref="table" height="58vh" v-loading="crud.loading" :data="crud.data" size="small" style="width: 100%;"
|
|
|
|
|
|
@selection-change="crud.selectionChangeHandler"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-table-column type="selection" width="55"/>
|
|
|
|
|
|
<el-table-column prop="xh" type="index" :index="indexMethod" label="序号"/>
|
|
|
|
|
|
<el-table-column prop="pickDetail.pick.code" :show-overflow-tooltip="true" label="出库单号"/>
|
|
|
|
|
|
<el-table-column prop="srcStockCode" label="容器编码"/>
|
|
|
|
|
|
<el-table-column prop="itemKey.orderNumber" label="箱号"/>
|
2024-05-30 13:52:06 +08:00
|
|
|
|
<el-table-column :show-overflow-tooltip="true" prop="itemCode" label="物料编码">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<div>{{ scope.row.item.code }}</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column :show-overflow-tooltip="true" prop="itemName" label="物料名称">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<div>{{ scope.row.item.name }}</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2024-11-12 10:56:40 +08:00
|
|
|
|
<el-table-column
|
|
|
|
|
|
prop="taskStatus"
|
|
|
|
|
|
label="任务状态"
|
|
|
|
|
|
width="100"
|
|
|
|
|
|
:filters="[
|
|
|
|
|
|
{ text: '待执行', value: 'OPEN' },
|
|
|
|
|
|
{ text: '执行中', value: 'ATCALL' },
|
|
|
|
|
|
{ text: '顶升', value: 'UP_CONTAINER' },
|
|
|
|
|
|
{ text: '已到站', value: 'ARRIVED' },
|
|
|
|
|
|
{ text: '已完成', value: 'FINISH' },
|
|
|
|
|
|
{ text: '任务取消', value: 'CANCEL' }
|
|
|
|
|
|
]"
|
|
|
|
|
|
:filter-method="filterTag"
|
|
|
|
|
|
filter-placement="bottom-end"
|
|
|
|
|
|
>
|
2024-05-30 13:52:06 +08:00
|
|
|
|
<template slot-scope="scope">
|
2024-11-12 10:56:40 +08:00
|
|
|
|
<el-tag
|
|
|
|
|
|
:type="getStatusType(scope.row.taskStatus)"
|
|
|
|
|
|
disable-transitions
|
|
|
|
|
|
>
|
|
|
|
|
|
{{ dict.label.task_status[scope.row.taskStatus] }}
|
|
|
|
|
|
</el-tag>
|
2024-05-30 13:52:06 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2024-11-01 17:58:26 +08:00
|
|
|
|
<el-table-column prop="srcPointCode" label="原点位"/>
|
|
|
|
|
|
<el-table-column prop="dstPointCode" label="目标点位"/>
|
|
|
|
|
|
<el-table-column prop="planQty" label="计划数量"/>
|
|
|
|
|
|
<el-table-column prop="moveQty" label="移位数量"/>
|
|
|
|
|
|
<el-table-column prop="createTime" label="创建时间"/>
|
2024-05-30 13:52:06 +08:00
|
|
|
|
</el-table>
|
|
|
|
|
|
<!--分页组件-->
|
|
|
|
|
|
<div style="float: right;">
|
|
|
|
|
|
<pagination/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import crudTask from '@/api/task'
|
2024-11-01 17:58:26 +08:00
|
|
|
|
import crudItem from '@/api/item'
|
2024-11-12 10:56:40 +08:00
|
|
|
|
import CRUD, {presenter, header, form, crud} from '@crud/crud'
|
2024-05-30 13:52:06 +08:00
|
|
|
|
import rrOperation from '@crud/RR.operation'
|
|
|
|
|
|
import crudOperation from '@crud/CRUD.operation'
|
|
|
|
|
|
import udOperation from '@crud/UD.operation'
|
|
|
|
|
|
import pagination from '@crud/Pagination'
|
2024-11-01 17:58:26 +08:00
|
|
|
|
import DateRangePicker from '@/components/DateRangePicker/index.vue'
|
2024-05-30 13:52:06 +08:00
|
|
|
|
|
2024-11-01 17:58:26 +08:00
|
|
|
|
const defaultForm = {
|
|
|
|
|
|
id: null,
|
|
|
|
|
|
itemId: null,
|
|
|
|
|
|
itemKeyId: null,
|
|
|
|
|
|
billCode: null,
|
|
|
|
|
|
taskType: null,
|
|
|
|
|
|
asnDetailId: null,
|
|
|
|
|
|
moveDetailId: null,
|
|
|
|
|
|
waveDetailId: null,
|
|
|
|
|
|
pickDetailId: null,
|
|
|
|
|
|
srcStockId: null,
|
|
|
|
|
|
dstStockId: null,
|
|
|
|
|
|
srcPointId: null,
|
|
|
|
|
|
dstPointId: null,
|
|
|
|
|
|
srcStockCode: null,
|
|
|
|
|
|
dstStockCode: null,
|
|
|
|
|
|
srcPointCode: null,
|
|
|
|
|
|
dstPointCode: null,
|
|
|
|
|
|
invStatus: null,
|
|
|
|
|
|
taskStatus: null,
|
|
|
|
|
|
beSkip: null,
|
|
|
|
|
|
beBack: null,
|
|
|
|
|
|
planQty: null,
|
|
|
|
|
|
moveQty: null,
|
|
|
|
|
|
putCode: null,
|
|
|
|
|
|
invId: null,
|
|
|
|
|
|
deptId: null,
|
|
|
|
|
|
createBy: null,
|
|
|
|
|
|
updateBy: null,
|
|
|
|
|
|
createTime: null,
|
|
|
|
|
|
updateTime: null
|
|
|
|
|
|
}
|
2024-05-30 13:52:06 +08:00
|
|
|
|
export default {
|
2024-11-01 17:58:26 +08:00
|
|
|
|
name: 'PickTask',
|
2024-11-12 10:56:40 +08:00
|
|
|
|
components: {DateRangePicker, pagination, crudOperation, rrOperation, udOperation},
|
2024-05-30 13:52:06 +08:00
|
|
|
|
mixins: [presenter(), header(), form(defaultForm), crud()],
|
|
|
|
|
|
dicts: ['task_status'],
|
|
|
|
|
|
cruds() {
|
2024-11-01 17:58:26 +08:00
|
|
|
|
return CRUD({
|
2024-11-12 10:56:40 +08:00
|
|
|
|
query: {taskType: ['PICK']},
|
2024-11-01 17:58:26 +08:00
|
|
|
|
title: '出库任务',
|
|
|
|
|
|
url: 'api/task',
|
|
|
|
|
|
idField: 'id',
|
|
|
|
|
|
sort: 'id,desc',
|
2024-11-12 10:56:40 +08:00
|
|
|
|
crudMethod: {...crudTask},
|
2024-05-30 13:52:06 +08:00
|
|
|
|
optShow: {
|
|
|
|
|
|
add: false,
|
|
|
|
|
|
edit: false,
|
|
|
|
|
|
del: false,
|
|
|
|
|
|
reset: true,
|
|
|
|
|
|
download: true
|
|
|
|
|
|
},
|
|
|
|
|
|
queryOnPresenterCreated: true
|
|
|
|
|
|
}
|
|
|
|
|
|
)
|
|
|
|
|
|
},
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
permission: {
|
|
|
|
|
|
add: ['admin', 'task:add'],
|
|
|
|
|
|
edit: ['admin', 'task:edit'],
|
|
|
|
|
|
del: ['admin', 'task:del']
|
|
|
|
|
|
},
|
2024-11-01 17:58:26 +08:00
|
|
|
|
rules: {},
|
|
|
|
|
|
items: []
|
2024-05-30 13:52:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
mounted() {
|
2024-11-01 17:58:26 +08:00
|
|
|
|
//初始化物料
|
|
|
|
|
|
this.getItem()
|
2024-05-30 13:52:06 +08:00
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
// 钩子:在获取表格数据之前执行,false 则代表不获取数据
|
|
|
|
|
|
[CRUD.HOOK.beforeRefresh]() {
|
|
|
|
|
|
return true
|
|
|
|
|
|
},
|
|
|
|
|
|
indexMethod(index) {
|
2024-11-01 17:58:26 +08:00
|
|
|
|
return index * 1 + 1
|
2024-06-17 16:10:20 +08:00
|
|
|
|
},
|
2024-05-30 13:52:06 +08:00
|
|
|
|
//物料数据
|
2024-11-01 17:58:26 +08:00
|
|
|
|
getItem() {
|
2024-11-12 10:56:40 +08:00
|
|
|
|
crudItem.queryItemAll({enabled: true}).then(res => {
|
2024-11-01 17:58:26 +08:00
|
|
|
|
this.items = res
|
2024-05-30 13:52:06 +08:00
|
|
|
|
}).catch(e => {
|
2024-11-01 17:58:26 +08:00
|
|
|
|
this.crud.notify('物料加载失败', CRUD.NOTIFICATION_TYPE.ERROR)
|
2024-05-30 13:52:06 +08:00
|
|
|
|
})
|
2024-11-12 10:56:40 +08:00
|
|
|
|
},
|
|
|
|
|
|
getStatusType(status) {
|
|
|
|
|
|
switch (this.dict.label.task_status[status]) {
|
|
|
|
|
|
case '待执行':
|
|
|
|
|
|
return 'info'
|
|
|
|
|
|
case '执行中':
|
|
|
|
|
|
return 'warning'
|
|
|
|
|
|
case '顶升':
|
|
|
|
|
|
return 'primary'
|
|
|
|
|
|
case '已完成':
|
|
|
|
|
|
case '已到站':
|
|
|
|
|
|
return 'success'
|
|
|
|
|
|
case '任务取消':
|
|
|
|
|
|
return 'danger'
|
|
|
|
|
|
default:
|
|
|
|
|
|
return ''
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
filterTag(value, row) {
|
|
|
|
|
|
return row.taskStatus === value
|
2024-05-30 13:52:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|