仓库和生产管理问题修改

dev-scheduling
zhangdi 2 days ago
parent 0909cf8c60
commit 4a132eba5f
  1. 2
      src/views/flowManagement/milestoneDialog.vue
  2. 4
      src/views/flowManagement/projectExecution.vue
  3. 857
      src/views/oem/oemOrder/index.vue
  4. 2
      src/views/productionManagement/components/outsourceDialog.vue

@ -99,7 +99,7 @@
</div> </div>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="14"> <el-col :span="14" v-if="detailForm.executeType!='2'">
<el-form-item label="核查人:" v-if="subTitle == '执行'" prop="userId"> <el-form-item label="核查人:" v-if="subTitle == '执行'" prop="userId">
<el-select v-model="detailForm.userId" placeholder="请选择" style="width: 100%" filterable clearable @change="val=>userIdChange(val)"> <el-select v-model="detailForm.userId" placeholder="请选择" style="width: 100%" filterable clearable @change="val=>userIdChange(val)">
<el-option v-for="item in usersRoleList" :key="item.id" :value="item.id" <el-option v-for="item in usersRoleList" :key="item.id" :value="item.id"

@ -35,7 +35,7 @@
<el-button <el-button
type="text" type="text"
v-if=" v-if="
(scope.row.checkResult == 1 || scope.row.checkResult == 3) && permissionList.verifyBtn (scope.row.checkResult == 1 || scope.row.checkResult == 3)&&(scope.row.executeType!='2') && permissionList.verifyBtn
" "
@click="auditRow(scope.row, scope.row)" @click="auditRow(scope.row, scope.row)"
> >
@ -44,7 +44,7 @@
<el-button <el-button
type="text" type="text"
v-if=" v-if="
scope.row.gradeTitle == '待评价' && scope.row.gradeTitle == '待评价' &&(scope.row.executeType!='2') &&
scope.row.checkResult == 2 && scope.row.checkResult == 2 &&
permissionList.approveBtn permissionList.approveBtn
" "

@ -46,6 +46,7 @@
> >
</template> </template>
<template #menu="scope"> <template #menu="scope">
<el-button type="primary" link @click="clickProduction(scope.row)">生产监控</el-button>
<!-- <el-button type="primary" link @click="memoDialogFun(scope.row)">关闭</el-button> --> <!-- <el-button type="primary" link @click="memoDialogFun(scope.row)">关闭</el-button> -->
<!-- <template v-if="scope.row.approvalStatus == 2"> --> <!-- <template v-if="scope.row.approvalStatus == 2"> -->
<!-- <el-button type="primary" link @click="takeBack(scope.row)" <!-- <el-button type="primary" link @click="takeBack(scope.row)"
@ -121,6 +122,15 @@
<materialPrint v-if="showPrint" :showPrint="showPrint" @cancel="cancel"></materialPrint> <materialPrint v-if="showPrint" :showPrint="showPrint" @cancel="cancel"></materialPrint>
<!-- 分批处理 --> <!-- 分批处理 -->
<batch-dialog v-if="showBatch" :showBatch="showBatch" :checkRow="checkRow" @cancel="cancel"></batch-dialog> <batch-dialog v-if="showBatch" :showBatch="showBatch" :checkRow="checkRow" @cancel="cancel"></batch-dialog>
<!-- 生产监控 -->
<workRate
v-if="isWorkRateOpen"
:showDialog="isWorkRateOpen"
@closeDialog="closeDialog"
:rowItem="rowItem"
></workRate>
</basic-container> </basic-container>
</template> </template>
<script> <script>
@ -132,6 +142,8 @@ import turnFacInner from "./turnFacInner.vue";
import manufacturerChange from "./manufacturerChange.vue"; import manufacturerChange from "./manufacturerChange.vue";
import materialPrint from "./materialPrint.vue" import materialPrint from "./materialPrint.vue"
import batchDialog from "./batchDialog.vue"; import batchDialog from "./batchDialog.vue";
import workRate from '@/views/workRate/index.vue';
export default { export default {
components: { components: {
memoDialog, memoDialog,
@ -139,11 +151,13 @@ export default {
turnFacInner, turnFacInner,
manufacturerChange, manufacturerChange,
materialPrint, materialPrint,
batchDialog batchDialog,
workRate
// setCraftAbility // setCraftAbility
}, },
data() { data() {
return { return {
isWorkRateOpen:false,
showPrint:false, showPrint:false,
turnFacInnerOpen: false, turnFacInnerOpen: false,
rowItem: {}, rowItem: {},
@ -182,7 +196,7 @@ export default {
border: true, border: true,
selection: false, selection: false,
index: true, index: true,
menuWidth: 220, menuWidth: 270,
dialogClickModal: false, dialogClickModal: false,
excelBtn: true, excelBtn: true,
viewBtn: false, viewBtn: false,
@ -624,6 +638,11 @@ export default {
}; };
}, },
methods: { methods: {
//
clickProduction(row) {
this.rowItem = row;
this.isWorkRateOpen = true;
},
// //
sortChange({ prop, order }) { sortChange({ prop, order }) {
console.log('prop----------',prop) console.log('prop----------',prop)
@ -887,840 +906,10 @@ export default {
this.data = res.data.data.records this.data = res.data.data.records
this.page.total = res.data.data.total this.page.total = res.data.data.total
this.loading = false; this.loading = false;
}).catch(err=>{
this.loading = false;
}) })
// getLazyList(this.parentId, Object.assign(params, this.query)).then(res => {
// this.data = res.data.data;
// this.data = [
// {
// right: "989789-iui",
// inventoryQty: 99,
// notInQty: 90,
// memo: "0909",
// approvalMan: {
// userId: 1,
// userName: "admin",
// },
// approvalMemo: "89889",
// approvalTime: "89889",
// collaborate: false,
// createMan: {
// userId: 1,
// userName: "admin",
// },
// createTime: "2023-07-19 16:58:00",
// deliverKey: "89889",
// inCustomer: {
// abbreviation: "L235",
// address: "aaa",
// codeAndName: "L235/L235",
// contactMan: "aaa",
// contactPhone: "aaa",
// craftAbility:
// "DL",
// curStatus: 0,
// curStatusText: "",
// email: "aaa",
// keyValue: 28,
// limitType: 0,
// ocCode: "L235",
// ocId: 28,
// ocName: "L235",
// oemPassword: "L235235",
// partCodeYesOrNo: false,
// qualification: 10,
// qualificationTitle: "89889",
// region: "",
// updateTime: "2023-04-14 18:33:49",
// },
// inTeam: "89889",
// keyValue: 7791,
// memo: "()",
// outCustomer: "89889",
// outTeam: "89889",
// prWorkOrder: {
// approvalStatus: 2,
// batchArea: 67,
// batchNo: "191640",
// bsOemCustomer: "89889",
// ca: "E386-",
// cardNo: "202307191640",
// closeMan: "89889",
// closeTime: "89889",
// collaborate: false,
// collaborateText: "",
// createTime: "2023-07-19 16:58:00",
// currentBsOemCustomer: "89889",
// currentMakeTeam: {
// bsClassesSet: "89889",
// bsWorkCenter: "89889",
// createMan: {
// userId: 1,
// userName: "admin",
// },
// createTime: "2023-02-06 13:12:05",
// dayPutDueTime: "00:00~13:3013:45~19:30",
// deleted: false,
// dispatcher: {
// userId: 561,
// userName: "",
// },
// exChangeTime: "89889",
// keyValue: 67,
// planner: {
// userId: 521,
// userName: "",
// },
// specDayPutDueTime: "89889",
// special: false,
// specialTitle: "",
// teamLeader: {
// userId: 521,
// userName: "",
// },
// teamMember:
// "0367912649126460939103764037231234560001adminhak殿",
// tsCode: "007",
// tsId: 67,
// tsName: "",
// tsType: "89889",
// tsTypeTitle: "89889",
// updateTime: "2023-02-06 13:12:05",
// },
// demandDate: "2023-07-26",
// dispatcher: {
// userId: 449,
// userName: "08355",
// },
// frontProcedureSet: {
// 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: "89889",
// updateTime: "2022-11-15 10:30:45",
// vSpeed: true,
// },
// handoverTime: "89889",
// hrTypeBool: "89889",
// inventoryQty: 0.0,
// jcName: "89889",
// keyValue: 8639,
// lastInstoreTime: "89889",
// lossQty: 0,
// mainProcessingUnit: "",
// makeQty: 6.0,
// makeTeam: {
// bsClassesSet: "89889",
// bsWorkCenter: {
// area: 13000.0,
// batchNo: "89889",
// 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: "89889",
// endPoint: "89889",
// keyValue: 81,
// leaderUser: {
// userId: 541,
// userName: "殿",
// },
// limitType: 0,
// processes: "",
// quantity: "89889",
// roundCycle: "89889",
// saturation: 85.0,
// sign: "4",
// startPoint: "89889",
// 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: "89889",
// keyValue: 66,
// planner: {
// userId: 355,
// userName: "07188",
// },
// specDayPutDueTime: "89889",
// special: false,
// specialTitle: "",
// teamLeader: {
// userId: 70,
// userName: "06623",
// },
// teamMember:
// "0378103698564981264711231107101073106623殿admin",
// tsCode: "006",
// tsId: 66,
// tsName: "",
// tsType: "89889",
// tsTypeTitle: "89889",
// updateTime: "2023-02-06 13:10:00",
// },
// makeUnit: "",
// meetCycle: 0,
// memo: "89889",
// mesCardNo: "R2307190001",
// moCode: "89889",
// moLocal: "89889",
// nextBsOemCustomer: "89889",
// nextMakeTeam: {
// bsClassesSet: "89889",
// bsWorkCenter: {
// area: 13000.0,
// batchNo: "89889",
// 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: "89889",
// endPoint: "89889",
// keyValue: 81,
// leaderUser: {
// userId: 541,
// userName: "殿",
// },
// limitType: 0,
// processes: "",
// quantity: "89889",
// roundCycle: "89889",
// saturation: 85.0,
// sign: "4",
// startPoint: "89889",
// team: "",
// updateTime: "2023-03-06 18:42:47",
// wcCode: "001",
// wcId: 81,
// wcName: "",
// whetherPlate: false,
// },
// createMan: {
// userId: 1,
// userName: "admin",
// },
// createTime: "2023-02-06 12:30:26",
// dayPutDueTime: "00:30~01:00",
// deleted: false,
// dispatcher: {
// userId: 355,
// userName: "07188",
// },
// exChangeTime: "89889",
// keyValue: 61,
// planner: {
// userId: 355,
// userName: "07188",
// },
// specDayPutDueTime: "89889",
// special: false,
// specialTitle: "",
// teamLeader: {
// userId: 68,
// userName: "03772",
// },
// teamMember:
// "admin10477037720355512645109171071103800殿",
// tsCode: "001",
// tsId: 61,
// tsName: "",
// tsType: "89889",
// tsTypeTitle: "89889",
// updateTime: "2023-02-06 12:30:26",
// },
// nextOrders: "0020",
// nextProcedureSet: {
// assist: false,
// assistTitle: "",
// createMan: {
// userId: 1,
// userName: "admin",
// },
// createTime: "2025-02-27 12:22:37",
// cycle: 0.0,
// cyropactorControl: false,
// deleted: false,
// eleRate: false,
// eleStream: false,
// keyValue: 12,
// mainProcess: true,
// mainProcessTitle: "",
// niValue: false,
// phValue: false,
// ppsCode: "008",
// ppsId: 12,
// ppsName: "test",
// special: true,
// specialTitle: "",
// team: "",
// updateTime: "2022-11-15 10:33:17",
// vSpeed: false,
// },
// notInQty: 6.0,
// nowWorkCenter: "89889",
// oem: false,
// oemOut: false,
// oemType: -1,
// oldRunStatus: "89889",
// orderMarkTitle: "",
// orderWoCode: "WO-20230719006-R001",
// orderWoCodeDeliverKey: "89889",
// orders: "0015",
// outTime: "89889",
// pgrId: "89889",
// pickingStatus: 1,
// pickingStatusTitle: "",
// pjYieldOrder: {
// batchNo: "191640",
// bsProcedureQua: "89889",
// businessType: 2,
// businessTypeTitle: "",
// cardNo: "202307191640",
// craftId: 8145,
// curStatus: 0,
// curStatusTitle: "",
// custodian: "89889",
// demandDate: "2023-07-26",
// dsCraft: "89889",
// dsPart: "89889",
// entrustDept: "",
// failureMan: {
// userId: 1,
// userName: "admin",
// },
// failureMemo: "",
// failureTime: "2023-07-19 16:58:00",
// fatherYoId: "89889",
// keyValue: 157495,
// manualIncrease: true,
// memo: "",
// newlevFlag: "89889",
// nextRoam: "89889",
// nextRoamName: "89889",
// partCode: "21E8-154-1514-E9",
// partName: "14-线",
// pdmUrl: "89889",
// planUser: "殿",
// plate: "XXXX",
// poArea: 0.0,
// poCode: "WO-20230719006",
// poMemo: "89889",
// poProdLine: "89889",
// poQty: 2.0,
// primaryCraft: "1-2-4-2",
// priority: 1,
// prodIdent: "JII",
// produceBool: false,
// productType: "XXX",
// recseqno: "89889",
// releaseDate: "2023-07-19",
// reworkCode: "89889",
// reworkMemo: "89889",
// reworkNo: "89889",
// roamName: "89889",
// roamNo: "B5286956",
// siteWork: false,
// sjKitPreparation: "89889",
// sjMoldPreparation: "89889",
// syncTime: "2023-07-19 16:31:08",
// useDept: "3400",
// useDeptcode: "89889",
// yieldType: 1,
// yoCode: "WO-20230719006-R01",
// yoId: 157495,
// },
// planEndDate: "2023-07-27 16:58:00",
// planner: {
// userId: 449,
// userName: "08355",
// },
// plateGoodsCode: "89889",
// plateSingleQuota: 0.0,
// plateSingleQuotaTotal: 0.0,
// printCode: "89889",
// printFlag: false,
// printMan: "89889",
// printTime: "89889",
// priority: 1,
// priorityTitle: "",
// procedureSet: {
// assist: false,
// assistTitle: "",
// createMan: {
// userId: 1,
// userName: "admin",
// },
// createTime: "2022-11-15 10:31:00",
// cycle: 0.0,
// cyropactorControl: false,
// deleted: false,
// eleRate: false,
// eleStream: false,
// keyValue: 8,
// mainProcess: true,
// mainProcessTitle: "",
// niValue: false,
// phValue: false,
// ppsCode: "004",
// ppsId: 8,
// ppsName: "",
// special: false,
// specialTitle: "",
// team: "89889",
// updateTime: "2022-11-15 10:31:00",
// vSpeed: false,
// },
// processingUnit: "",
// producycle: 4,
// pushFlag: false,
// putStoreTime: "89889",
// qcReworkCode: "89889",
// quotaExceptional: false,
// reInStore: false,
// readStatus: "89889",
// readStatusTiTle: "",
// recDept: "89889",
// receptionTime: "89889",
// reworkCode: "89889",
// reworkMemo: "89889",
// reworkNo: "89889",
// rsCode: "89889",
// runStatus: 3,
// runStatusTitle: "",
// schedStatus: 0,
// scrapQty: 0.0,
// sendDownTime: "2023-07-19 16:58:00",
// smBatch: "",
// subList: "89889",
// subRunStatus: "89889",
// testQty: 0,
// tools: "89889",
// totalArea: 0.0,
// woCode: "WO-20230719006-R001",
// woId: 8639,
// wpId: 57230,
// ybCode: "89889",
// ybLocal: "89889",
// },
// printFlag: false,
// printMan: "89889",
// runStatus: 7,
// runStatusTitle: "",
// runType: 1,
// runTypeTitle: "",
// systemData: true,
// woCode: "WO-20230719006-R001",
// worId: 7791,
// },
// {
// right: "989789-iui",
// inventoryQty: 89,
// notInQty: 90,
// memo: "0909",
// approvalMan: {
// userId: 541,
// userName: "殿",
// },
// approvalMemo: "89889",
// approvalTime: "89889",
// collaborate: false,
// createMan: {
// userId: 541,
// userName: "殿",
// },
// createTime: "2023-07-19 17:35:47",
// deliverKey: "89889",
// inCustomer: {
// abbreviation: "L235",
// address: "aaa",
// codeAndName: "L235/L235",
// contactMan: "aaa",
// contactPhone: "aaa",
// craftAbility:
// "DL",
// curStatus: 0,
// curStatusText: "",
// email: "aaa",
// keyValue: 28,
// limitType: 0,
// ocCode: "L235",
// ocId: 28,
// ocName: "L235",
// oemPassword: "L235235",
// partCodeYesOrNo: false,
// qualification: 10,
// qualificationTitle: "89889",
// region: "",
// updateTime: "2023-04-14 18:33:49",
// },
// inTeam: "89889",
// keyValue: 7792,
// memo: "()",
// outCustomer: "89889",
// outTeam: "89889",
// prWorkOrder: {
// approvalStatus: 1,
// batchArea: 78,
// batchNo: "R202307191734",
// bsOemCustomer: {
// abbreviation: "L235",
// address: "aaa",
// codeAndName: "L235/L235",
// contactMan: "aaa",
// contactPhone: "aaa",
// craftAbility:
// "DL",
// curStatus: 0,
// curStatusText: "",
// email: "aaa",
// keyValue: 28,
// limitType: 0,
// ocCode: "L235",
// ocId: 28,
// ocName: "L235",
// oemPassword: "L235235",
// partCodeYesOrNo: false,
// qualification: 10,
// qualificationTitle: "89889",
// region: "",
// updateTime: "2023-04-14 18:33:49",
// },
// ca: "E386-",
// cardNo: "202307191734-001",
// closeMan: "89889",
// closeTime: "89889",
// collaborate: false,
// collaborateText: "",
// createTime: "2023-07-19 17:35:47",
// currentBsOemCustomer: {
// abbreviation: "L235",
// address: "aaa",
// codeAndName: "L235/L235",
// contactMan: "aaa",
// contactPhone: "aaa",
// craftAbility:
// "DL",
// curStatus: 0,
// curStatusText: "",
// email: "aaa",
// keyValue: 28,
// limitType: 0,
// ocCode: "L235",
// ocId: 28,
// ocName: "L235",
// oemPassword: "L235235",
// partCodeYesOrNo: false,
// qualification: 10,
// qualificationTitle: "89889",
// region: "",
// updateTime: "2023-04-14 18:33:49",
// },
// currentMakeTeam: "89889",
// demandDate: "2023-07-26",
// dispatcher: {
// userId: 541,
// userName: "殿",
// },
// frontProcedureSet: "89889",
// handoverTime: "89889",
// hrTypeBool: "89889",
// inventoryQty: 0.0,
// jcName: "89889",
// keyValue: 8640,
// lastInstoreTime: "89889",
// lossQty: 0,
// mainProcessingUnit: "L235",
// makeQty: 10.0,
// makeTeam: "89889",
// makeUnit: "L235",
// meetCycle: 0,
// memo: "89889",
// mesCardNo: "R2307190002",
// moCode: "89889",
// moLocal: "89889",
// nextBsOemCustomer: {
// abbreviation: "L235",
// address: "aaa",
// codeAndName: "L235/L235",
// contactMan: "aaa",
// contactPhone: "aaa",
// craftAbility:
// "DL",
// curStatus: 0,
// curStatusText: "",
// email: "aaa",
// keyValue: 28,
// limitType: 0,
// ocCode: "L235",
// ocId: 28,
// ocName: "L235",
// oemPassword: "L235235",
// partCodeYesOrNo: false,
// qualification: 10,
// qualificationTitle: "89889",
// region: "",
// updateTime: "2023-04-14 18:33:49",
// },
// nextMakeTeam: "89889",
// 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: "89889",
// updateTime: "2022-11-15 10:30:45",
// vSpeed: true,
// },
// notInQty: 10.0,
// nowWorkCenter: "89889",
// oem: true,
// oemOut: false,
// oemType: 1,
// oldRunStatus: "89889",
// orderMarkTitle: "",
// orderWoCode: "WO-20230719006-R002",
// orderWoCodeDeliverKey: "89889",
// orders: "0005",
// outTime: "89889",
// pgrId: "89889",
// pickingStatus: 0,
// pickingStatusTitle: "",
// pjYieldOrder: {
// batchNo: "R202307191734",
// bsProcedureQua: "89889",
// businessType: 2,
// businessTypeTitle: "",
// cardNo: "202307191734-001",
// craftId: 8145,
// curStatus: 0,
// curStatusTitle: "",
// custodian: "89889",
// demandDate: "2023-07-26",
// dsCraft: "89889",
// dsPart: "89889",
// entrustDept: "",
// failureMan: {
// userId: 541,
// userName: "殿",
// },
// failureMemo: "",
// failureTime: "2023-07-19 17:35:47",
// fatherYoId: "89889",
// keyValue: 157496,
// manualIncrease: true,
// memo: "",
// newlevFlag: "89889",
// nextRoam: "89889",
// nextRoamName: "89889",
// partCode: "21E8-154-1514-E9",
// partName: "14-线",
// pdmUrl: "89889",
// planUser: "殿",
// plate: "XXXX",
// poArea: 0.0,
// poCode: "WO-20230719006",
// poMemo: "89889",
// poProdLine: "89889",
// poQty: 10.0,
// primaryCraft: "1-2-4-2",
// priority: 1,
// prodIdent: "JII",
// produceBool: false,
// productType: "XXX",
// recseqno: "89889",
// releaseDate: "2023-07-19",
// reworkCode: "89889",
// reworkMemo: "89889",
// reworkNo: "89889",
// roamName: "89889",
// roamNo: "B5286956",
// siteWork: false,
// sjKitPreparation: "89889",
// sjMoldPreparation: "89889",
// syncTime: "2023-07-19 17:35:06",
// useDept: "3400",
// useDeptcode: "89889",
// yieldType: 1,
// yoCode: "WO-20230719006-R02",
// yoId: 157496,
// },
// planEndDate: "2023-07-27 17:35:47",
// planner: {
// userId: 541,
// userName: "殿",
// },
// plateGoodsCode: "89889",
// plateSingleQuota: 0.0,
// plateSingleQuotaTotal: 0.0,
// printCode: "89889",
// printFlag: false,
// printMan: "89889",
// printTime: "89889",
// 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: "89889",
// updateTime: "2022-11-15 10:30:29",
// vSpeed: false,
// },
// processingUnit: "L235",
// producycle: 6,
// pushFlag: false,
// putStoreTime: "89889",
// qcReworkCode: "89889",
// quotaExceptional: false,
// reInStore: false,
// readStatus: "89889",
// readStatusTiTle: "",
// recDept: "89889",
// receptionTime: "89889",
// reworkCode: "89889",
// reworkMemo: "89889",
// reworkNo: "89889",
// rsCode: "89889",
// runStatus: 3,
// runStatusTitle: "",
// schedStatus: 0,
// scrapQty: 0.0,
// sendDownTime: "2023-07-19 17:35:47",
// smBatch: "",
// subList: "89889",
// subRunStatus: "89889",
// testQty: 0,
// tools: "89889",
// totalArea: 0.0,
// woCode: "WO-20230719006-R002",
// woId: 8640,
// wpId: 57233,
// ybCode: "89889",
// ybLocal: "89889",
// },
// printFlag: false,
// printMan: "89889",
// runStatus: 7,
// runStatusTitle: "",
// runType: 1,
// runTypeTitle: "",
// systemData: true,
// woCode: "WO-20230719006-R002",
// worId: 7792,
// },
// ];
// this.loading = false;
// this.page.total = this.data.length;
// this.selectionClear();
// });
}, },
}, },
}; };

@ -128,9 +128,11 @@ export default {
woId: item.woId, woId: item.woId,
}); });
}); });
//collaborate true false
let query = { let query = {
workOrderRuns: orderData, workOrderRuns: orderData,
workPlanRuns: this.selectedRows, workPlanRuns: this.selectedRows,
collaborate: this.selectedRows.length==this.outsourceData.length?false:true
}; };
transferBill(query).then(res => { transferBill(query).then(res => {

Loading…
Cancel
Save