|
|
|
|
<template>
|
|
|
|
|
<basic-container>
|
|
|
|
|
<!-- 热表生产监控 -->
|
|
|
|
|
<avue-crud :option="option" :table-loading="loading" :data="data" v-model="form" v-model:page="page" ref="crud"
|
|
|
|
|
@row-del="rowDel" @search-change="searchChange" @search-reset="searchReset" @selection-change="selectionChange"
|
|
|
|
|
@current-change="currentChange" @size-change="sizeChange" @refresh-change="refreshChange" @on-load="onLoad">
|
|
|
|
|
<template #menu-left>
|
|
|
|
|
<el-button type="primary" icon="el-icon-printer" plain @click="handlePrintTags">打印标签</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-printer" plain @click="handlePrint">打印</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-monitor" @click="handleOutsource(null, 'all')">批量外协</el-button>
|
|
|
|
|
<el-button type="success" icon="el-icon-download">导出</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<template #menu-right>
|
|
|
|
|
<el-button type="success">在制品</el-button>
|
|
|
|
|
<el-button type="warning">加工中</el-button>
|
|
|
|
|
<el-button type="danger">检验中</el-button>
|
|
|
|
|
<el-button type="success">已下达</el-button>
|
|
|
|
|
<el-button type="success" plain>已完成</el-button>
|
|
|
|
|
<el-button type="primary">全部</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<template #menu="scope">
|
|
|
|
|
<el-button type="text" @click="clickProduction(scope.row)">生产监控</el-button>
|
|
|
|
|
<el-button type="text">打印</el-button>
|
|
|
|
|
<el-dropdown @command="handleCommand" style="margin-top: 4px;margin-left: 12px;"
|
|
|
|
|
v-show="scope.row.approvalStatus != 2 && scope.row.oemType === -1 && scope.row.runStatus < 15">
|
|
|
|
|
<span class="el-dropdown-link" style="color: #284c89;cursor: pointer;">
|
|
|
|
|
更多<i class="el-icon-arrow-down el-icon--right" />
|
|
|
|
|
</span>
|
|
|
|
|
<template #dropdown>
|
|
|
|
|
<el-dropdown-menu>
|
|
|
|
|
<el-dropdown-item @click="handleIssued(scope.row)"
|
|
|
|
|
v-show="scope.row.runStatus === 1">下达</el-dropdown-item>
|
|
|
|
|
<el-dropdown-item @click="handleBatches(scope.row)"
|
|
|
|
|
v-show="scope.row.runStatus < 15">分批</el-dropdown-item>
|
|
|
|
|
<el-dropdown-item @click="handleOutsource(scope.row, 'one')"
|
|
|
|
|
v-show="scope.row.runStatus < 4">外协</el-dropdown-item>
|
|
|
|
|
<el-dropdown-item @click="handleReturn(scope.row)"
|
|
|
|
|
v-show="scope.row.runStatus === 2">退货</el-dropdown-item>
|
|
|
|
|
<el-dropdown-item @click="handleScheduling(scope.row)"
|
|
|
|
|
v-show="scope.row.runStatus < 15 && scope.row.priority != 5">调度标注</el-dropdown-item>
|
|
|
|
|
<el-dropdown-item @click="handleClose(scope.row)" v-show="scope.row.runStatus < 15">关闭</el-dropdown-item>
|
|
|
|
|
<el-dropdown-item @click="handleSintering(scope.row)"
|
|
|
|
|
v-show="scope.row.runStatus < 15">转烧结</el-dropdown-item>
|
|
|
|
|
</el-dropdown-menu>
|
|
|
|
|
</template>
|
|
|
|
|
<!-- <el-dropdown-menu slot="dropdown">
|
|
|
|
|
<el-dropdown-item v-show="scope.row.runStatus === 1"
|
|
|
|
|
:command="composeValue('send', scope.row)">下达</el-dropdown-item>
|
|
|
|
|
</el-dropdown-menu> -->
|
|
|
|
|
</el-dropdown>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<template #tsName="{ row }">{{ row.makeTeam && row.makeTeam.tsName }}</template>
|
|
|
|
|
<template #ppsName="{ row }">{{ row.procedureSet && row.procedureSet.ppsName }}</template>
|
|
|
|
|
<template #partCode="{ row }">{{ row.pjYieldOrder && row.pjYieldOrder.partCode }}</template>
|
|
|
|
|
<template #prodIdent="{ row }">{{ row.pjYieldOrder && row.pjYieldOrder.prodIdent }}</template>
|
|
|
|
|
<template #partName="{ row }">{{ row.pjYieldOrder && row.pjYieldOrder.partName }}</template>
|
|
|
|
|
<template #plate="{ row }">{{ row.pjYieldOrder && row.pjYieldOrder.plate }}</template>
|
|
|
|
|
<template #productType="{ row }">{{ row.pjYieldOrder && row.pjYieldOrder.productType }}</template>
|
|
|
|
|
<template #useDept="{ row }">{{ row.pjYieldOrder && row.pjYieldOrder.useDept }}</template>
|
|
|
|
|
<template #poArea="{ row }">{{ row.pjYieldOrder && row.pjYieldOrder.poArea }}</template>
|
|
|
|
|
<template #userName="{ row }">{{ row.dispatcher && row.dispatcher.userName }}</template>
|
|
|
|
|
<template #nextPpsName="{ row }">{{ row.nextProcedureSet && row.nextProcedureSet.ppsName }}</template>
|
|
|
|
|
<template #nextTeamName="{ row }">{{ row.nextMakeTeam && row.nextMakeTeam.tsName }}</template>
|
|
|
|
|
<template #failureMan="{ row }">{{ row.pjYieldOrder && row.pjYieldOrder.failureMan &&
|
|
|
|
|
row.pjYieldOrder.failureMan.userName }}</template>
|
|
|
|
|
|
|
|
|
|
</avue-crud>
|
|
|
|
|
<el-dialog append-to-body v-model="printDialog" title="打印标签">
|
|
|
|
|
<el-form ref="printForm" :model="printForm" :rules="printRules">
|
|
|
|
|
<el-form-item label="数量" prop="quantity">
|
|
|
|
|
<el-input v-model="printForm.quantity" placeholder="请输入数量"
|
|
|
|
|
oninput="value=value.replace(/[^\d]/g,'')"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<template #footer>
|
|
|
|
|
<span class="dialog-footer">
|
|
|
|
|
<el-button @click="printDialog = false">取 消</el-button>
|
|
|
|
|
<el-button type="primary" @click="submitPrint">打 印</el-button>
|
|
|
|
|
</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
<!-- 转外协弹窗 -->
|
|
|
|
|
<outsource-dialog :show-dialog="showDialog" :show-radio="showRadio" @closeDialog="closeDialog"></outsource-dialog>
|
|
|
|
|
<!-- 生产监控 -->
|
|
|
|
|
<production-dialog :monitor-dialog="monitorDialog" :row-item="rowItem"
|
|
|
|
|
@closeDialog="closeDialog"></production-dialog>
|
|
|
|
|
<!-- 分批弹窗 -->
|
|
|
|
|
<batches-dialog :show-batches="showBatches" @closeDialog="closeDialog"></batches-dialog>
|
|
|
|
|
<!-- 关闭弹窗 -->
|
|
|
|
|
<closed-dialog :show-close="showClose" @closeDialog="closeDialog"></closed-dialog>
|
|
|
|
|
<!-- 退货弹窗 -->
|
|
|
|
|
<return-dialog :show-return="showReturn" @closeDialog="closeDialog"></return-dialog>
|
|
|
|
|
<!-- 调度标注 -->
|
|
|
|
|
<scheduling-dialog :show-scheduling="showScheduling" @closeDialog="closeDialog"></scheduling-dialog>
|
|
|
|
|
</basic-container>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import outsourceDialog from './components/outsourceDialog.vue';
|
|
|
|
|
import productionDialog from './components/productionDialog.vue';
|
|
|
|
|
import batchesDialog from './components/batchesDialog.vue';
|
|
|
|
|
import closedDialog from './components/closedDialog.vue';
|
|
|
|
|
import returnDialog from './components/returnDialog.vue';
|
|
|
|
|
import schedulingDialog from './components/schedulingDialog.vue';
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
outsourceDialog,
|
|
|
|
|
productionDialog,
|
|
|
|
|
batchesDialog,
|
|
|
|
|
closedDialog,
|
|
|
|
|
returnDialog,
|
|
|
|
|
schedulingDialog
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
showDialog: false,
|
|
|
|
|
showRadio: true,
|
|
|
|
|
monitorDialog: false,
|
|
|
|
|
showBatches: false,
|
|
|
|
|
showClose: false,
|
|
|
|
|
showReturn: false,
|
|
|
|
|
showScheduling: false,
|
|
|
|
|
data: [],
|
|
|
|
|
printForm: {},
|
|
|
|
|
printRules: {
|
|
|
|
|
quantity: [{ required: true, message: '请输入数量', trigger: 'blur' }]
|
|
|
|
|
},
|
|
|
|
|
rowItem: {},
|
|
|
|
|
selectionList: [],
|
|
|
|
|
form: {},
|
|
|
|
|
loading: false,
|
|
|
|
|
printDialog: false,
|
|
|
|
|
page: {
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
currentPage: 1,
|
|
|
|
|
total: 0,
|
|
|
|
|
},
|
|
|
|
|
option: {
|
|
|
|
|
height: 'auto',
|
|
|
|
|
calcHeight: 32,
|
|
|
|
|
rowKey: 'cardNo',
|
|
|
|
|
tip: false,
|
|
|
|
|
size: 'medium',
|
|
|
|
|
simplePage: true,
|
|
|
|
|
searchShow: true,
|
|
|
|
|
searchMenuSpan: 6,
|
|
|
|
|
searchIcon: true,
|
|
|
|
|
searchIndex: 3,
|
|
|
|
|
tree: false,
|
|
|
|
|
border: true,
|
|
|
|
|
index: true,
|
|
|
|
|
selection: true,
|
|
|
|
|
viewBtn: false,
|
|
|
|
|
delBtn: false,
|
|
|
|
|
addBtn: false,
|
|
|
|
|
editBtn: false,
|
|
|
|
|
editBtnText: '修改',
|
|
|
|
|
addBtnIcon: ' ',
|
|
|
|
|
viewBtnIcon: ' ',
|
|
|
|
|
delBtnIcon: ' ',
|
|
|
|
|
editBtnIcon: ' ',
|
|
|
|
|
viewBtnText: '详情',
|
|
|
|
|
labelWidth: 120,
|
|
|
|
|
searchLabelWidth: 120,
|
|
|
|
|
menuWidth: 220,
|
|
|
|
|
dialogWidth: 1200,
|
|
|
|
|
dialogClickModal: false,
|
|
|
|
|
searchEnter: true,
|
|
|
|
|
excelBtn: false,
|
|
|
|
|
filterBtn: true,
|
|
|
|
|
searchShowBtn: false,
|
|
|
|
|
columnSort: true,
|
|
|
|
|
excelBtn: true,
|
|
|
|
|
columnSort: true,
|
|
|
|
|
index: false,
|
|
|
|
|
showOverflowTooltip: true,
|
|
|
|
|
searchLabelPosition:'left',
|
|
|
|
|
searchLabelPosition:'left',
|
|
|
|
|
searchGutter:24,
|
|
|
|
|
searchSpan:6,
|
|
|
|
|
menuAlign: 'left',
|
|
|
|
|
gridBtn:false,
|
|
|
|
|
searchMenuPosition:'right',
|
|
|
|
|
align: 'center',
|
|
|
|
|
column: [
|
|
|
|
|
{
|
|
|
|
|
label: '主加工单位',
|
|
|
|
|
prop: 'tsName',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
fixed: 'left',
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入主加工单位',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '加工单位',
|
|
|
|
|
prop: 'processingUnit',
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
fixed: 'left',
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入加工单位',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '加工单位-班组',
|
|
|
|
|
prop: 'tsId',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
hide: true,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入加工单位-班组',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '加工单位-外协商',
|
|
|
|
|
prop: 'ocId',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
hide: true,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入加工单位-外协商',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '当前工序',
|
|
|
|
|
prop: 'ppsName',
|
|
|
|
|
fixed: 'left',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入当前工序',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '计划下达时间',
|
|
|
|
|
prop: 'sendDownTime',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入计划下达时间',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '车间订单号',
|
|
|
|
|
prop: 'woCode',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入车间订单号',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '生产订单号',
|
|
|
|
|
prop: 'yoCode',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
hide: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入生产订单号',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '计划单号',
|
|
|
|
|
prop: 'poCode',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
hide: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入计划单号',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '返工单号',
|
|
|
|
|
prop: 'qcReworkCode',
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入返工单号',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '零件号',
|
|
|
|
|
prop: 'partCode',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入零件号',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '批次号',
|
|
|
|
|
prop: 'batchNo',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入批次号',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '生产数量',
|
|
|
|
|
prop: 'makeQty',
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入生产数量',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '订单状态',
|
|
|
|
|
prop: 'runStatusTitle',
|
|
|
|
|
type: 'select',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入订单状态',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
dicData: [
|
|
|
|
|
{
|
|
|
|
|
value: 2,
|
|
|
|
|
label: '已下达'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 3,
|
|
|
|
|
label: '加工中'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 4,
|
|
|
|
|
label: '检验中'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 5,
|
|
|
|
|
label: '工艺变更'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 19,
|
|
|
|
|
label: '已返工'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 15,
|
|
|
|
|
label: '已完工'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 21,
|
|
|
|
|
label: '已作废'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '外协状态',
|
|
|
|
|
prop: 'oemType',
|
|
|
|
|
type: 'select',
|
|
|
|
|
search: true,
|
|
|
|
|
hide: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入外协状态',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
dicData: [
|
|
|
|
|
{
|
|
|
|
|
value: -1,
|
|
|
|
|
label: '场内'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 2,
|
|
|
|
|
label: '外协'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '生产标识',
|
|
|
|
|
prop: 'prodIdent',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入生产标识',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '产品名称',
|
|
|
|
|
prop: 'partName',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入产品名称',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '流程卡号',
|
|
|
|
|
prop: 'cardNo',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入流程卡号',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'MES流程卡号',
|
|
|
|
|
prop: 'mesCardNo',
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入MES流程卡号',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '镀种信息',
|
|
|
|
|
prop: 'plate',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入镀种信息',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '产品型号',
|
|
|
|
|
prop: 'productType',
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入产品型号',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '订单优先级',
|
|
|
|
|
prop: 'priorityTitle',
|
|
|
|
|
type: 'select',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入订单优先级',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
dicData: [
|
|
|
|
|
{
|
|
|
|
|
value: 1,
|
|
|
|
|
label: '正常-白色'
|
|
|
|
|
}, {
|
|
|
|
|
value: 2,
|
|
|
|
|
label: '项目要求日期急件-橙色'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 3,
|
|
|
|
|
label: '合同急件-黄色'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 4,
|
|
|
|
|
label: '绩效零件-青色'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 5,
|
|
|
|
|
label: '调度标注急件-蓝色'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '需求部门',
|
|
|
|
|
prop: 'useDept',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入需求部门',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '面积(dm²)',
|
|
|
|
|
prop: 'poArea',
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入面积(dm²)',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '单批次面积',
|
|
|
|
|
prop: 'batchArea',
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入单批次面积',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '需求交期',
|
|
|
|
|
prop: 'demandDate',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入需求交期',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '会议要求周期',
|
|
|
|
|
prop: 'meetCycle',
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入会议要求周期',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '调度员',
|
|
|
|
|
prop: 'userName',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入调度员',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '计划完工时间',
|
|
|
|
|
prop: 'planEndDate',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入计划完工时间',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '镀后入库时间',
|
|
|
|
|
prop: 'putStoreTime',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入镀后入库时间',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '已入库数量',
|
|
|
|
|
prop: 'inventoryQty',
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入已入库数量',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '未入库数量',
|
|
|
|
|
prop: 'notInQty',
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入未入库数量',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '下序',
|
|
|
|
|
prop: 'nextPpsName',
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入下序',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '下一班组',
|
|
|
|
|
prop: 'nextTeamName',
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入下一班组',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '领料状态',
|
|
|
|
|
prop: 'pickingStatusTitle',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入领料状态',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
dicData: [
|
|
|
|
|
{
|
|
|
|
|
value: 0,
|
|
|
|
|
label: '未领'
|
|
|
|
|
}, {
|
|
|
|
|
value: 1,
|
|
|
|
|
label: '已领'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '接收人员',
|
|
|
|
|
prop: 'failureMan',
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入接收人员',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '协作计划',
|
|
|
|
|
prop: 'collaborateText',
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入协作计划',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '备注',
|
|
|
|
|
prop: 'memo',
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入备注',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '是否协作',
|
|
|
|
|
prop: 'collaborate',
|
|
|
|
|
type: 'select',
|
|
|
|
|
hide: true,
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入是否协作',
|
|
|
|
|
trigger: 'blur',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
dicData: [
|
|
|
|
|
{
|
|
|
|
|
value: true,
|
|
|
|
|
label: '是'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: false,
|
|
|
|
|
label: '否'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
selectionChange(val) {
|
|
|
|
|
this.selectionList = val
|
|
|
|
|
},
|
|
|
|
|
// 转外协
|
|
|
|
|
handleOutsource(row, type) {
|
|
|
|
|
if (type == 'all') {
|
|
|
|
|
if (this.selectionList.length == 0) {
|
|
|
|
|
this.$message.error('请先选择数据')
|
|
|
|
|
} else {
|
|
|
|
|
this.showDialog = true
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.showDialog = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
// 退货
|
|
|
|
|
handleReturn() {
|
|
|
|
|
this.showReturn = true
|
|
|
|
|
},
|
|
|
|
|
// 下达
|
|
|
|
|
handleIssued() {
|
|
|
|
|
this.$confirm(
|
|
|
|
|
'确认下达车间订单吗?',
|
|
|
|
|
'确认消息',
|
|
|
|
|
{
|
|
|
|
|
confirmButtonText: '确认',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
}
|
|
|
|
|
).then(() => {
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 分批
|
|
|
|
|
handleBatches() {
|
|
|
|
|
this.showBatches = true
|
|
|
|
|
},
|
|
|
|
|
// 调度标注
|
|
|
|
|
handleScheduling() {
|
|
|
|
|
this.showScheduling = true
|
|
|
|
|
},
|
|
|
|
|
// 关闭
|
|
|
|
|
handleClose() {
|
|
|
|
|
this.showClose = true
|
|
|
|
|
},
|
|
|
|
|
// 转烧结
|
|
|
|
|
handleSintering() {
|
|
|
|
|
this.$confirm(
|
|
|
|
|
'确定将此订单转到烧结中心吗?',
|
|
|
|
|
'是否继续',
|
|
|
|
|
{
|
|
|
|
|
confirmButtonText: '确认',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
}
|
|
|
|
|
).then(() => {
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 生产监控
|
|
|
|
|
clickProduction(row) {
|
|
|
|
|
this.rowItem = row
|
|
|
|
|
this.monitorDialog = true
|
|
|
|
|
},
|
|
|
|
|
// 打印标签
|
|
|
|
|
handlePrintTags() {
|
|
|
|
|
if (this.selectionList.length == 0) {
|
|
|
|
|
this.$message.error('请先选择数据')
|
|
|
|
|
} else {
|
|
|
|
|
this.printForm = {
|
|
|
|
|
quantity: 1
|
|
|
|
|
}
|
|
|
|
|
this.printDialog = true
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 确定打印
|
|
|
|
|
submitPrint() {
|
|
|
|
|
this.$refs.printForm.validate(valid => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
this.printDialog = false
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 打印
|
|
|
|
|
handlePrint() {
|
|
|
|
|
if (this.selectionList.length == 0) {
|
|
|
|
|
this.$message.error('请先选择数据')
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 关闭弹窗
|
|
|
|
|
closeDialog() {
|
|
|
|
|
this.showDialog = false
|
|
|
|
|
this.monitorDialog = false
|
|
|
|
|
this.showBatches = false
|
|
|
|
|
this.showClose = false
|
|
|
|
|
this.showReturn = false
|
|
|
|
|
this.showScheduling = false
|
|
|
|
|
},
|
|
|
|
|
currentChange(currentPage) {
|
|
|
|
|
this.page.currentPage = currentPage;
|
|
|
|
|
},
|
|
|
|
|
sizeChange(pageSize) {
|
|
|
|
|
this.page.pageSize = pageSize;
|
|
|
|
|
},
|
|
|
|
|
refreshChange() {
|
|
|
|
|
this.onLoad(this.page, this.query);
|
|
|
|
|
},
|
|
|
|
|
searchReset() {
|
|
|
|
|
this.query = {};
|
|
|
|
|
this.treeDeptId = '';
|
|
|
|
|
this.onLoad(this.page);
|
|
|
|
|
},
|
|
|
|
|
searchChange(params, done) {
|
|
|
|
|
this.query = params;
|
|
|
|
|
this.page.currentPage = 1;
|
|
|
|
|
this.onLoad(this.page, params);
|
|
|
|
|
done();
|
|
|
|
|
},
|
|
|
|
|
selectionChange(list) {
|
|
|
|
|
this.selectionList = list;
|
|
|
|
|
},
|
|
|
|
|
selectionClear() {
|
|
|
|
|
this.selectionList = [];
|
|
|
|
|
this.$refs.crud.toggleSelection();
|
|
|
|
|
},
|
|
|
|
|
onLoad() {
|
|
|
|
|
this.data = [
|
|
|
|
|
{
|
|
|
|
|
"approvalStatus": 1,
|
|
|
|
|
"batchArea": 46.5696,
|
|
|
|
|
"batchNo": "Y1312303356",
|
|
|
|
|
"bsOemCustomer": null,
|
|
|
|
|
"ca": "E386-化学镀镍",
|
|
|
|
|
"cardNo": "1016768549",
|
|
|
|
|
"closeMan": null,
|
|
|
|
|
"closeTime": null,
|
|
|
|
|
"collaborate": false,
|
|
|
|
|
"collaborateText": "否",
|
|
|
|
|
"createTime": "2023-03-28 10:01:18",
|
|
|
|
|
"currentBsOemCustomer": null,
|
|
|
|
|
"currentMakeTeam": {
|
|
|
|
|
"bsClassesSet": null,
|
|
|
|
|
"bsWorkCenter": null,
|
|
|
|
|
"createMan": {
|
|
|
|
|
"userId": 1,
|
|
|
|
|
"userName": "admin"
|
|
|
|
|
},
|
|
|
|
|
"createTime": "2023-02-06 13:12:05",
|
|
|
|
|
"dayPutDueTime": "00:00~13:30、13:45~19:30",
|
|
|
|
|
"deleted": false,
|
|
|
|
|
"dispatcher": {
|
|
|
|
|
"userId": 561,
|
|
|
|
|
"userName": "张欣"
|
|
|
|
|
},
|
|
|
|
|
"exChangeTime": null,
|
|
|
|
|
"keyValue": 67,
|
|
|
|
|
"planner": {
|
|
|
|
|
"userId": 521,
|
|
|
|
|
"userName": "测试"
|
|
|
|
|
},
|
|
|
|
|
"specDayPutDueTime": null,
|
|
|
|
|
"special": false,
|
|
|
|
|
"specialTitle": "否",
|
|
|
|
|
"teamLeader": {
|
|
|
|
|
"userId": 521,
|
|
|
|
|
"userName": "测试"
|
|
|
|
|
},
|
|
|
|
|
"teamMember": "03679、12649、12646、09391、03764、03723、123456、0001、admin、hak、崔殿龙",
|
|
|
|
|
"tsCode": "007",
|
|
|
|
|
"tsId": 67,
|
|
|
|
|
"tsName": "化学镀镍二班",
|
|
|
|
|
"tsType": null,
|
|
|
|
|
"tsTypeTitle": null,
|
|
|
|
|
"updateTime": "2023-02-06 13:12:05"
|
|
|
|
|
},
|
|
|
|
|
"demandDate": "2023-05-19",
|
|
|
|
|
"dispatcher": {
|
|
|
|
|
"userId": 561,
|
|
|
|
|
"userName": "张欣"
|
|
|
|
|
},
|
|
|
|
|
"frontProcedureSet": null,
|
|
|
|
|
"handoverTime": null,
|
|
|
|
|
"hrTypeBool": null,
|
|
|
|
|
"inventoryQty": 231.0,
|
|
|
|
|
"jcName": null,
|
|
|
|
|
"keyValue": 225,
|
|
|
|
|
"lastInstoreTime": null,
|
|
|
|
|
"lossQty": 2,
|
|
|
|
|
"mainProcessingUnit": "化学镀镍二班",
|
|
|
|
|
"makeQty": 231.0,
|
|
|
|
|
"makeTeam": {
|
|
|
|
|
"bsClassesSet": null,
|
|
|
|
|
"bsWorkCenter": null,
|
|
|
|
|
"createMan": {
|
|
|
|
|
"userId": 1,
|
|
|
|
|
"userName": "admin"
|
|
|
|
|
},
|
|
|
|
|
"createTime": "2023-02-06 13:12:05",
|
|
|
|
|
"dayPutDueTime": "00:00~13:30、13:45~19:30",
|
|
|
|
|
"deleted": false,
|
|
|
|
|
"dispatcher": {
|
|
|
|
|
"userId": 561,
|
|
|
|
|
"userName": "张欣"
|
|
|
|
|
},
|
|
|
|
|
"exChangeTime": null,
|
|
|
|
|
"keyValue": 67,
|
|
|
|
|
"planner": {
|
|
|
|
|
"userId": 521,
|
|
|
|
|
"userName": "测试"
|
|
|
|
|
},
|
|
|
|
|
"specDayPutDueTime": null,
|
|
|
|
|
"special": false,
|
|
|
|
|
"specialTitle": "否",
|
|
|
|
|
"teamLeader": {
|
|
|
|
|
"userId": 521,
|
|
|
|
|
"userName": "测试"
|
|
|
|
|
},
|
|
|
|
|
"teamMember": "03679、12649、12646、09391、03764、03723、123456、0001、admin、hak、崔殿龙",
|
|
|
|
|
"tsCode": "007",
|
|
|
|
|
"tsId": 67,
|
|
|
|
|
"tsName": "化学镀镍二班",
|
|
|
|
|
"tsType": null,
|
|
|
|
|
"tsTypeTitle": null,
|
|
|
|
|
"updateTime": "2023-02-06 13:12:05"
|
|
|
|
|
},
|
|
|
|
|
"makeUnit": "化学镀镍二班",
|
|
|
|
|
"meetCycle": 0,
|
|
|
|
|
"memo": null,
|
|
|
|
|
"mesCardNo": null,
|
|
|
|
|
"moCode": null,
|
|
|
|
|
"moLocal": null,
|
|
|
|
|
"nextBsOemCustomer": null,
|
|
|
|
|
"nextMakeTeam": {
|
|
|
|
|
"bsClassesSet": null,
|
|
|
|
|
"bsWorkCenter": null,
|
|
|
|
|
"createMan": {
|
|
|
|
|
"userId": 1,
|
|
|
|
|
"userName": "admin"
|
|
|
|
|
},
|
|
|
|
|
"createTime": "2023-02-06 13:12:05",
|
|
|
|
|
"dayPutDueTime": "00:00~13:30、13:45~19:30",
|
|
|
|
|
"deleted": false,
|
|
|
|
|
"dispatcher": {
|
|
|
|
|
"userId": 561,
|
|
|
|
|
"userName": "张欣"
|
|
|
|
|
},
|
|
|
|
|
"exChangeTime": null,
|
|
|
|
|
"keyValue": 67,
|
|
|
|
|
"planner": {
|
|
|
|
|
"userId": 521,
|
|
|
|
|
"userName": "测试"
|
|
|
|
|
},
|
|
|
|
|
"specDayPutDueTime": null,
|
|
|
|
|
"special": false,
|
|
|
|
|
"specialTitle": "否",
|
|
|
|
|
"teamLeader": {
|
|
|
|
|
"userId": 521,
|
|
|
|
|
"userName": "测试"
|
|
|
|
|
},
|
|
|
|
|
"teamMember": "03679、12649、12646、09391、03764、03723、123456、0001、admin、hak、崔殿龙",
|
|
|
|
|
"tsCode": "007",
|
|
|
|
|
"tsId": 67,
|
|
|
|
|
"tsName": "化学镀镍二班",
|
|
|
|
|
"tsType": null,
|
|
|
|
|
"tsTypeTitle": null,
|
|
|
|
|
"updateTime": "2023-02-06 13:12:05"
|
|
|
|
|
},
|
|
|
|
|
"nextOrders": "0011",
|
|
|
|
|
"nextProcedureSet": {
|
|
|
|
|
"assist": false,
|
|
|
|
|
"assistTitle": "否",
|
|
|
|
|
"createMan": {
|
|
|
|
|
"userId": 1,
|
|
|
|
|
"userName": "admin"
|
|
|
|
|
},
|
|
|
|
|
"createTime": "2022-11-15 10:30:45",
|
|
|
|
|
"cycle": 0.0,
|
|
|
|
|
"cyropactorControl": true,
|
|
|
|
|
"deleted": false,
|
|
|
|
|
"eleRate": true,
|
|
|
|
|
"eleStream": true,
|
|
|
|
|
"keyValue": 7,
|
|
|
|
|
"mainProcess": true,
|
|
|
|
|
"mainProcessTitle": "是",
|
|
|
|
|
"niValue": true,
|
|
|
|
|
"phValue": true,
|
|
|
|
|
"ppsCode": "003",
|
|
|
|
|
"ppsId": 7,
|
|
|
|
|
"ppsName": "化学镀镍",
|
|
|
|
|
"special": false,
|
|
|
|
|
"specialTitle": "否",
|
|
|
|
|
"team": null,
|
|
|
|
|
"updateTime": "2022-11-15 10:30:45",
|
|
|
|
|
"vSpeed": true
|
|
|
|
|
},
|
|
|
|
|
"notInQty": 0.0,
|
|
|
|
|
"nowWorkCenter": null,
|
|
|
|
|
"oem": false,
|
|
|
|
|
"oemOut": true,
|
|
|
|
|
"oemType": 1,
|
|
|
|
|
"oldRunStatus": null,
|
|
|
|
|
"orderMarkTitle": "热表中心",
|
|
|
|
|
"orderWoCode": "WO-2303122891-R01",
|
|
|
|
|
"orderWoCodeDeliverKey": null,
|
|
|
|
|
"orders": "0005",
|
|
|
|
|
"outTime": null,
|
|
|
|
|
"pgrId": null,
|
|
|
|
|
"pickingStatus": 1,
|
|
|
|
|
"pickingStatusTitle": "已领取",
|
|
|
|
|
"pjYieldOrder": {
|
|
|
|
|
"batchNo": "Y1312303356",
|
|
|
|
|
"bsProcedureQua": null,
|
|
|
|
|
"businessType": 1,
|
|
|
|
|
"businessTypeTitle": "热表中心",
|
|
|
|
|
"cardNo": "1016768549",
|
|
|
|
|
"craftId": null,
|
|
|
|
|
"curStatus": 0,
|
|
|
|
|
"curStatusTitle": "待接收",
|
|
|
|
|
"custodian": "张素霜",
|
|
|
|
|
"demandDate": "2024-12-31",
|
|
|
|
|
"dsCraft": null,
|
|
|
|
|
"dsPart": null,
|
|
|
|
|
"entrustDept": "采购与物流中心(成件)",
|
|
|
|
|
"failureMan": null,
|
|
|
|
|
"failureMemo": null,
|
|
|
|
|
"failureTime": null,
|
|
|
|
|
"fatherYoId": null,
|
|
|
|
|
"keyValue": 103838,
|
|
|
|
|
"manualIncrease": false,
|
|
|
|
|
"memo": "XXXX",
|
|
|
|
|
"newlevFlag": null,
|
|
|
|
|
"nextRoam": null,
|
|
|
|
|
"nextRoamName": null,
|
|
|
|
|
"partCode": "21E8-160-437-E9",
|
|
|
|
|
"partName": "24-屏蔽圈",
|
|
|
|
|
"pdmUrl": null,
|
|
|
|
|
"planUser": "朱文博1",
|
|
|
|
|
"plate": "XXX",
|
|
|
|
|
"poArea": 0.2016,
|
|
|
|
|
"poCode": "WO-2303122891",
|
|
|
|
|
"poMemo": null,
|
|
|
|
|
"poProdLine": null,
|
|
|
|
|
"poQty": 228.0,
|
|
|
|
|
"primaryCraft": "库1-2(机加)-4(表)-库2",
|
|
|
|
|
"priority": 1,
|
|
|
|
|
"prodIdent": "M",
|
|
|
|
|
"produceBool": false,
|
|
|
|
|
"productType": "XXXX",
|
|
|
|
|
"recseqno": null,
|
|
|
|
|
"releaseDate": "2023-03-16",
|
|
|
|
|
"reworkCode": null,
|
|
|
|
|
"reworkMemo": null,
|
|
|
|
|
"reworkNo": null,
|
|
|
|
|
"roamName": null,
|
|
|
|
|
"roamNo": "B441260",
|
|
|
|
|
"siteWork": false,
|
|
|
|
|
"sjKitPreparation": null,
|
|
|
|
|
"sjMoldPreparation": null,
|
|
|
|
|
"syncTime": "2023-03-27 19:36:24",
|
|
|
|
|
"useDept": "通讯工业产品部",
|
|
|
|
|
"useDeptcode": null,
|
|
|
|
|
"yieldType": 1,
|
|
|
|
|
"yoCode": "WX-2303956978",
|
|
|
|
|
"yoId": 103838
|
|
|
|
|
},
|
|
|
|
|
"planEndDate": "2023-04-01 10:01:18",
|
|
|
|
|
"planner": {
|
|
|
|
|
"userId": 521,
|
|
|
|
|
"userName": "测试"
|
|
|
|
|
},
|
|
|
|
|
"plateGoodsCode": null,
|
|
|
|
|
"plateSingleQuota": 0.0,
|
|
|
|
|
"plateSingleQuotaTotal": 0.0,
|
|
|
|
|
"printCode": "HZQD20230509002",
|
|
|
|
|
"printFlag": true,
|
|
|
|
|
"printMan": {
|
|
|
|
|
"userId": 1,
|
|
|
|
|
"userName": "admin"
|
|
|
|
|
},
|
|
|
|
|
"printTime": "2023-05-09 15:05:56",
|
|
|
|
|
"priority": 5,
|
|
|
|
|
"priorityTitle": "调度标注急件",
|
|
|
|
|
"procedureSet": {
|
|
|
|
|
"assist": false,
|
|
|
|
|
"assistTitle": "否",
|
|
|
|
|
"createMan": {
|
|
|
|
|
"userId": 1,
|
|
|
|
|
"userName": "admin"
|
|
|
|
|
},
|
|
|
|
|
"createTime": "2022-11-15 10:30:29",
|
|
|
|
|
"cycle": 0.0,
|
|
|
|
|
"cyropactorControl": false,
|
|
|
|
|
"deleted": false,
|
|
|
|
|
"eleRate": true,
|
|
|
|
|
"eleStream": true,
|
|
|
|
|
"keyValue": 6,
|
|
|
|
|
"mainProcess": true,
|
|
|
|
|
"mainProcessTitle": "是",
|
|
|
|
|
"niValue": false,
|
|
|
|
|
"phValue": false,
|
|
|
|
|
"ppsCode": "002",
|
|
|
|
|
"ppsId": 6,
|
|
|
|
|
"ppsName": "上挂",
|
|
|
|
|
"special": false,
|
|
|
|
|
"specialTitle": "否",
|
|
|
|
|
"team": null,
|
|
|
|
|
"updateTime": "2022-11-15 10:30:29",
|
|
|
|
|
"vSpeed": false
|
|
|
|
|
},
|
|
|
|
|
"processingUnit": "化学镀镍二班",
|
|
|
|
|
"producycle": 4,
|
|
|
|
|
"pushFlag": true,
|
|
|
|
|
"putStoreTime": "2023-06-13 14:59:06",
|
|
|
|
|
"qcReworkCode": null,
|
|
|
|
|
"quotaExceptional": false,
|
|
|
|
|
"reInStore": false,
|
|
|
|
|
"readStatus": null,
|
|
|
|
|
"readStatusTiTle": "未准备",
|
|
|
|
|
"recDept": null,
|
|
|
|
|
"receptionTime": null,
|
|
|
|
|
"reworkCode": "21231231",
|
|
|
|
|
"reworkMemo": null,
|
|
|
|
|
"reworkNo": null,
|
|
|
|
|
"rsCode": null,
|
|
|
|
|
"runStatus": 3,
|
|
|
|
|
"runStatusTitle": "加工中",
|
|
|
|
|
"schedStatus": 0,
|
|
|
|
|
"scrapQty": 0.0,
|
|
|
|
|
"sendDownTime": "2023-03-28 10:01:18",
|
|
|
|
|
"smBatch": "是",
|
|
|
|
|
"subList": null,
|
|
|
|
|
"subRunStatus": null,
|
|
|
|
|
"testQty": 1,
|
|
|
|
|
"tools": null,
|
|
|
|
|
"totalArea": 46.5696,
|
|
|
|
|
"woCode": "WO-2303122891-R01",
|
|
|
|
|
"woId": 225,
|
|
|
|
|
"wpId": 852,
|
|
|
|
|
"ybCode": null,
|
|
|
|
|
"ybLocal": null
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"approvalStatus": 1,
|
|
|
|
|
"batchArea": 0.8740418518,
|
|
|
|
|
"batchNo": "Y59823031722",
|
|
|
|
|
"bsOemCustomer": null,
|
|
|
|
|
"ca": "E4580-镀后接收",
|
|
|
|
|
"cardNo": "1016765246",
|
|
|
|
|
"closeMan": null,
|
|
|
|
|
"closeTime": null,
|
|
|
|
|
"collaborate": false,
|
|
|
|
|
"collaborateText": "否",
|
|
|
|
|
"createTime": "2023-07-28 23:59:59",
|
|
|
|
|
"currentBsOemCustomer": null,
|
|
|
|
|
"currentMakeTeam": {
|
|
|
|
|
"bsClassesSet": null,
|
|
|
|
|
"bsWorkCenter": null,
|
|
|
|
|
"createMan": {
|
|
|
|
|
"userId": 1,
|
|
|
|
|
"userName": "admin"
|
|
|
|
|
},
|
|
|
|
|
"createTime": "2023-02-06 12:52:22",
|
|
|
|
|
"dayPutDueTime": "24",
|
|
|
|
|
"deleted": false,
|
|
|
|
|
"dispatcher": {
|
|
|
|
|
"userId": 444,
|
|
|
|
|
"userName": "03889"
|
|
|
|
|
},
|
|
|
|
|
"exChangeTime": null,
|
|
|
|
|
"keyValue": 64,
|
|
|
|
|
"planner": {
|
|
|
|
|
"userId": 444,
|
|
|
|
|
"userName": "03889"
|
|
|
|
|
},
|
|
|
|
|
"specDayPutDueTime": null,
|
|
|
|
|
"special": false,
|
|
|
|
|
"specialTitle": "否",
|
|
|
|
|
"teamLeader": {
|
|
|
|
|
"userId": 88,
|
|
|
|
|
"userName": "03757"
|
|
|
|
|
},
|
|
|
|
|
"teamMember": "03662、04973、00660、03696、01026、03769、02051、03792、00722、59335、03831、1021、03956、03645、03693、03724、03701、admin、03705、03757、02379、03897、崔殿龙",
|
|
|
|
|
"tsCode": "004",
|
|
|
|
|
"tsId": 64,
|
|
|
|
|
"tsName": "零件管理班",
|
|
|
|
|
"tsType": null,
|
|
|
|
|
"tsTypeTitle": null,
|
|
|
|
|
"updateTime": "2023-02-06 12:52:22"
|
|
|
|
|
},
|
|
|
|
|
"demandDate": "2023-04-01",
|
|
|
|
|
"dispatcher": {
|
|
|
|
|
"userId": 355,
|
|
|
|
|
"userName": "07188"
|
|
|
|
|
},
|
|
|
|
|
"frontProcedureSet": {
|
|
|
|
|
"assist": true,
|
|
|
|
|
"assistTitle": "是",
|
|
|
|
|
"createMan": {
|
|
|
|
|
"userId": 1,
|
|
|
|
|
"userName": "admin"
|
|
|
|
|
},
|
|
|
|
|
"createTime": "2022-12-05 10:26:02",
|
|
|
|
|
"cycle": 0.0,
|
|
|
|
|
"cyropactorControl": false,
|
|
|
|
|
"deleted": false,
|
|
|
|
|
"eleRate": false,
|
|
|
|
|
"eleStream": false,
|
|
|
|
|
"keyValue": 21,
|
|
|
|
|
"mainProcess": false,
|
|
|
|
|
"mainProcessTitle": "否",
|
|
|
|
|
"niValue": false,
|
|
|
|
|
"phValue": false,
|
|
|
|
|
"ppsCode": "011",
|
|
|
|
|
"ppsId": 21,
|
|
|
|
|
"ppsName": "镀后检验",
|
|
|
|
|
"special": false,
|
|
|
|
|
"specialTitle": "否",
|
|
|
|
|
"team": null,
|
|
|
|
|
"updateTime": "2022-12-05 10:26:02",
|
|
|
|
|
"vSpeed": false
|
|
|
|
|
},
|
|
|
|
|
"handoverTime": null,
|
|
|
|
|
"hrTypeBool": null,
|
|
|
|
|
"inventoryQty": 26.0,
|
|
|
|
|
"jcName": null,
|
|
|
|
|
"keyValue": 288,
|
|
|
|
|
"lastInstoreTime": null,
|
|
|
|
|
"lossQty": 0,
|
|
|
|
|
"mainProcessingUnit": "化学镀镍一班郭家梁",
|
|
|
|
|
"makeQty": 26.0,
|
|
|
|
|
"makeTeam": {
|
|
|
|
|
"bsClassesSet": null,
|
|
|
|
|
"bsWorkCenter": {
|
|
|
|
|
"area": 13000.0,
|
|
|
|
|
"batchNo": null,
|
|
|
|
|
"bigBatch": false,
|
|
|
|
|
"bsJfCenter": {
|
|
|
|
|
"createMan": {
|
|
|
|
|
"userId": 1,
|
|
|
|
|
"userName": "admin"
|
|
|
|
|
},
|
|
|
|
|
"createTime": "2024-12-09 00:00:00",
|
|
|
|
|
"deleted": false,
|
|
|
|
|
"jcCode": "RBZX",
|
|
|
|
|
"jcId": 1,
|
|
|
|
|
"jcName": "热表中心",
|
|
|
|
|
"keyValue": 1,
|
|
|
|
|
"updateTime": "2024-12-09 00:00:00"
|
|
|
|
|
},
|
|
|
|
|
"checkout": false,
|
|
|
|
|
"craftAbility": "化学镀镍",
|
|
|
|
|
"createMan": {
|
|
|
|
|
"userId": 1,
|
|
|
|
|
"userName": "admin"
|
|
|
|
|
},
|
|
|
|
|
"createTime": "2023-02-06 12:31:36",
|
|
|
|
|
"deleted": false,
|
|
|
|
|
"describe": null,
|
|
|
|
|
"endPoint": null,
|
|
|
|
|
"keyValue": 81,
|
|
|
|
|
"leaderUser": {
|
|
|
|
|
"userId": 541,
|
|
|
|
|
"userName": "崔殿龙"
|
|
|
|
|
},
|
|
|
|
|
"limitType": 0,
|
|
|
|
|
"processes": "上挂、下挂、交检、化学镀镍、喷砂",
|
|
|
|
|
"quantity": null,
|
|
|
|
|
"roundCycle": null,
|
|
|
|
|
"saturation": 85.0,
|
|
|
|
|
"sign": "4",
|
|
|
|
|
"startPoint": null,
|
|
|
|
|
"team": "化学镀镍一班崔胜伟、化学镀镍一班郭家梁",
|
|
|
|
|
"updateTime": "2023-03-06 18:42:47",
|
|
|
|
|
"wcCode": "001",
|
|
|
|
|
"wcId": 81,
|
|
|
|
|
"wcName": "化学镀镍作业中心",
|
|
|
|
|
"whetherPlate": false
|
|
|
|
|
},
|
|
|
|
|
"createMan": {
|
|
|
|
|
"userId": 1,
|
|
|
|
|
"userName": "admin"
|
|
|
|
|
},
|
|
|
|
|
"createTime": "2023-02-06 13:10:00",
|
|
|
|
|
"dayPutDueTime": "00:00~19:00",
|
|
|
|
|
"deleted": false,
|
|
|
|
|
"dispatcher": {
|
|
|
|
|
"userId": 541,
|
|
|
|
|
"userName": "崔殿龙"
|
|
|
|
|
},
|
|
|
|
|
"exChangeTime": null,
|
|
|
|
|
"keyValue": 66,
|
|
|
|
|
"planner": {
|
|
|
|
|
"userId": 355,
|
|
|
|
|
"userName": "07188"
|
|
|
|
|
},
|
|
|
|
|
"specDayPutDueTime": null,
|
|
|
|
|
"special": false,
|
|
|
|
|
"specialTitle": "否",
|
|
|
|
|
"teamLeader": {
|
|
|
|
|
"userId": 70,
|
|
|
|
|
"userName": "06623"
|
|
|
|
|
},
|
|
|
|
|
"teamMember": "03781、03698、56498、12647、11231、10710、10731、06623、崔殿龙、admin、张欣",
|
|
|
|
|
"tsCode": "006",
|
|
|
|
|
"tsId": 66,
|
|
|
|
|
"tsName": "化学镀镍一班郭家梁",
|
|
|
|
|
"tsType": null,
|
|
|
|
|
"tsTypeTitle": null,
|
|
|
|
|
"updateTime": "2023-02-06 13:10:00"
|
|
|
|
|
},
|
|
|
|
|
"makeUnit": "化学镀镍一班郭家梁",
|
|
|
|
|
"meetCycle": 0,
|
|
|
|
|
"memo": null,
|
|
|
|
|
"mesCardNo": null,
|
|
|
|
|
"moCode": null,
|
|
|
|
|
"moLocal": null,
|
|
|
|
|
"nextBsOemCustomer": null,
|
|
|
|
|
"nextMakeTeam": null,
|
|
|
|
|
"nextOrders": null,
|
|
|
|
|
"nextProcedureSet": null,
|
|
|
|
|
"notInQty": 0.0,
|
|
|
|
|
"nowWorkCenter": null,
|
|
|
|
|
"oem": false,
|
|
|
|
|
"oemOut": true,
|
|
|
|
|
"oemType": 1,
|
|
|
|
|
"oldRunStatus": null,
|
|
|
|
|
"orderMarkTitle": "热表中心",
|
|
|
|
|
"orderWoCode": "WO-2303123426-R01",
|
|
|
|
|
"orderWoCodeDeliverKey": null,
|
|
|
|
|
"orders": "0030",
|
|
|
|
|
"outTime": "2023-09-06 12:00:00",
|
|
|
|
|
"pgrId": null,
|
|
|
|
|
"pickingStatus": 1,
|
|
|
|
|
"pickingStatusTitle": "已领取",
|
|
|
|
|
"pjYieldOrder": {
|
|
|
|
|
"batchNo": "Y59823031722",
|
|
|
|
|
"bsProcedureQua": null,
|
|
|
|
|
"businessType": 1,
|
|
|
|
|
"businessTypeTitle": "热表中心",
|
|
|
|
|
"cardNo": "1016765246",
|
|
|
|
|
"craftId": null,
|
|
|
|
|
"curStatus": 0,
|
|
|
|
|
"curStatusTitle": "待接收",
|
|
|
|
|
"custodian": "史力银",
|
|
|
|
|
"demandDate": "2023-03-26",
|
|
|
|
|
"dsCraft": null,
|
|
|
|
|
"dsPart": null,
|
|
|
|
|
"entrustDept": "采购与物流中心(成件)",
|
|
|
|
|
"failureMan": null,
|
|
|
|
|
"failureMemo": null,
|
|
|
|
|
"failureTime": null,
|
|
|
|
|
"fatherYoId": null,
|
|
|
|
|
"keyValue": 104803,
|
|
|
|
|
"manualIncrease": false,
|
|
|
|
|
"memo": "XXXX",
|
|
|
|
|
"newlevFlag": null,
|
|
|
|
|
"nextRoam": null,
|
|
|
|
|
"nextRoamName": null,
|
|
|
|
|
"partCode": "21E8-004-703-E9",
|
|
|
|
|
"partName": "J70A-9插座壳体",
|
|
|
|
|
"pdmUrl": null,
|
|
|
|
|
"planUser": "朱文博1",
|
|
|
|
|
"plate": "XXX",
|
|
|
|
|
"poArea": 0.0336169943,
|
|
|
|
|
"poCode": "WO-2303123426",
|
|
|
|
|
"poMemo": null,
|
|
|
|
|
"poProdLine": null,
|
|
|
|
|
"poQty": 26.0,
|
|
|
|
|
"primaryCraft": "库1-2(机加)-4(表)-库2",
|
|
|
|
|
"priority": 5,
|
|
|
|
|
"prodIdent": "JII",
|
|
|
|
|
"produceBool": false,
|
|
|
|
|
"productType": "XXXX",
|
|
|
|
|
"recseqno": null,
|
|
|
|
|
"releaseDate": "2023-03-16",
|
|
|
|
|
"reworkCode": null,
|
|
|
|
|
"reworkMemo": null,
|
|
|
|
|
"reworkNo": null,
|
|
|
|
|
"roamName": null,
|
|
|
|
|
"roamNo": "B222412",
|
|
|
|
|
"siteWork": true,
|
|
|
|
|
"sjKitPreparation": null,
|
|
|
|
|
"sjMoldPreparation": null,
|
|
|
|
|
"syncTime": "2023-03-28 11:21:01",
|
|
|
|
|
"useDept": "制造三部(绞针)",
|
|
|
|
|
"useDeptcode": null,
|
|
|
|
|
"yieldType": 1,
|
|
|
|
|
"yoCode": "WX-2303955886",
|
|
|
|
|
"yoId": 104803
|
|
|
|
|
},
|
|
|
|
|
"planEndDate": "2023-04-01 16:29:14",
|
|
|
|
|
"planner": {
|
|
|
|
|
"userId": 355,
|
|
|
|
|
"userName": "07188"
|
|
|
|
|
},
|
|
|
|
|
"plateGoodsCode": null,
|
|
|
|
|
"plateSingleQuota": 0.0,
|
|
|
|
|
"plateSingleQuotaTotal": 0.0,
|
|
|
|
|
"printCode": null,
|
|
|
|
|
"printFlag": false,
|
|
|
|
|
"printMan": {
|
|
|
|
|
"userId": 70,
|
|
|
|
|
"userName": "06623"
|
|
|
|
|
},
|
|
|
|
|
"printTime": null,
|
|
|
|
|
"priority": 5,
|
|
|
|
|
"priorityTitle": "调度标注急件",
|
|
|
|
|
"procedureSet": {
|
|
|
|
|
"assist": true,
|
|
|
|
|
"assistTitle": "是",
|
|
|
|
|
"createMan": {
|
|
|
|
|
"userId": 1,
|
|
|
|
|
"userName": "admin"
|
|
|
|
|
},
|
|
|
|
|
"createTime": "2022-11-15 10:31:41",
|
|
|
|
|
"cycle": 0.0,
|
|
|
|
|
"cyropactorControl": false,
|
|
|
|
|
"deleted": false,
|
|
|
|
|
"eleRate": false,
|
|
|
|
|
"eleStream": false,
|
|
|
|
|
"keyValue": 10,
|
|
|
|
|
"mainProcess": false,
|
|
|
|
|
"mainProcessTitle": "否",
|
|
|
|
|
"niValue": false,
|
|
|
|
|
"phValue": false,
|
|
|
|
|
"ppsCode": "006",
|
|
|
|
|
"ppsId": 10,
|
|
|
|
|
"ppsName": "镀后接收",
|
|
|
|
|
"special": false,
|
|
|
|
|
"specialTitle": "否",
|
|
|
|
|
"team": null,
|
|
|
|
|
"updateTime": "2022-11-15 10:31:41",
|
|
|
|
|
"vSpeed": false
|
|
|
|
|
},
|
|
|
|
|
"processingUnit": "零件管理班",
|
|
|
|
|
"producycle": 4,
|
|
|
|
|
"pushFlag": true,
|
|
|
|
|
"putStoreTime": "2023-03-31 17:36:25",
|
|
|
|
|
"qcReworkCode": null,
|
|
|
|
|
"quotaExceptional": false,
|
|
|
|
|
"reInStore": false,
|
|
|
|
|
"readStatus": null,
|
|
|
|
|
"readStatusTiTle": "未准备",
|
|
|
|
|
"recDept": null,
|
|
|
|
|
"receptionTime": "2023-09-01 12:00:00",
|
|
|
|
|
"reworkCode": null,
|
|
|
|
|
"reworkMemo": null,
|
|
|
|
|
"reworkNo": null,
|
|
|
|
|
"rsCode": null,
|
|
|
|
|
"runStatus": 3,
|
|
|
|
|
"runStatusTitle": "加工中",
|
|
|
|
|
"schedStatus": 0,
|
|
|
|
|
"scrapQty": 0.0,
|
|
|
|
|
"sendDownTime": "2023-03-28 16:29:14",
|
|
|
|
|
"smBatch": "是",
|
|
|
|
|
"subList": null,
|
|
|
|
|
"subRunStatus": null,
|
|
|
|
|
"testQty": 0,
|
|
|
|
|
"tools": null,
|
|
|
|
|
"totalArea": 0.8740418518,
|
|
|
|
|
"woCode": "WO-2303123426-R01",
|
|
|
|
|
"woId": 288,
|
|
|
|
|
"wpId": 1158,
|
|
|
|
|
"ybCode": null,
|
|
|
|
|
"ybLocal": null
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"approvalStatus": 1,
|
|
|
|
|
"batchArea": 0.0,
|
|
|
|
|
"batchNo": "L195230423701",
|
|
|
|
|
"bsOemCustomer": null,
|
|
|
|
|
"ca": "E4580-镀后接收",
|
|
|
|
|
"cardNo": "101682898401",
|
|
|
|
|
"closeMan": {
|
|
|
|
|
"userId": 541,
|
|
|
|
|
"userName": "崔殿龙"
|
|
|
|
|
},
|
|
|
|
|
"closeTime": "2023-06-16 17:21:24",
|
|
|
|
|
"collaborate": false,
|
|
|
|
|
"collaborateText": "否",
|
|
|
|
|
"createTime": "2023-06-16 17:20:39",
|
|
|
|
|
"currentBsOemCustomer": null,
|
|
|
|
|
"currentMakeTeam": {
|
|
|
|
|
"bsClassesSet": null,
|
|
|
|
|
"bsWorkCenter": null,
|
|
|
|
|
"createMan": {
|
|
|
|
|
"userId": 1,
|
|
|
|
|
"userName": "admin"
|
|
|
|
|
},
|
|
|
|
|
"createTime": "2023-02-06 12:52:22",
|
|
|
|
|
"dayPutDueTime": "24",
|
|
|
|
|
"deleted": false,
|
|
|
|
|
"dispatcher": {
|
|
|
|
|
"userId": 444,
|
|
|
|
|
"userName": "03889"
|
|
|
|
|
},
|
|
|
|
|
"exChangeTime": null,
|
|
|
|
|
"keyValue": 64,
|
|
|
|
|
"planner": {
|
|
|
|
|
"userId": 444,
|
|
|
|
|
"userName": "03889"
|
|
|
|
|
},
|
|
|
|
|
"specDayPutDueTime": null,
|
|
|
|
|
"special": false,
|
|
|
|
|
"specialTitle": "否",
|
|
|
|
|
"teamLeader": {
|
|
|
|
|
"userId": 88,
|
|
|
|
|
"userName": "03757"
|
|
|
|
|
},
|
|
|
|
|
"teamMember": "03662、04973、00660、03696、01026、03769、02051、03792、00722、59335、03831、1021、03956、03645、03693、03724、03701、admin、03705、03757、02379、03897、崔殿龙",
|
|
|
|
|
"tsCode": "004",
|
|
|
|
|
"tsId": 64,
|
|
|
|
|
"tsName": "零件管理班",
|
|
|
|
|
"tsType": null,
|
|
|
|
|
"tsTypeTitle": null,
|
|
|
|
|
"updateTime": "2023-02-06 12:52:22"
|
|
|
|
|
},
|
|
|
|
|
"demandDate": "2023-04-14",
|
|
|
|
|
"dispatcher": {
|
|
|
|
|
"userId": 355,
|
|
|
|
|
"userName": "07188"
|
|
|
|
|
},
|
|
|
|
|
"frontProcedureSet": {
|
|
|
|
|
"assist": true,
|
|
|
|
|
"assistTitle": "是",
|
|
|
|
|
"createMan": {
|
|
|
|
|
"userId": 1,
|
|
|
|
|
"userName": "admin"
|
|
|
|
|
},
|
|
|
|
|
"createTime": "2022-12-05 10:26:02",
|
|
|
|
|
"cycle": 0.0,
|
|
|
|
|
"cyropactorControl": false,
|
|
|
|
|
"deleted": false,
|
|
|
|
|
"eleRate": false,
|
|
|
|
|
"eleStream": false,
|
|
|
|
|
"keyValue": 21,
|
|
|
|
|
"mainProcess": false,
|
|
|
|
|
"mainProcessTitle": "否",
|
|
|
|
|
"niValue": false,
|
|
|
|
|
"phValue": false,
|
|
|
|
|
"ppsCode": "011",
|
|
|
|
|
"ppsId": 21,
|
|
|
|
|
"ppsName": "镀后检验",
|
|
|
|
|
"special": false,
|
|
|
|
|
"specialTitle": "否",
|
|
|
|
|
"team": null,
|
|
|
|
|
"updateTime": "2022-12-05 10:26:02",
|
|
|
|
|
"vSpeed": false
|
|
|
|
|
},
|
|
|
|
|
"handoverTime": null,
|
|
|
|
|
"hrTypeBool": null,
|
|
|
|
|
"inventoryQty": 1.0,
|
|
|
|
|
"jcName": null,
|
|
|
|
|
"keyValue": 8596,
|
|
|
|
|
"lastInstoreTime": null,
|
|
|
|
|
"lossQty": 0,
|
|
|
|
|
"mainProcessingUnit": "化学镀镍一班郭家梁",
|
|
|
|
|
"makeQty": 0.0,
|
|
|
|
|
"makeTeam": {
|
|
|
|
|
"bsClassesSet": null,
|
|
|
|
|
"bsWorkCenter": {
|
|
|
|
|
"area": 13000.0,
|
|
|
|
|
"batchNo": null,
|
|
|
|
|
"bigBatch": false,
|
|
|
|
|
"bsJfCenter": {
|
|
|
|
|
"createMan": {
|
|
|
|
|
"userId": 1,
|
|
|
|
|
"userName": "admin"
|
|
|
|
|
},
|
|
|
|
|
"createTime": "2024-12-09 00:00:00",
|
|
|
|
|
"deleted": false,
|
|
|
|
|
"jcCode": "RBZX",
|
|
|
|
|
"jcId": 1,
|
|
|
|
|
"jcName": "热表中心",
|
|
|
|
|
"keyValue": 1,
|
|
|
|
|
"updateTime": "2024-12-09 00:00:00"
|
|
|
|
|
},
|
|
|
|
|
"checkout": false,
|
|
|
|
|
"craftAbility": "化学镀镍",
|
|
|
|
|
"createMan": {
|
|
|
|
|
"userId": 1,
|
|
|
|
|
"userName": "admin"
|
|
|
|
|
},
|
|
|
|
|
"createTime": "2023-02-06 12:31:36",
|
|
|
|
|
"deleted": false,
|
|
|
|
|
"describe": null,
|
|
|
|
|
"endPoint": null,
|
|
|
|
|
"keyValue": 81,
|
|
|
|
|
"leaderUser": {
|
|
|
|
|
"userId": 541,
|
|
|
|
|
"userName": "崔殿龙"
|
|
|
|
|
},
|
|
|
|
|
"limitType": 0,
|
|
|
|
|
"processes": "上挂、下挂、交检、化学镀镍、喷砂",
|
|
|
|
|
"quantity": null,
|
|
|
|
|
"roundCycle": null,
|
|
|
|
|
"saturation": 85.0,
|
|
|
|
|
"sign": "4",
|
|
|
|
|
"startPoint": null,
|
|
|
|
|
"team": "化学镀镍一班崔胜伟、化学镀镍一班郭家梁",
|
|
|
|
|
"updateTime": "2023-03-06 18:42:47",
|
|
|
|
|
"wcCode": "001",
|
|
|
|
|
"wcId": 81,
|
|
|
|
|
"wcName": "化学镀镍作业中心",
|
|
|
|
|
"whetherPlate": false
|
|
|
|
|
},
|
|
|
|
|
"createMan": {
|
|
|
|
|
"userId": 1,
|
|
|
|
|
"userName": "admin"
|
|
|
|
|
},
|
|
|
|
|
"createTime": "2023-02-06 13:10:00",
|
|
|
|
|
"dayPutDueTime": "00:00~19:00",
|
|
|
|
|
"deleted": false,
|
|
|
|
|
"dispatcher": {
|
|
|
|
|
"userId": 541,
|
|
|
|
|
"userName": "崔殿龙"
|
|
|
|
|
},
|
|
|
|
|
"exChangeTime": null,
|
|
|
|
|
"keyValue": 66,
|
|
|
|
|
"planner": {
|
|
|
|
|
"userId": 355,
|
|
|
|
|
"userName": "07188"
|
|
|
|
|
},
|
|
|
|
|
"specDayPutDueTime": null,
|
|
|
|
|
"special": false,
|
|
|
|
|
"specialTitle": "否",
|
|
|
|
|
"teamLeader": {
|
|
|
|
|
"userId": 70,
|
|
|
|
|
"userName": "06623"
|
|
|
|
|
},
|
|
|
|
|
"teamMember": "03781、03698、56498、12647、11231、10710、10731、06623、崔殿龙、admin、张欣",
|
|
|
|
|
"tsCode": "006",
|
|
|
|
|
"tsId": 66,
|
|
|
|
|
"tsName": "化学镀镍一班郭家梁",
|
|
|
|
|
"tsType": null,
|
|
|
|
|
"tsTypeTitle": null,
|
|
|
|
|
"updateTime": "2023-02-06 13:10:00"
|
|
|
|
|
},
|
|
|
|
|
"makeUnit": "化学镀镍一班郭家梁",
|
|
|
|
|
"meetCycle": 0,
|
|
|
|
|
"memo": null,
|
|
|
|
|
"mesCardNo": null,
|
|
|
|
|
"moCode": null,
|
|
|
|
|
"moLocal": null,
|
|
|
|
|
"nextBsOemCustomer": null,
|
|
|
|
|
"nextMakeTeam": null,
|
|
|
|
|
"nextOrders": null,
|
|
|
|
|
"nextProcedureSet": null,
|
|
|
|
|
"notInQty": -1.0,
|
|
|
|
|
"nowWorkCenter": null,
|
|
|
|
|
"oem": false,
|
|
|
|
|
"oemOut": true,
|
|
|
|
|
"oemType": -1,
|
|
|
|
|
"oldRunStatus": null,
|
|
|
|
|
"orderMarkTitle": "热表中心",
|
|
|
|
|
"orderWoCode": "WO-2303184984-R02",
|
|
|
|
|
"orderWoCodeDeliverKey": null,
|
|
|
|
|
"orders": "0030",
|
|
|
|
|
"outTime": null,
|
|
|
|
|
"pgrId": null,
|
|
|
|
|
"pickingStatus": 0,
|
|
|
|
|
"pickingStatusTitle": "未领取",
|
|
|
|
|
"pjYieldOrder": {
|
|
|
|
|
"batchNo": "L1952304237",
|
|
|
|
|
"bsProcedureQua": null,
|
|
|
|
|
"businessType": 1,
|
|
|
|
|
"businessTypeTitle": "热表中心",
|
|
|
|
|
"cardNo": "1016828984",
|
|
|
|
|
"craftId": null,
|
|
|
|
|
"curStatus": 15,
|
|
|
|
|
"curStatusTitle": "已完工",
|
|
|
|
|
"custodian": "伏冰",
|
|
|
|
|
"demandDate": "2023-04-05",
|
|
|
|
|
"dsCraft": null,
|
|
|
|
|
"dsPart": null,
|
|
|
|
|
"entrustDept": "采购与物流中心(成件)",
|
|
|
|
|
"failureMan": null,
|
|
|
|
|
"failureMemo": null,
|
|
|
|
|
"failureTime": null,
|
|
|
|
|
"fatherYoId": null,
|
|
|
|
|
"keyValue": 146319,
|
|
|
|
|
"manualIncrease": false,
|
|
|
|
|
"memo": "WO-B",
|
|
|
|
|
"newlevFlag": null,
|
|
|
|
|
"nextRoam": null,
|
|
|
|
|
"nextRoamName": null,
|
|
|
|
|
"partCode": "21E8-004-3293-E9",
|
|
|
|
|
"partName": "J24HⅡ-37(38)插座壳体",
|
|
|
|
|
"pdmUrl": null,
|
|
|
|
|
"planUser": "王建华",
|
|
|
|
|
"plate": "XXX",
|
|
|
|
|
"poArea": 0.3442718262,
|
|
|
|
|
"poCode": "2303184984",
|
|
|
|
|
"poMemo": null,
|
|
|
|
|
"poProdLine": null,
|
|
|
|
|
"poQty": 90.0,
|
|
|
|
|
"primaryCraft": "库1-2(机加)-4(表)-库2",
|
|
|
|
|
"priority": 1,
|
|
|
|
|
"prodIdent": "JHT",
|
|
|
|
|
"produceBool": false,
|
|
|
|
|
"productType": "XXXX",
|
|
|
|
|
"recseqno": null,
|
|
|
|
|
"releaseDate": "2023-03-24",
|
|
|
|
|
"reworkCode": null,
|
|
|
|
|
"reworkMemo": null,
|
|
|
|
|
"reworkNo": null,
|
|
|
|
|
"roamName": null,
|
|
|
|
|
"roamNo": "B125016",
|
|
|
|
|
"siteWork": false,
|
|
|
|
|
"sjKitPreparation": null,
|
|
|
|
|
"sjMoldPreparation": null,
|
|
|
|
|
"syncTime": "2023-04-10 17:16:31",
|
|
|
|
|
"useDept": "制造三部(绞针)",
|
|
|
|
|
"useDeptcode": null,
|
|
|
|
|
"yieldType": 1,
|
|
|
|
|
"yoCode": "WX-2303985384",
|
|
|
|
|
"yoId": 146319
|
|
|
|
|
},
|
|
|
|
|
"planEndDate": "2023-04-14 21:17:11",
|
|
|
|
|
"planner": {
|
|
|
|
|
"userId": 355,
|
|
|
|
|
"userName": "07188"
|
|
|
|
|
},
|
|
|
|
|
"plateGoodsCode": null,
|
|
|
|
|
"plateSingleQuota": 0.0,
|
|
|
|
|
"plateSingleQuotaTotal": 0.0,
|
|
|
|
|
"printCode": null,
|
|
|
|
|
"printFlag": false,
|
|
|
|
|
"printMan": {
|
|
|
|
|
"userId": 70,
|
|
|
|
|
"userName": "06623"
|
|
|
|
|
},
|
|
|
|
|
"printTime": null,
|
|
|
|
|
"priority": 5,
|
|
|
|
|
"priorityTitle": "调度标注急件",
|
|
|
|
|
"procedureSet": {
|
|
|
|
|
"assist": true,
|
|
|
|
|
"assistTitle": "是",
|
|
|
|
|
"createMan": {
|
|
|
|
|
"userId": 1,
|
|
|
|
|
"userName": "admin"
|
|
|
|
|
},
|
|
|
|
|
"createTime": "2022-11-15 10:31:41",
|
|
|
|
|
"cycle": 0.0,
|
|
|
|
|
"cyropactorControl": false,
|
|
|
|
|
"deleted": false,
|
|
|
|
|
"eleRate": false,
|
|
|
|
|
"eleStream": false,
|
|
|
|
|
"keyValue": 10,
|
|
|
|
|
"mainProcess": false,
|
|
|
|
|
"mainProcessTitle": "否",
|
|
|
|
|
"niValue": false,
|
|
|
|
|
"phValue": false,
|
|
|
|
|
"ppsCode": "006",
|
|
|
|
|
"ppsId": 10,
|
|
|
|
|
"ppsName": "镀后接收",
|
|
|
|
|
"special": false,
|
|
|
|
|
"specialTitle": "否",
|
|
|
|
|
"team": null,
|
|
|
|
|
"updateTime": "2022-11-15 10:31:41",
|
|
|
|
|
"vSpeed": false
|
|
|
|
|
},
|
|
|
|
|
"processingUnit": "零件管理班",
|
|
|
|
|
"producycle": 4,
|
|
|
|
|
"pushFlag": true,
|
|
|
|
|
"putStoreTime": "2023-11-02 17:40:03",
|
|
|
|
|
"qcReworkCode": null,
|
|
|
|
|
"quotaExceptional": false,
|
|
|
|
|
"reInStore": false,
|
|
|
|
|
"readStatus": null,
|
|
|
|
|
"readStatusTiTle": "未准备",
|
|
|
|
|
"recDept": null,
|
|
|
|
|
"receptionTime": null,
|
|
|
|
|
"reworkCode": null,
|
|
|
|
|
"reworkMemo": null,
|
|
|
|
|
"reworkNo": null,
|
|
|
|
|
"rsCode": null,
|
|
|
|
|
"runStatus": 3,
|
|
|
|
|
"runStatusTitle": "加工中",
|
|
|
|
|
"schedStatus": 0,
|
|
|
|
|
"scrapQty": 0.0,
|
|
|
|
|
"sendDownTime": "2023-04-10 21:17:11",
|
|
|
|
|
"smBatch": "是",
|
|
|
|
|
"subList": null,
|
|
|
|
|
"subRunStatus": null,
|
|
|
|
|
"testQty": 0,
|
|
|
|
|
"tools": null,
|
|
|
|
|
"totalArea": 0.0,
|
|
|
|
|
"woCode": "WO-2303184984-R02",
|
|
|
|
|
"woId": 8596,
|
|
|
|
|
"wpId": 56917,
|
|
|
|
|
"ybCode": null,
|
|
|
|
|
"ybLocal": null
|
|
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
this.page.total = this.data.length
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style></style>
|