|
|
|
|
<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" @click="handlePrintTags">过程记录打印</el-button>
|
|
|
|
|
<el-button type="primary" @click="priorityFn">优先级调整</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
<template #menu-right>
|
|
|
|
|
<el-button type="success" plain @click="queryOrdersHandle">在制品</el-button>
|
|
|
|
|
<el-button type="warning" plain>加工中</el-button>
|
|
|
|
|
<el-button type="danger" plain>检验中</el-button>
|
|
|
|
|
<el-button type="success" plain>已完工</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
<template #menu="scope">
|
|
|
|
|
<el-button type="text" @click="clickProduction(scope.row)">生产监控</el-button>
|
|
|
|
|
<el-button type="text" @click="handleClose(scope.row)" v-show="scope.row.runStatus < 15">关闭</el-button>
|
|
|
|
|
<el-button type="text" @click="handleBatches(scope.row)"
|
|
|
|
|
v-if="[2, 3, 4, 6].includes(scope.row.runStatus)">分批</el-button>
|
|
|
|
|
<el-button type="text" @click="priorityFn(scope.row)" v-if="scope.row.runStatus === 2">优先级调整</el-button>
|
|
|
|
|
<el-button type="text" @click="handleAbnormal(scope.row)"
|
|
|
|
|
v-if="scope.row.runStatus === 3 || scope.row.runStatus === 4">异常申报</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
<template #tsName="{ row }">{{ row.makeTeam && row.makeTeam.tsName }}</template>
|
|
|
|
|
<template #ppsName="{ row }">{{
|
|
|
|
|
row.procedureSet && row.procedureSet.ppsName
|
|
|
|
|
}}</template>
|
|
|
|
|
<template #planTime1="{ row }">
|
|
|
|
|
{{ Array.isArray(row.planTime1) ? row.planTime1.join(' ~ ') : (row.planTime1 || '-') }}
|
|
|
|
|
</template>
|
|
|
|
|
<template #planTime="{ row }">
|
|
|
|
|
{{ Array.isArray(row.planTime) ? row.planTime.join(' ~ ') : (row.planTime || '-') }}
|
|
|
|
|
</template>
|
|
|
|
|
<template #putStoreTime="{ row }">
|
|
|
|
|
{{ Array.isArray(row.putStoreTime) ? row.putStoreTime.join(' ~ ') : (row.putStoreTime || '-') }}
|
|
|
|
|
</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>
|
|
|
|
|
<!-- 生产监控 -->
|
|
|
|
|
<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>
|
|
|
|
|
<!-- 异常处理 -->
|
|
|
|
|
<abnormalDialog :show-abnormal="showAbnormal" @closeDialog="closeDialog"></abnormalDialog>
|
|
|
|
|
<productionMonitoringDialog :showDialog="isPriorityOpen" v-if="isPriorityOpen" @closeDialog="closeDialog"
|
|
|
|
|
@submitPriority="handlePrioritySubmit"></productionMonitoringDialog>
|
|
|
|
|
</basic-container>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import productionDialog from "../../components/productionDialog.vue";
|
|
|
|
|
import batchesDialog from "../../components/batchesDialog.vue";
|
|
|
|
|
import closedDialog from "../../components/closedDialog.vue";
|
|
|
|
|
import abnormalDialog from '../../components/abnormalDialog.vue'
|
|
|
|
|
import productionMonitoringDialog from '../../components/productionMonitoringDialog.vue'
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
productionDialog,
|
|
|
|
|
batchesDialog,
|
|
|
|
|
closedDialog,
|
|
|
|
|
abnormalDialog,
|
|
|
|
|
productionMonitoringDialog
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
isPriorityOpen: false,
|
|
|
|
|
showAbnormal: false,
|
|
|
|
|
showRadio: true,
|
|
|
|
|
monitorDialog: false,
|
|
|
|
|
showBatches: false,
|
|
|
|
|
showClose: 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: 260,
|
|
|
|
|
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: "ppsName",
|
|
|
|
|
fixed: "left",
|
|
|
|
|
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: "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: 6,
|
|
|
|
|
label: "审理中",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 5,
|
|
|
|
|
label: "工艺变更",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 19,
|
|
|
|
|
label: "已返工",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 15,
|
|
|
|
|
label: "已完成",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 21,
|
|
|
|
|
label: "已作废",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "领料状态",
|
|
|
|
|
prop: "llStatus",
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
hide: true,
|
|
|
|
|
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: "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: "yoCode",
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入生产订单号",
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "计划单号",
|
|
|
|
|
prop: "str1",
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入计划单号",
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "返工单号",
|
|
|
|
|
prop: "str2",
|
|
|
|
|
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: "productModel",
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入产品名称",
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "产品名称",
|
|
|
|
|
prop: "str3",
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入产品名称",
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "流程卡号",
|
|
|
|
|
prop: "cardNo",
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
hide: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入流程卡号",
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
label: "MES流程卡号",
|
|
|
|
|
prop: "str4",
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入MES流程卡号",
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "生产标识",
|
|
|
|
|
prop: "prodIdent",
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入生产标识",
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},{
|
|
|
|
|
label: "镀种信息",
|
|
|
|
|
prop: "str",
|
|
|
|
|
search: false,
|
|
|
|
|
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: "面积(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: "priorityTitle",
|
|
|
|
|
type: "select",
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入订单优先级",
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
dicData: [
|
|
|
|
|
{
|
|
|
|
|
value: 1,
|
|
|
|
|
label: "一级(ERP优先级)",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 2,
|
|
|
|
|
label: "二级",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 3,
|
|
|
|
|
label: "三级",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
label: "需求部门",
|
|
|
|
|
prop: "str0",
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
hide: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入调需求部门",
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "需求交期",
|
|
|
|
|
prop: "str5",
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入需求交期",
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "会议要求周期",
|
|
|
|
|
prop: "str6",
|
|
|
|
|
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: "planTime",
|
|
|
|
|
sortable: true,
|
|
|
|
|
filter: true,
|
|
|
|
|
selectWidth: 150,
|
|
|
|
|
span: 12,
|
|
|
|
|
search: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
searchSpan: 8,
|
|
|
|
|
type: 'datetimerange',
|
|
|
|
|
format: 'YYYY-MM-DD HH:mm:ss',
|
|
|
|
|
valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
|
|
|
|
startPlaceholder: '开始日期',
|
|
|
|
|
endPlaceholder: '结束日期',
|
|
|
|
|
rangeSeparator: '-',
|
|
|
|
|
searchRange: true,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请选择日期范围",
|
|
|
|
|
trigger: "change",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "计划完工时间",
|
|
|
|
|
prop: "planTime1",
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
type: "datetimerange",
|
|
|
|
|
format: 'YYYY-MM-DD HH:mm:ss',
|
|
|
|
|
valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
|
|
|
|
startPlaceholder: '时间日期开始',
|
|
|
|
|
endPlaceholder: '时间日期结束',
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入计划下达时间",
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "镀后入库时间",
|
|
|
|
|
prop: "putStoreTime",
|
|
|
|
|
sortable: true,
|
|
|
|
|
filter: true,
|
|
|
|
|
span: 12,
|
|
|
|
|
search: true,
|
|
|
|
|
searchSpan: 8,
|
|
|
|
|
width: 200,
|
|
|
|
|
type: 'datetimerange',
|
|
|
|
|
format: 'YYYY-MM-DD HH:mm:ss',
|
|
|
|
|
valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
|
|
|
|
startPlaceholder: '开始日期',
|
|
|
|
|
endPlaceholder: '结束日期',
|
|
|
|
|
rangeSeparator: '-',
|
|
|
|
|
searchRange: true,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请选择日期范围",
|
|
|
|
|
trigger: "change",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "生产数量",
|
|
|
|
|
prop: "productionQuantity",
|
|
|
|
|
search: false,
|
|
|
|
|
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: "testQuantity",
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
overHidden: true,
|
|
|
|
|
width: 200,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入试验数量",
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "报废数量",
|
|
|
|
|
prop: "scrapQuantity",
|
|
|
|
|
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",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
mounted() { },
|
|
|
|
|
methods: {
|
|
|
|
|
// 优先级调整
|
|
|
|
|
priorityFn(row) {
|
|
|
|
|
this.rowItem = row;
|
|
|
|
|
console.log(row.runStatus, 123)
|
|
|
|
|
this.isPriorityOpen = true
|
|
|
|
|
// console.log(runStatus,123)
|
|
|
|
|
},
|
|
|
|
|
handlePrioritySubmit(data) {
|
|
|
|
|
this.$message.success(`优先级已调整为${data.priority === 1 ? '一级' : data.priority === 2 ? '二级' : '三级'}`);
|
|
|
|
|
},
|
|
|
|
|
selectionChange(val) {
|
|
|
|
|
this.selectionList = val;
|
|
|
|
|
},
|
|
|
|
|
// 分批
|
|
|
|
|
handleBatches() {
|
|
|
|
|
this.showBatches = true;
|
|
|
|
|
},
|
|
|
|
|
// 关闭
|
|
|
|
|
handleClose() {
|
|
|
|
|
this.showClose = true;
|
|
|
|
|
},
|
|
|
|
|
// 生产监控
|
|
|
|
|
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() {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
processingHandle() {
|
|
|
|
|
const targetStatuses = [3, 5, 4, 6];
|
|
|
|
|
const filteredData = this.data.filter(item => targetStatuses.includes(item.runStatus));
|
|
|
|
|
const originalData = [...this.data];
|
|
|
|
|
this.data = filteredData;
|
|
|
|
|
this.$message.success(`已筛选出${filteredData.length}条符合条件的订单`);
|
|
|
|
|
},
|
|
|
|
|
// 异常申报
|
|
|
|
|
handleAbnormal() {
|
|
|
|
|
this.showAbnormal = true
|
|
|
|
|
},
|
|
|
|
|
// 关闭弹窗
|
|
|
|
|
closeDialog() {
|
|
|
|
|
this.monitorDialog = false;
|
|
|
|
|
this.showBatches = false;
|
|
|
|
|
this.showClose = false;
|
|
|
|
|
this.showAbnormal = false
|
|
|
|
|
this.isPriorityOpen = 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",
|
|
|
|
|
productModel: "E386",
|
|
|
|
|
str1: '1',
|
|
|
|
|
fenzhong: 100,
|
|
|
|
|
formingThickness: 20,
|
|
|
|
|
planTime: "2021-08-11 00:00:00",
|
|
|
|
|
planTime1: "2021-08-12 00:00:00",
|
|
|
|
|
testQuantity: 10,
|
|
|
|
|
scrapQuantity: 10,
|
|
|
|
|
productionQuantity: 100,
|
|
|
|
|
materialNo: "1016768549",
|
|
|
|
|
str3: "化学镀镍",
|
|
|
|
|
str4: "1016768549",
|
|
|
|
|
yoCode: "YO1312303356",
|
|
|
|
|
sjCode: "SJ1312303356",
|
|
|
|
|
sjPartCode: "LJ1312303356",
|
|
|
|
|
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,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
productModel: "E386",
|
|
|
|
|
str1: '1',
|
|
|
|
|
fenzhong: 100,
|
|
|
|
|
formingThickness: 20,
|
|
|
|
|
planTime: "2021-08-11 00:00:00",
|
|
|
|
|
planTime1: "2021-08-12 00:00:00",
|
|
|
|
|
testQuantity: 10,
|
|
|
|
|
scrapQuantity: 10,
|
|
|
|
|
productionQuantity: 100,
|
|
|
|
|
materialNo: "1016768549",
|
|
|
|
|
str3: "化学镀镍",
|
|
|
|
|
str4: "1016768549",
|
|
|
|
|
yoCode: "YO1312303356",
|
|
|
|
|
sjCode: "SJ1312303356",
|
|
|
|
|
sjPartCode: "LJ1312303356",
|
|
|
|
|
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: 2,
|
|
|
|
|
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,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
productModel: "E386",
|
|
|
|
|
str1: '1',
|
|
|
|
|
fenzhong: 100,
|
|
|
|
|
formingThickness: 20,
|
|
|
|
|
planTime: "2021-08-11 00:00:00",
|
|
|
|
|
planTime1: "2021-08-12 00:00:00",
|
|
|
|
|
testQuantity: 10,
|
|
|
|
|
scrapQuantity: 10,
|
|
|
|
|
productionQuantity: 100,
|
|
|
|
|
materialNo: "1016768549",
|
|
|
|
|
str3: "化学镀镍",
|
|
|
|
|
str4: "1016768549",
|
|
|
|
|
yoCode: "YO1312303356",
|
|
|
|
|
sjCode: "SJ1312303356",
|
|
|
|
|
sjPartCode: "LJ1312303356",
|
|
|
|
|
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: 4,
|
|
|
|
|
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,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
productModel: "E386",
|
|
|
|
|
str1: '1',
|
|
|
|
|
fenzhong: 100,
|
|
|
|
|
formingThickness: 20,
|
|
|
|
|
planTime: "2021-08-11 00:00:00",
|
|
|
|
|
planTime1: "2021-08-12 00:00:00",
|
|
|
|
|
testQuantity: 10,
|
|
|
|
|
scrapQuantity: 10,
|
|
|
|
|
productionQuantity: 100,
|
|
|
|
|
materialNo: "1016768549",
|
|
|
|
|
str3: "化学镀镍",
|
|
|
|
|
str4: "1016768549",
|
|
|
|
|
yoCode: "YO1312303356",
|
|
|
|
|
sjCode: "SJ1312303356",
|
|
|
|
|
sjPartCode: "LJ1312303356",
|
|
|
|
|
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: 6,
|
|
|
|
|
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,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
productModel: "E386",
|
|
|
|
|
str1: '1',
|
|
|
|
|
fenzhong: 100,
|
|
|
|
|
formingThickness: 20,
|
|
|
|
|
planTime: "2021-08-11 00:00:00",
|
|
|
|
|
planTime1: "2021-08-12 00:00:00",
|
|
|
|
|
testQuantity: 10,
|
|
|
|
|
scrapQuantity: 10,
|
|
|
|
|
productionQuantity: 100,
|
|
|
|
|
materialNo: "1016768549",
|
|
|
|
|
str3: "化学镀镍",
|
|
|
|
|
str4: "1016768549",
|
|
|
|
|
yoCode: "YO1312303356",
|
|
|
|
|
sjCode: "SJ1312303356",
|
|
|
|
|
sjPartCode: "LJ1312303356",
|
|
|
|
|
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: 5,
|
|
|
|
|
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,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
productModel: "E386",
|
|
|
|
|
str1: '1',
|
|
|
|
|
fenzhong: 100,
|
|
|
|
|
formingThickness: 20,
|
|
|
|
|
planTime: "2021-08-11 00:00:00",
|
|
|
|
|
planTime1: "2021-08-12 00:00:00",
|
|
|
|
|
testQuantity: 10,
|
|
|
|
|
scrapQuantity: 10,
|
|
|
|
|
productionQuantity: 100,
|
|
|
|
|
materialNo: "1016768549",
|
|
|
|
|
str3: "化学镀镍",
|
|
|
|
|
str4: "1016768549",
|
|
|
|
|
yoCode: "YO1312303356",
|
|
|
|
|
sjCode: "SJ1312303356",
|
|
|
|
|
sjPartCode: "LJ1312303356",
|
|
|
|
|
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: 19,
|
|
|
|
|
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,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
];
|
|
|
|
|
this.page.total = this.data.length;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style></style>
|