2024-06-11 11:44:05 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
|
<!--工具栏-->
|
|
|
|
|
|
<div class="head-container">
|
|
|
|
|
|
<div v-if="crud.props.searchToggle">
|
|
|
|
|
|
<!-- 搜索 -->
|
2024-06-24 18:07:44 +08:00
|
|
|
|
<label class="el-form-item-label">工单编码</label>
|
2024-07-17 16:48:41 +08:00
|
|
|
|
<el-input v-model="query.gdCode" clearable placeholder="工单编码" style="width: 180px;" class="filter-item"
|
2024-06-24 15:58:14 +08:00
|
|
|
|
@keyup.enter.native="crud.toQuery"/>
|
2024-06-24 18:07:44 +08:00
|
|
|
|
|
|
|
|
|
|
<label class="el-form-item-label">工单状态</label>
|
2024-07-17 16:48:41 +08:00
|
|
|
|
<el-select v-model="query.status" filterable placeholder="请选择" class="filter-item" style="width: 180px;">
|
2024-06-24 18:07:44 +08:00
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="item in dict.pick_status"
|
|
|
|
|
|
:key="item.id"
|
|
|
|
|
|
:label="item.label"
|
|
|
|
|
|
:value="item.value"/>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
|
2024-07-17 16:48:41 +08:00
|
|
|
|
<label class="el-form-item-label">成品代码/单品代码</label>
|
2024-07-23 16:29:00 +08:00
|
|
|
|
<el-input v-model="query.cpCodeOrDpCode" clearable placeholder="成品代码/单品代码" style="width: 180px;"
|
|
|
|
|
|
class="filter-item"
|
2024-07-17 16:48:41 +08:00
|
|
|
|
@keyup.enter.native="crud.toQuery"/>
|
|
|
|
|
|
|
|
|
|
|
|
<label class="el-form-item-label">需求工位</label>
|
|
|
|
|
|
<el-input v-model="query.station" clearable placeholder="需求工位" style="width: 160px;" class="filter-item"
|
|
|
|
|
|
@keyup.enter.native="crud.toQuery"/>
|
|
|
|
|
|
|
2024-06-24 18:07:44 +08:00
|
|
|
|
|
2024-06-24 15:58:14 +08:00
|
|
|
|
<rrOperation :crud="crud"/>
|
2024-06-11 11:44:05 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<!--如果想在工具栏加入更多按钮,可以使用插槽方式, slot = 'left' or 'right'-->
|
|
|
|
|
|
<crudOperation :permission="permission" :tableKey="this.$options.name"/>
|
|
|
|
|
|
<!--表单组件-->
|
2024-06-24 15:58:14 +08:00
|
|
|
|
<el-dialog :close-on-click-modal="false" :before-close="crud.cancelCU" :visible.sync="crud.status.cu > 0"
|
|
|
|
|
|
:title="crud.status.title" width="500px">
|
2024-06-24 18:07:44 +08:00
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" size="small" label-width="85px">
|
|
|
|
|
|
|
|
|
|
|
|
<el-form-item label="工单编码" prop="gdCode">
|
|
|
|
|
|
<el-select v-model="form.gdCode" @focus="getGd()" filterable clearable placeholder="请选择"
|
|
|
|
|
|
style="width: 350px;"
|
|
|
|
|
|
class="filter-item">
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="gd in gds"
|
|
|
|
|
|
:key="gd.id"
|
|
|
|
|
|
:label="gd.code"
|
|
|
|
|
|
:value="gd.code"/>
|
|
|
|
|
|
</el-select>
|
2024-06-11 11:44:05 +08:00
|
|
|
|
</el-form-item>
|
2024-06-24 18:07:44 +08:00
|
|
|
|
|
|
|
|
|
|
<el-form-item label="顺序号" prop="lineNo">
|
|
|
|
|
|
<el-input v-model="form.lineNo" style="width: 350px;" oninput="value=value.replace(/^0|[^0-9]/g,'')"
|
|
|
|
|
|
min="1"/>
|
2024-06-11 11:44:05 +08:00
|
|
|
|
</el-form-item>
|
2024-06-24 18:07:44 +08:00
|
|
|
|
|
|
|
|
|
|
<el-form-item label="状态" prop="status">
|
|
|
|
|
|
<el-select v-model="form.status" filterable placeholder="请选择" style="width: 350px;">
|
2024-06-17 16:10:20 +08:00
|
|
|
|
<el-option
|
2024-06-24 15:58:14 +08:00
|
|
|
|
v-for="item in dict.pick_status"
|
2024-06-24 18:07:44 +08:00
|
|
|
|
v-if="item.value==='OPEN'"
|
2024-06-24 15:58:14 +08:00
|
|
|
|
:key="item.id"
|
|
|
|
|
|
:label="item.label"
|
|
|
|
|
|
:value="item.value"/>
|
2024-06-17 16:10:20 +08:00
|
|
|
|
</el-select>
|
2024-06-11 11:44:05 +08:00
|
|
|
|
</el-form-item>
|
2024-06-24 18:07:44 +08:00
|
|
|
|
|
|
|
|
|
|
<el-form-item label="成品代码/单品代码" prop="cpCodeOrDpCode">
|
|
|
|
|
|
<el-select v-model="form.cpCodeOrDpCode" @focus="getItemAndBigItem()" filterable placeholder="请选择"
|
|
|
|
|
|
style="width: 350px;">
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="item in itemAndBigItem"
|
|
|
|
|
|
:key="item.id"
|
|
|
|
|
|
:label="item.code"
|
|
|
|
|
|
:value="item.code"/>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
|
|
<el-form-item label="需求工位" prop="station">
|
|
|
|
|
|
<el-input v-model="form.station" style="width: 350px;"/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
2024-06-11 11:44:05 +08:00
|
|
|
|
</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-07-23 16:29:00 +08:00
|
|
|
|
<el-table ref="table"
|
|
|
|
|
|
v-loading="crud.loading"
|
|
|
|
|
|
:data="crud.data"
|
|
|
|
|
|
height="63vh"
|
|
|
|
|
|
row-key="id"
|
|
|
|
|
|
size="small"
|
|
|
|
|
|
style="width: 100%;"
|
|
|
|
|
|
@selection-change="crud.selectionChangeHandler"
|
|
|
|
|
|
@row-click="handleRowClick"
|
|
|
|
|
|
@expand-change="expandChange"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-table-column type="expand">
|
|
|
|
|
|
<template slot-scope="props">
|
|
|
|
|
|
<!-- <el-card shadow="never" class="nested-table-card">
|
|
|
|
|
|
|
|
|
|
|
|
</el-card>-->
|
|
|
|
|
|
<el-table :data="props.row.dataPickDetail" class="table2" show-summary v-loading="loading"
|
|
|
|
|
|
style="width: 100%">
|
|
|
|
|
|
<el-table-column prop="xh" label="序号" type="index" width="80"/>
|
|
|
|
|
|
<el-table-column prop="item.code" label="物料编码" align="center"/>
|
|
|
|
|
|
<el-table-column prop="item.name" label="物料名称" align="center"/>
|
|
|
|
|
|
<el-table-column prop="orderQty" label="订单数量" align="center"/>
|
|
|
|
|
|
<el-table-column prop="allocatedQty" label="分配数量" align="center"/>
|
|
|
|
|
|
<el-table-column prop="pickedQty" label="拣货数量" align="center"/>
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column prop="xh" label="序号" type="index"/>
|
2024-06-24 18:07:44 +08:00
|
|
|
|
<el-table-column prop="code" label="出库单编码"/>
|
|
|
|
|
|
<el-table-column prop="gdCode" label="工单编码"/>
|
|
|
|
|
|
<el-table-column prop="lineNo" label="顺序号"/>
|
2024-06-17 16:10:20 +08:00
|
|
|
|
<el-table-column prop="status" label="状态">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
{{ dict.label.pick_status[scope.row.status] }}
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2024-06-24 18:07:44 +08:00
|
|
|
|
<el-table-column prop="cpCodeOrDpCode" label="成品代码/单品代码"/>
|
|
|
|
|
|
<el-table-column prop="station" label="需求工位"/>
|
|
|
|
|
|
<el-table-column prop="point.code" label="翻包点位"/>
|
2024-06-24 15:58:14 +08:00
|
|
|
|
<el-table-column prop="createTime" label="创建时间"/>
|
2024-06-26 10:30:11 +08:00
|
|
|
|
<el-table-column v-if="checkPer(['admin','pick:edit','pick:del'])" label="操作" align="center">
|
2024-06-11 11:44:05 +08:00
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<udOperation
|
|
|
|
|
|
:data="scope.row"
|
|
|
|
|
|
:permission="permission"
|
2024-06-26 10:30:11 +08:00
|
|
|
|
:showDle="false"
|
2024-06-11 11:44:05 +08:00
|
|
|
|
/>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2024-07-23 16:29:00 +08:00
|
|
|
|
|
2024-06-11 11:44:05 +08:00
|
|
|
|
</el-table>
|
|
|
|
|
|
<!--分页组件-->
|
2024-06-26 10:30:11 +08:00
|
|
|
|
<div style="float: right;">
|
|
|
|
|
|
<pagination/>
|
|
|
|
|
|
</div>
|
2024-06-11 11:44:05 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import crudPick from '@/api/pick'
|
2024-06-24 15:58:14 +08:00
|
|
|
|
import CRUD, {presenter, header, form, crud} from '@crud/crud'
|
2024-06-11 11:44:05 +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-06-24 18:07:44 +08:00
|
|
|
|
import {getItemsList} from "@/api/item";
|
|
|
|
|
|
import {queryAllBigItem} from "@/api/bigItem";
|
2024-07-23 16:29:00 +08:00
|
|
|
|
import {none} from "html-webpack-plugin/lib/chunksorter";
|
2024-06-11 11:44:05 +08:00
|
|
|
|
|
2024-06-24 15:58:14 +08:00
|
|
|
|
const defaultForm = {
|
|
|
|
|
|
id: null,
|
|
|
|
|
|
createBy: null,
|
|
|
|
|
|
updateBy: null,
|
|
|
|
|
|
createTime: null,
|
|
|
|
|
|
updateTime: null,
|
|
|
|
|
|
deptId: null,
|
|
|
|
|
|
code: null,
|
|
|
|
|
|
lineNo: null,
|
|
|
|
|
|
status: null,
|
|
|
|
|
|
beCall: null
|
|
|
|
|
|
}
|
2024-06-11 11:44:05 +08:00
|
|
|
|
export default {
|
|
|
|
|
|
name: 'Pick',
|
2024-06-17 16:10:20 +08:00
|
|
|
|
dicts: ['pick_status'],
|
2024-06-24 15:58:14 +08:00
|
|
|
|
components: {pagination, crudOperation, rrOperation, udOperation},
|
2024-06-11 11:44:05 +08:00
|
|
|
|
mixins: [presenter(), header(), form(defaultForm), crud()],
|
|
|
|
|
|
cruds() {
|
2024-06-24 18:07:44 +08:00
|
|
|
|
return CRUD({
|
|
|
|
|
|
title: '出库单',
|
|
|
|
|
|
url: 'api/pick',
|
|
|
|
|
|
idField: 'id',
|
|
|
|
|
|
sort: ['lineNo,asc'],
|
|
|
|
|
|
crudMethod: {...crudPick},
|
|
|
|
|
|
optShow: {
|
2024-07-17 16:48:41 +08:00
|
|
|
|
add: false,
|
2024-06-24 18:07:44 +08:00
|
|
|
|
edit: false,
|
|
|
|
|
|
del: false,
|
|
|
|
|
|
reset: true,
|
|
|
|
|
|
download: true
|
2024-06-27 18:10:04 +08:00
|
|
|
|
},
|
|
|
|
|
|
queryOnPresenterCreated: true
|
2024-06-24 18:07:44 +08:00
|
|
|
|
})
|
2024-06-11 11:44:05 +08:00
|
|
|
|
},
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
2024-06-24 18:07:44 +08:00
|
|
|
|
gds: [],
|
|
|
|
|
|
itemAndBigItem: [],
|
2024-07-23 16:29:00 +08:00
|
|
|
|
dataPickDetail: [],
|
|
|
|
|
|
loading: true,
|
2024-06-11 11:44:05 +08:00
|
|
|
|
permission: {
|
|
|
|
|
|
add: ['admin', 'pick:add'],
|
|
|
|
|
|
edit: ['admin', 'pick:edit'],
|
|
|
|
|
|
del: ['admin', 'pick:del']
|
|
|
|
|
|
},
|
2024-06-24 18:07:44 +08:00
|
|
|
|
rules: {
|
|
|
|
|
|
gdCode: [
|
|
|
|
|
|
{required: true, message: '请选择工单编码', trigger: 'blur'}
|
|
|
|
|
|
],
|
|
|
|
|
|
lineNo: [
|
|
|
|
|
|
{required: true, message: '请输入顺序号', trigger: 'blur'},
|
|
|
|
|
|
],
|
|
|
|
|
|
status: [
|
|
|
|
|
|
{required: true, message: '请选择状态', trigger: 'blur'}
|
|
|
|
|
|
],
|
|
|
|
|
|
cpCodeOrDpCode: [
|
|
|
|
|
|
{required: true, message: '请选择成品代码/单品代码', trigger: 'blur'}
|
|
|
|
|
|
],
|
|
|
|
|
|
station: [
|
|
|
|
|
|
{required: true, message: '请输入需求工位', trigger: 'blur'}
|
|
|
|
|
|
]
|
|
|
|
|
|
},
|
2024-06-11 11:44:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
2024-07-23 16:29:00 +08:00
|
|
|
|
none,
|
2024-06-11 11:44:05 +08:00
|
|
|
|
// 钩子:在获取表格数据之前执行,false 则代表不获取数据
|
|
|
|
|
|
[CRUD.HOOK.beforeRefresh]() {
|
|
|
|
|
|
return true
|
2024-06-24 18:07:44 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
getItemAndBigItem() {
|
|
|
|
|
|
// 清空数组,防止重复添加
|
|
|
|
|
|
this.itemAndBigItem = [];
|
|
|
|
|
|
|
|
|
|
|
|
getItemsList({enabled: true}).then(res => {
|
|
|
|
|
|
res.forEach(item => {
|
|
|
|
|
|
const cpCodeAndDpCode = {code: null};
|
|
|
|
|
|
cpCodeAndDpCode.code = item.code;
|
|
|
|
|
|
this.itemAndBigItem.push(cpCodeAndDpCode);
|
|
|
|
|
|
});
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
queryAllBigItem({}).then(res => {
|
|
|
|
|
|
res.forEach(item => {
|
|
|
|
|
|
const cpCodeAndDpCode = {code: null};
|
|
|
|
|
|
cpCodeAndDpCode.code = item.code;
|
|
|
|
|
|
this.itemAndBigItem.push(cpCodeAndDpCode);
|
|
|
|
|
|
});
|
|
|
|
|
|
})
|
|
|
|
|
|
|
2024-07-23 16:29:00 +08:00
|
|
|
|
},
|
|
|
|
|
|
expandChange(row, expandedRows) {
|
|
|
|
|
|
// 该处是用于判断是展开还是收起行,只有展开的时候做请求,避免多次请求!
|
|
|
|
|
|
// 展开的时候expandedRows有值,收起的时候为空.
|
|
|
|
|
|
this.loading = true;
|
|
|
|
|
|
if (expandedRows.length > 0) {
|
|
|
|
|
|
crudPick.queryPickDetail(row.id).then(res => {
|
|
|
|
|
|
// 遍历当前页面表
|
|
|
|
|
|
this.$set(row, 'dataPickDetail', res)
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
this.crud.notify('获取明细数据异常!', CRUD.NOTIFICATION_TYPE.ERROR);
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
handleRowClick(row, column, event) {
|
|
|
|
|
|
//点编辑按钮的时候不触发展开行
|
|
|
|
|
|
if (!event.target.classList.contains('el-button')) {
|
|
|
|
|
|
this.$refs.table.toggleRowExpansion(row)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-06-11 11:44:05 +08:00
|
|
|
|
}
|
2024-06-24 18:07:44 +08:00
|
|
|
|
|
2024-07-23 16:29:00 +08:00
|
|
|
|
}
|
2024-06-11 11:44:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
2024-07-23 16:29:00 +08:00
|
|
|
|
<style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*.nested-table-card {
|
|
|
|
|
|
background: linear-gradient(135deg, #f7f9fc, #eef1f7) !important;
|
|
|
|
|
|
border: 1px solid #dfe4ed !important;
|
|
|
|
|
|
border-radius: 10px !important;
|
|
|
|
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
|
|
|
|
|
|
}*/
|
|
|
|
|
|
|
|
|
|
|
|
.table2 {
|
|
|
|
|
|
background-color: white !important;
|
|
|
|
|
|
border-radius: 8px !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.table2 th {
|
|
|
|
|
|
background-color: #f2f6fc !important;
|
|
|
|
|
|
color: #333 !important;
|
|
|
|
|
|
font-size: 14px !important;
|
|
|
|
|
|
border: none !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.table2 td {
|
|
|
|
|
|
color: #666 !important;
|
|
|
|
|
|
font-size: 13px !important;
|
|
|
|
|
|
border: none !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.table2 .el-table__row {
|
|
|
|
|
|
transition: background-color 0.3s !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.table2 .el-table__row:hover {
|
|
|
|
|
|
background-color: #f5f7fa !important;
|
|
|
|
|
|
cursor: pointer !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.table2 .el-table__body-wrapper {
|
|
|
|
|
|
border: none !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.table2 .el-table__footer-wrapper {
|
|
|
|
|
|
background-color: #F6F9FC !important;
|
|
|
|
|
|
color: #333 !important;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
font-size: 14px !important;
|
|
|
|
|
|
border: none !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-06-11 11:44:05 +08:00
|
|
|
|
|
|
|
|
|
|
</style>
|