|
|
|
|
@ -35,6 +35,7 @@ |
|
|
|
|
</basic-container> |
|
|
|
|
</template> |
|
|
|
|
<script> |
|
|
|
|
import {getList,oemApproval} from "@/api/outsourcingManagement/oemApproval" |
|
|
|
|
import approvalDialog from "./approvalDialog.vue"; |
|
|
|
|
export default { |
|
|
|
|
components: { |
|
|
|
|
@ -67,7 +68,7 @@ export default { |
|
|
|
|
editBtnIcon: " ", |
|
|
|
|
viewBtnText: "详情", |
|
|
|
|
labelWidth: 120, |
|
|
|
|
menuWidth: 120, |
|
|
|
|
menuWidth: 80, |
|
|
|
|
dialogWidth: 1040, |
|
|
|
|
dialogClickModal: false, |
|
|
|
|
searchEnter: true, |
|
|
|
|
@ -81,7 +82,7 @@ export default { |
|
|
|
|
searchLabelPosition: "left", |
|
|
|
|
searchGutter: 24, |
|
|
|
|
searchSpan: 6, |
|
|
|
|
menuAlign: "left", |
|
|
|
|
menuAlign: "center", |
|
|
|
|
gridBtn: false, |
|
|
|
|
searchMenuPosition: "right", |
|
|
|
|
addBtnIcon: " ", |
|
|
|
|
@ -103,7 +104,7 @@ export default { |
|
|
|
|
{ |
|
|
|
|
label: "零件号", |
|
|
|
|
prop: "partCode", |
|
|
|
|
bind: "prWorkOrder.pjYieldOrder.partCode", |
|
|
|
|
// bind: "prWorkOrder.pjYieldOrder.partCode", |
|
|
|
|
sortable: true, |
|
|
|
|
filter: true, |
|
|
|
|
span: 12, |
|
|
|
|
@ -113,7 +114,7 @@ export default { |
|
|
|
|
{ |
|
|
|
|
label: "批次号", |
|
|
|
|
prop: "batchNo", |
|
|
|
|
bind: "prWorkOrder.batchNo", |
|
|
|
|
// bind: "prWorkOrder.batchNo", |
|
|
|
|
sortable: true, |
|
|
|
|
filter: true, |
|
|
|
|
span: 12, |
|
|
|
|
@ -123,7 +124,7 @@ export default { |
|
|
|
|
{ |
|
|
|
|
label: "产品名称", |
|
|
|
|
prop: "partName", |
|
|
|
|
bind: "prWorkOrder.pjYieldOrder.partName", |
|
|
|
|
// bind: "prWorkOrder.pjYieldOrder.partName", |
|
|
|
|
sortable: true, |
|
|
|
|
filter: true, |
|
|
|
|
span: 12, |
|
|
|
|
@ -132,8 +133,8 @@ export default { |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: "生产标识", |
|
|
|
|
prop: "prodIdent", |
|
|
|
|
bind: "prWorkOrder.pjYieldOrder.prodIdent", |
|
|
|
|
prop: "productIdent", |
|
|
|
|
// bind: "prWorkOrder.pjYieldOrder.prodIdent", |
|
|
|
|
sortable: true, |
|
|
|
|
filter: true, |
|
|
|
|
span: 12, |
|
|
|
|
@ -143,7 +144,7 @@ export default { |
|
|
|
|
{ |
|
|
|
|
label: "生产数量", |
|
|
|
|
prop: "makeQty", |
|
|
|
|
bind: "prWorkOrder.makeQty", |
|
|
|
|
// bind: "prWorkOrder.makeQty", |
|
|
|
|
sortable: true, |
|
|
|
|
filter: true, |
|
|
|
|
span: 12, |
|
|
|
|
@ -152,8 +153,8 @@ export default { |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: "面积(d㎡)", |
|
|
|
|
prop: "poArea", |
|
|
|
|
bind: "prWorkOrder.pjYieldOrder.poArea", |
|
|
|
|
prop: "totalArea", |
|
|
|
|
// bind: "prWorkOrder.pjYieldOrder.poArea", |
|
|
|
|
sortable: true, |
|
|
|
|
filter: true, |
|
|
|
|
span: 12, |
|
|
|
|
@ -206,8 +207,8 @@ export default { |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: "申请人", |
|
|
|
|
prop: "userName", |
|
|
|
|
bind: "createMan.userName", |
|
|
|
|
prop: "proposer", |
|
|
|
|
// bind: "createMan.userName", |
|
|
|
|
sortable: true, |
|
|
|
|
filter: true, |
|
|
|
|
span: 12, |
|
|
|
|
@ -216,8 +217,8 @@ export default { |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: "审批人", |
|
|
|
|
prop: "userName", |
|
|
|
|
bind: "approvalMan.userName", |
|
|
|
|
prop: "approver", |
|
|
|
|
// bind: "approvalMan.userName", |
|
|
|
|
sortable: true, |
|
|
|
|
filter: true, |
|
|
|
|
span: 12, |
|
|
|
|
@ -245,6 +246,8 @@ export default { |
|
|
|
|
], |
|
|
|
|
}, |
|
|
|
|
form: {}, |
|
|
|
|
query:{}, |
|
|
|
|
loading:false, |
|
|
|
|
page: { |
|
|
|
|
pageSize: 10, |
|
|
|
|
currentPage: 1, |
|
|
|
|
@ -255,10 +258,18 @@ export default { |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
approval(row) { |
|
|
|
|
console.log('row--------',row) |
|
|
|
|
if(!row && this.selectionList.length == 0){ |
|
|
|
|
this.$message.error("请至少选择一条数据"); |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
this.isOpen = true; |
|
|
|
|
}, |
|
|
|
|
closeDialog() { |
|
|
|
|
closeDialog(val) { |
|
|
|
|
this.isOpen = false; |
|
|
|
|
if(val){ |
|
|
|
|
this.onLoad() |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
handleDelete() { |
|
|
|
|
if (this.selectionList.length === 0) { |
|
|
|
|
@ -277,316 +288,326 @@ export default { |
|
|
|
|
}, |
|
|
|
|
onLoad() { |
|
|
|
|
this.loading = true; |
|
|
|
|
this.data = [ |
|
|
|
|
{ |
|
|
|
|
approvalMan: null, |
|
|
|
|
approvalMemo: null, |
|
|
|
|
approvalTime: null, |
|
|
|
|
collaborate: true, |
|
|
|
|
createMan: { |
|
|
|
|
userId: 541, |
|
|
|
|
userName: "崔殿龙", |
|
|
|
|
}, |
|
|
|
|
createTime: "2024-01-22 09:48:54", |
|
|
|
|
deliverKey: null, |
|
|
|
|
inCustomer: null, |
|
|
|
|
inTeam: null, |
|
|
|
|
keyValue: 8246, |
|
|
|
|
memo: "11111", |
|
|
|
|
outCustomer: null, |
|
|
|
|
outTeam: { |
|
|
|
|
tsCode: "006", |
|
|
|
|
tsId: 66, |
|
|
|
|
tsName: "化学镀镍一班郭家梁", |
|
|
|
|
}, |
|
|
|
|
prWorkOrder: { |
|
|
|
|
approvalStatus: 2, |
|
|
|
|
batchArea: 43.48, |
|
|
|
|
batchNo: "Y0382304283", |
|
|
|
|
bsOemCustomer: null, |
|
|
|
|
ca: "E386-化学镀镍", |
|
|
|
|
cardNo: "1016870429", |
|
|
|
|
closeMan: null, |
|
|
|
|
closeTime: null, |
|
|
|
|
collaborate: false, |
|
|
|
|
collaborateText: "否", |
|
|
|
|
createTime: "2023-04-14 18:19:35", |
|
|
|
|
currentBsOemCustomer: null, |
|
|
|
|
currentMakeTeam: { |
|
|
|
|
tsCode: "006", |
|
|
|
|
tsId: 66, |
|
|
|
|
tsName: "化学镀镍一班郭家梁", |
|
|
|
|
}, |
|
|
|
|
demandDate: "2023-04-18", |
|
|
|
|
dispatcher: { |
|
|
|
|
userId: 355, |
|
|
|
|
userName: "07188", |
|
|
|
|
}, |
|
|
|
|
frontProcedureSet: null, |
|
|
|
|
handoverTime: null, |
|
|
|
|
hrTypeBool: null, |
|
|
|
|
inventoryQty: 0.0, |
|
|
|
|
jcName: null, |
|
|
|
|
keyValue: 2485, |
|
|
|
|
lastInstoreTime: null, |
|
|
|
|
lossQty: 0, |
|
|
|
|
mainProcessingUnit: "化学镀镍一班郭家梁", |
|
|
|
|
makeQty: 100.0, |
|
|
|
|
makeTeam: { |
|
|
|
|
tsCode: "006", |
|
|
|
|
tsId: 66, |
|
|
|
|
tsName: "化学镀镍一班郭家梁", |
|
|
|
|
}, |
|
|
|
|
makeUnit: "化学镀镍一班郭家梁", |
|
|
|
|
meetCycle: 0, |
|
|
|
|
memo: null, |
|
|
|
|
mesCardNo: null, |
|
|
|
|
moCode: null, |
|
|
|
|
moLocal: null, |
|
|
|
|
nextBsOemCustomer: null, |
|
|
|
|
nextMakeTeam: { |
|
|
|
|
tsCode: "006", |
|
|
|
|
tsId: 66, |
|
|
|
|
tsName: "化学镀镍一班郭家梁", |
|
|
|
|
}, |
|
|
|
|
nextOrders: "0010", |
|
|
|
|
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: 100.0, |
|
|
|
|
nowWorkCenter: { |
|
|
|
|
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, |
|
|
|
|
}, |
|
|
|
|
oem: false, |
|
|
|
|
oemOut: true, |
|
|
|
|
oemType: -1, |
|
|
|
|
oldRunStatus: null, |
|
|
|
|
orderMarkTitle: "热表中心", |
|
|
|
|
orderWoCode: "WO-221296443-R06", |
|
|
|
|
orderWoCodeDeliverKey: null, |
|
|
|
|
orders: "0005", |
|
|
|
|
outTime: null, |
|
|
|
|
pgrId: null, |
|
|
|
|
pickingStatus: 0, |
|
|
|
|
pickingStatusTitle: "未领取", |
|
|
|
|
pjYieldOrder: { |
|
|
|
|
batchNo: "Y0382304283", |
|
|
|
|
bsProcedureQua: null, |
|
|
|
|
businessType: 1, |
|
|
|
|
businessTypeTitle: "热表中心", |
|
|
|
|
cardNo: "1016870429", |
|
|
|
|
craftId: null, |
|
|
|
|
curStatus: 0, |
|
|
|
|
curStatusTitle: "待接收", |
|
|
|
|
custodian: "杨肖肖", |
|
|
|
|
demandDate: "2023-06-16", |
|
|
|
|
dsCraft: null, |
|
|
|
|
dsPart: null, |
|
|
|
|
entrustDept: "采购与物流中心(成件)", |
|
|
|
|
failureMan: { |
|
|
|
|
userId: 326, |
|
|
|
|
userName: "02051", |
|
|
|
|
}, |
|
|
|
|
failureMemo: "分派成功!", |
|
|
|
|
failureTime: null, |
|
|
|
|
fatherYoId: null, |
|
|
|
|
keyValue: 156703, |
|
|
|
|
manualIncrease: false, |
|
|
|
|
memo: "XXXX", |
|
|
|
|
newlevFlag: null, |
|
|
|
|
nextRoam: null, |
|
|
|
|
nextRoamName: null, |
|
|
|
|
partCode: "21E8-154-1516-E9", |
|
|
|
|
partName: "18-线夹", |
|
|
|
|
pdmUrl: null, |
|
|
|
|
planUser: "白洁", |
|
|
|
|
plate: "XXX", |
|
|
|
|
poArea: 0.4348, |
|
|
|
|
poCode: "WO-221296443", |
|
|
|
|
poMemo: null, |
|
|
|
|
poProdLine: null, |
|
|
|
|
poQty: 100.0, |
|
|
|
|
primaryCraft: "库1-2(机加)-4(表)-库2", |
|
|
|
|
priority: 1, |
|
|
|
|
prodIdent: "JII", |
|
|
|
|
produceBool: false, |
|
|
|
|
productType: "XXXX", |
|
|
|
|
recseqno: null, |
|
|
|
|
releaseDate: "2022-12-17", |
|
|
|
|
reworkCode: null, |
|
|
|
|
reworkMemo: null, |
|
|
|
|
reworkNo: null, |
|
|
|
|
roamName: null, |
|
|
|
|
roamNo: "B5286963", |
|
|
|
|
siteWork: false, |
|
|
|
|
sjKitPreparation: null, |
|
|
|
|
sjMoldPreparation: null, |
|
|
|
|
syncTime: "2023-04-14 14:42:49", |
|
|
|
|
useDept: "制造一部(38999)", |
|
|
|
|
useDeptcode: null, |
|
|
|
|
yieldType: 1, |
|
|
|
|
yoCode: "WX-2212694911", |
|
|
|
|
yoId: 156703, |
|
|
|
|
}, |
|
|
|
|
planEndDate: "2023-04-18 18:19:35", |
|
|
|
|
planner: { |
|
|
|
|
userId: 355, |
|
|
|
|
userName: "07188", |
|
|
|
|
}, |
|
|
|
|
plateGoodsCode: null, |
|
|
|
|
plateSingleQuota: 0.0, |
|
|
|
|
plateSingleQuotaTotal: 0.0, |
|
|
|
|
printCode: "HZQD20230509001", |
|
|
|
|
printFlag: true, |
|
|
|
|
printMan: { |
|
|
|
|
userId: 541, |
|
|
|
|
userName: "崔殿龙", |
|
|
|
|
}, |
|
|
|
|
printTime: "2023-05-09 19:08:13", |
|
|
|
|
priority: 1, |
|
|
|
|
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: null, |
|
|
|
|
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-14 18:19:35", |
|
|
|
|
smBatch: "是", |
|
|
|
|
subList: null, |
|
|
|
|
subRunStatus: null, |
|
|
|
|
testQty: 0, |
|
|
|
|
tools: null, |
|
|
|
|
totalArea: 43.48, |
|
|
|
|
woCode: "WO-221296443-R06", |
|
|
|
|
woId: 2485, |
|
|
|
|
wpId: 14788, |
|
|
|
|
ybCode: null, |
|
|
|
|
ybLocal: null, |
|
|
|
|
}, |
|
|
|
|
printFlag: false, |
|
|
|
|
printMan: null, |
|
|
|
|
runStatus: 2, |
|
|
|
|
runStatusTitle: "审批中", |
|
|
|
|
runType: 1, |
|
|
|
|
runTypeTitle: "转外协", |
|
|
|
|
systemData: false, |
|
|
|
|
woCode: "WO-221296443-R06", |
|
|
|
|
worId: 8246, |
|
|
|
|
}, |
|
|
|
|
]; |
|
|
|
|
this.page.total = this.data.length; |
|
|
|
|
this.loading = false; |
|
|
|
|
setTimeout(() => { |
|
|
|
|
this.selectionClear(); |
|
|
|
|
}, 500); |
|
|
|
|
getList({ |
|
|
|
|
current:this.page.currentPage, |
|
|
|
|
size:this.page.pageSize, |
|
|
|
|
runType:1, |
|
|
|
|
...this.query, |
|
|
|
|
}).then(res =>{ |
|
|
|
|
this.data = res.data.data.records |
|
|
|
|
this.page.total = res.data.data.total |
|
|
|
|
this.loading = false |
|
|
|
|
}) |
|
|
|
|
// this.data = [ |
|
|
|
|
// { |
|
|
|
|
// approvalMan: null, |
|
|
|
|
// approvalMemo: null, |
|
|
|
|
// approvalTime: null, |
|
|
|
|
// collaborate: true, |
|
|
|
|
// createMan: { |
|
|
|
|
// userId: 541, |
|
|
|
|
// userName: "崔殿龙", |
|
|
|
|
// }, |
|
|
|
|
// createTime: "2024-01-22 09:48:54", |
|
|
|
|
// deliverKey: null, |
|
|
|
|
// inCustomer: null, |
|
|
|
|
// inTeam: null, |
|
|
|
|
// keyValue: 8246, |
|
|
|
|
// memo: "11111", |
|
|
|
|
// outCustomer: null, |
|
|
|
|
// outTeam: { |
|
|
|
|
// tsCode: "006", |
|
|
|
|
// tsId: 66, |
|
|
|
|
// tsName: "化学镀镍一班郭家梁", |
|
|
|
|
// }, |
|
|
|
|
// prWorkOrder: { |
|
|
|
|
// approvalStatus: 2, |
|
|
|
|
// batchArea: 43.48, |
|
|
|
|
// batchNo: "Y0382304283", |
|
|
|
|
// bsOemCustomer: null, |
|
|
|
|
// ca: "E386-化学镀镍", |
|
|
|
|
// cardNo: "1016870429", |
|
|
|
|
// closeMan: null, |
|
|
|
|
// closeTime: null, |
|
|
|
|
// collaborate: false, |
|
|
|
|
// collaborateText: "否", |
|
|
|
|
// createTime: "2023-04-14 18:19:35", |
|
|
|
|
// currentBsOemCustomer: null, |
|
|
|
|
// currentMakeTeam: { |
|
|
|
|
// tsCode: "006", |
|
|
|
|
// tsId: 66, |
|
|
|
|
// tsName: "化学镀镍一班郭家梁", |
|
|
|
|
// }, |
|
|
|
|
// demandDate: "2023-04-18", |
|
|
|
|
// dispatcher: { |
|
|
|
|
// userId: 355, |
|
|
|
|
// userName: "07188", |
|
|
|
|
// }, |
|
|
|
|
// frontProcedureSet: null, |
|
|
|
|
// handoverTime: null, |
|
|
|
|
// hrTypeBool: null, |
|
|
|
|
// inventoryQty: 0.0, |
|
|
|
|
// jcName: null, |
|
|
|
|
// keyValue: 2485, |
|
|
|
|
// lastInstoreTime: null, |
|
|
|
|
// lossQty: 0, |
|
|
|
|
// mainProcessingUnit: "化学镀镍一班郭家梁", |
|
|
|
|
// makeQty: 100.0, |
|
|
|
|
// makeTeam: { |
|
|
|
|
// tsCode: "006", |
|
|
|
|
// tsId: 66, |
|
|
|
|
// tsName: "化学镀镍一班郭家梁", |
|
|
|
|
// }, |
|
|
|
|
// makeUnit: "化学镀镍一班郭家梁", |
|
|
|
|
// meetCycle: 0, |
|
|
|
|
// memo: null, |
|
|
|
|
// mesCardNo: null, |
|
|
|
|
// moCode: null, |
|
|
|
|
// moLocal: null, |
|
|
|
|
// nextBsOemCustomer: null, |
|
|
|
|
// nextMakeTeam: { |
|
|
|
|
// tsCode: "006", |
|
|
|
|
// tsId: 66, |
|
|
|
|
// tsName: "化学镀镍一班郭家梁", |
|
|
|
|
// }, |
|
|
|
|
// nextOrders: "0010", |
|
|
|
|
// 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: 100.0, |
|
|
|
|
// nowWorkCenter: { |
|
|
|
|
// 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, |
|
|
|
|
// }, |
|
|
|
|
// oem: false, |
|
|
|
|
// oemOut: true, |
|
|
|
|
// oemType: -1, |
|
|
|
|
// oldRunStatus: null, |
|
|
|
|
// orderMarkTitle: "热表中心", |
|
|
|
|
// orderWoCode: "WO-221296443-R06", |
|
|
|
|
// orderWoCodeDeliverKey: null, |
|
|
|
|
// orders: "0005", |
|
|
|
|
// outTime: null, |
|
|
|
|
// pgrId: null, |
|
|
|
|
// pickingStatus: 0, |
|
|
|
|
// pickingStatusTitle: "未领取", |
|
|
|
|
// pjYieldOrder: { |
|
|
|
|
// batchNo: "Y0382304283", |
|
|
|
|
// bsProcedureQua: null, |
|
|
|
|
// businessType: 1, |
|
|
|
|
// businessTypeTitle: "热表中心", |
|
|
|
|
// cardNo: "1016870429", |
|
|
|
|
// craftId: null, |
|
|
|
|
// curStatus: 0, |
|
|
|
|
// curStatusTitle: "待接收", |
|
|
|
|
// custodian: "杨肖肖", |
|
|
|
|
// demandDate: "2023-06-16", |
|
|
|
|
// dsCraft: null, |
|
|
|
|
// dsPart: null, |
|
|
|
|
// entrustDept: "采购与物流中心(成件)", |
|
|
|
|
// failureMan: { |
|
|
|
|
// userId: 326, |
|
|
|
|
// userName: "02051", |
|
|
|
|
// }, |
|
|
|
|
// failureMemo: "分派成功!", |
|
|
|
|
// failureTime: null, |
|
|
|
|
// fatherYoId: null, |
|
|
|
|
// keyValue: 156703, |
|
|
|
|
// manualIncrease: false, |
|
|
|
|
// memo: "XXXX", |
|
|
|
|
// newlevFlag: null, |
|
|
|
|
// nextRoam: null, |
|
|
|
|
// nextRoamName: null, |
|
|
|
|
// partCode: "21E8-154-1516-E9", |
|
|
|
|
// partName: "18-线夹", |
|
|
|
|
// pdmUrl: null, |
|
|
|
|
// planUser: "白洁", |
|
|
|
|
// plate: "XXX", |
|
|
|
|
// poArea: 0.4348, |
|
|
|
|
// poCode: "WO-221296443", |
|
|
|
|
// poMemo: null, |
|
|
|
|
// poProdLine: null, |
|
|
|
|
// poQty: 100.0, |
|
|
|
|
// primaryCraft: "库1-2(机加)-4(表)-库2", |
|
|
|
|
// priority: 1, |
|
|
|
|
// prodIdent: "JII", |
|
|
|
|
// produceBool: false, |
|
|
|
|
// productType: "XXXX", |
|
|
|
|
// recseqno: null, |
|
|
|
|
// releaseDate: "2022-12-17", |
|
|
|
|
// reworkCode: null, |
|
|
|
|
// reworkMemo: null, |
|
|
|
|
// reworkNo: null, |
|
|
|
|
// roamName: null, |
|
|
|
|
// roamNo: "B5286963", |
|
|
|
|
// siteWork: false, |
|
|
|
|
// sjKitPreparation: null, |
|
|
|
|
// sjMoldPreparation: null, |
|
|
|
|
// syncTime: "2023-04-14 14:42:49", |
|
|
|
|
// useDept: "制造一部(38999)", |
|
|
|
|
// useDeptcode: null, |
|
|
|
|
// yieldType: 1, |
|
|
|
|
// yoCode: "WX-2212694911", |
|
|
|
|
// yoId: 156703, |
|
|
|
|
// }, |
|
|
|
|
// planEndDate: "2023-04-18 18:19:35", |
|
|
|
|
// planner: { |
|
|
|
|
// userId: 355, |
|
|
|
|
// userName: "07188", |
|
|
|
|
// }, |
|
|
|
|
// plateGoodsCode: null, |
|
|
|
|
// plateSingleQuota: 0.0, |
|
|
|
|
// plateSingleQuotaTotal: 0.0, |
|
|
|
|
// printCode: "HZQD20230509001", |
|
|
|
|
// printFlag: true, |
|
|
|
|
// printMan: { |
|
|
|
|
// userId: 541, |
|
|
|
|
// userName: "崔殿龙", |
|
|
|
|
// }, |
|
|
|
|
// printTime: "2023-05-09 19:08:13", |
|
|
|
|
// priority: 1, |
|
|
|
|
// 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: null, |
|
|
|
|
// 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-14 18:19:35", |
|
|
|
|
// smBatch: "是", |
|
|
|
|
// subList: null, |
|
|
|
|
// subRunStatus: null, |
|
|
|
|
// testQty: 0, |
|
|
|
|
// tools: null, |
|
|
|
|
// totalArea: 43.48, |
|
|
|
|
// woCode: "WO-221296443-R06", |
|
|
|
|
// woId: 2485, |
|
|
|
|
// wpId: 14788, |
|
|
|
|
// ybCode: null, |
|
|
|
|
// ybLocal: null, |
|
|
|
|
// }, |
|
|
|
|
// printFlag: false, |
|
|
|
|
// printMan: null, |
|
|
|
|
// runStatus: 2, |
|
|
|
|
// runStatusTitle: "审批中", |
|
|
|
|
// runType: 1, |
|
|
|
|
// runTypeTitle: "转外协", |
|
|
|
|
// systemData: false, |
|
|
|
|
// woCode: "WO-221296443-R06", |
|
|
|
|
// worId: 8246, |
|
|
|
|
// }, |
|
|
|
|
// ]; |
|
|
|
|
// this.page.total = this.data.length; |
|
|
|
|
// this.loading = false; |
|
|
|
|
// setTimeout(() => { |
|
|
|
|
// this.selectionClear(); |
|
|
|
|
// }, 500); |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
}; |
|
|
|
|
|