| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160 |
- <template>
- <div class="ele-body">
- <el-card shadow="never" v-loading="loading">
- <seek-page :seekList="seekList" @search="search"></seek-page>
- <!-- <button @click="btnPrint">打印</button> -->
- <!-- <produceOrder-search @search="reload" ref="searchRef" :statusOpt="statusOpt" :planType="planType"
- :activeName="activeName">
- </produceOrder-search> -->
- <el-tabs v-model="tabValue" type="card" @tab-click="handleTabClick">
- <!-- <el-tab-pane label="未完成工单" name="first"></el-tab-pane>
- <el-tab-pane label="已完成工单" name="second"></el-tab-pane> -->
- <el-tab-pane label="我的工单" name="1"></el-tab-pane>
- <el-tab-pane label="生产中" name="5"></el-tab-pane>
- <el-tab-pane label="待生产" name="4"></el-tab-pane>
- <el-tab-pane label="已完成" name="6"></el-tab-pane>
- <el-tab-pane label="已延期" name="7"></el-tab-pane>
- <el-tab-pane label="已终止" name="10"></el-tab-pane>
- </el-tabs>
- <!-- 数据表格 -->
- <!-- :cache-key="cacheKeyUrl" -->
- <ele-pro-table
- ref="table"
- :key="activeName"
- :initLoad="false"
- :columns="columns"
- :datasource="datasource"
- row-key="code"
- :selection.sync="selection"
- @sort-change="onSortChange"
- autoAmendPage
- :parse-data="parseData"
- @columns-change="handleColumnChange"
- :cache-key="cacheKeyUrl"
- >
- <template v-slot:toolbar>
- <!-- <el-button type="success">新建</el-button> -->
- <el-button type="success" @click="toPause()">暂停</el-button>
- <el-button type="success" @click="toTermination()">终止</el-button>
- <!-- <el-button type="primary">工单刷新</el-button> -->
- <!-- <el-button type="success" @click="handlePicking">领料</el-button> -->
- <el-button type="success" @click="toEnd()">批量完结</el-button>
- <!-- <el-button type="success" @click="handleCreate">创建工单</el-button> -->
- <!-- <el-button type="success">工单操作控制</el-button> -->
- <el-button type="success" @click="allPrinting()"
- >批量打印二维码</el-button
- >
- <el-button type="success" @click="cardPrinting()"
- >工艺卡打印</el-button
- >
- </template>
- <template v-slot:code="{ row }">
- <el-link type="primary" :underline="false" @click="goDetail(row)">
- {{ row.code }}
- </el-link>
- </template>
- <template v-slot:QRcode="{ row }">
- <el-link type="primary" :underline="false" @click="handleQRcode(row)"
- >生成二维码
- </el-link>
- </template>
- <template v-slot:apsWorkOrderCode="{ row }">
- <label>{{ row.apsWorkOrderCode || '' }}</label>
- </template>
- <template v-slot:priority="{ row }">
- <div style="display: flex">
- <el-input
- v-model="row.priority"
- type="number"
- size="mini"
- :min="0"
- :max="10"
- @change="priorityChange(row)"
- style="width: 80px"
- ></el-input>
- <el-popover
- placement="right"
- width="200"
- trigger="hover"
- content="数值越大优先级越高(0-3普通, 4-6优先, 7-10紧急)"
- >
- <div class="sort-wrap" slot="reference">
- <i class="el-icon-caret-top" @click="sortTop(row)"></i>
- <i class="el-icon-caret-bottom" @click="sortBottom(row)"></i>
- </div>
- </el-popover>
- </div>
- </template>
- <template v-slot:formingNum="{ row }">
- <span> {{ row.formingNum }} </span>
- </template>
- <template v-slot:formingWeight="{ row }">
- <span> {{ row.formingWeight }} {{ row.weightUnit }} </span>
- </template>
- <template v-slot:singleReport="{ row }">
- <span v-if="row.singleReport == 0">批量报工</span>
- <span v-if="row.singleReport == 1">单个报工</span>
- </template>
- <template v-slot:outsourceStatus="{ row }">
- <div v-if="row.outsourceStatus">
- <span v-if="row.outsourceStatus == 1">未委外</span>
- <span v-if="row.outsourceStatus == 2">委外中</span>
- <span v-if="row.outsourceStatus == 3">完成委外</span>
- </div>
- </template>
- <template v-slot:status="{ row }">
- <span :class="{ 'ele-text-danger': row.status == 3 }">
- {{ statusFormatter(row.status) }}
- </span>
- </template>
- <!-- 操作列 -->
- <template v-slot:action="{ row }">
- <template v-if="activeName == 'second'">
- <el-link
- type="primary"
- :underline="false"
- v-if="row.status == 6"
- @click="toCancel(row)"
- >
- 取消完结
- </el-link></template
- >
- <el-link
- v-if="row.clientEnvironmentId == 21"
- type="primary"
- :underline="false"
- @click="routing(row)"
- >
- 更改工艺路线
- </el-link>
- <template>
- <el-link type="primary" :underline="false" @click="toView(row)">
- 序列号
- </el-link></template
- >
- <template v-if="activeName != 'second'">
- <el-link
- v-if="
- (row.status == 4 || row.status == 5 || row.status == 7) &&
- row.isSplit == 0
- "
- type="primary"
- :underline="false"
- @click="handleOrderPublish(row)"
- >
- 报工
- </el-link>
- <el-link
- v-if="row.status == 4 && row.isSplit == 0"
- type="primary"
- :underline="false"
- @click="toUnpack(row)"
- >
- 拆分
- </el-link>
- <el-link
- v-if="row.status == 4 && row.isSplit == 0"
- type="primary"
- :underline="false"
- @click="toEnd(row)"
- >
- 完结
- </el-link>
- <el-link
- v-if="dispatchBtn(row)"
- type="primary"
- :underline="false"
- @click="toReleaseOpen(row)"
- >
- 任务派单
- </el-link>
- </template>
- </template>
- </ele-pro-table>
- </el-card>
- <print ref="printRef"></print>
- <printSr ref="printSrRef"></printSr>
- <printTg ref="printTgRef"></printTg>
- <printCard ref="printCardRef"></printCard>
- <createDialog ref="createRef" @success="createSuccess" />
- <unpackDialog ref="unpackRef" @success="createSuccess" />
- <pickingDialog ref="PickingRef" />
- <detailsPop ref="detailsRef"> </detailsPop>
- <EquipmentDialog ref="equipmentRef" @choose="choose"></EquipmentDialog>
- <xlhView ref="xlhRef"></xlhView>
- <workReport ref="workReport"></workReport>
- <releaseDialog
- ref="releaseRef"
- :current="dispatchRow"
- :dispatchVisible.sync="dispatchVisible"
- @createSuccess="createSuccess"
- v-if="dispatchVisible"
- />
- </div>
- </template>
- <script>
- import releaseDialog from './components/releaseDialog';
- import workReport from './workReport.vue';
- import {
- getPage,
- batchCompletion,
- cancelCompletion,
- updatePriority,
- update,
- getTaskIdByInstanceId,
- updateStatusPause,
- updateStatusTerminate
- } from '@/api/produceOrder/index.js';
- import xlhView from './components/xlhView.vue';
- import { fieldModel } from '@/api/produceWord/index.js';
- import produceOrderSearch from './components/produceOrder-search.vue';
- import createDialog from './components/createDialog.vue';
- import unpackDialog from './components/unpackDialog.vue';
- import pickingDialog from './components/pickingDialog.vue';
- import print from './components/print.vue';
- import printSr from './components/printSr';
- import printTg from './components/printTg';
- import printCard from './print.vue';
- import EquipmentDialog from './components/EquipmentDialog.vue';
- import detailsPop from './components/details/index.vue';
- import { debounce } from 'lodash';
- import tableColumnsMixin from '@/mixins/tableColumnsMixin';
- export default {
- mixins: [tableColumnsMixin],
- components: {
- releaseDialog,
- produceOrderSearch,
- pickingDialog,
- createDialog,
- unpackDialog,
- print,
- printSr,
- printTg,
- printCard,
- detailsPop,
- EquipmentDialog,
- xlhView,
- workReport
- },
- data() {
- return {
- activeName: 'first',
- tabValue: '5',
- id: '',
- where: {},
- // 加载状态
- loading: false,
- pageType: 'add',
- dialogTitle: '',
- isBindPlan: false,
- statusOpt: {
- first: [
- { label: '所有状态', value: '5,4' },
- { label: '待生产', value: '4' },
- { label: '生产中', value: '5' }
- // { label: '已延期', value: '7' }
- ],
- second: [{ label: '已完成', value: '6' }]
- },
- planType: [
- { label: '所有计划类型', value: null },
- { label: '内销计划', value: '1' },
- { label: '外销计划', value: '2' },
- { label: '预制计划', value: '3' }
- ],
- selection: [],
- columns: [],
- cacheKeyUrl: '7cc8e5d2-mes-produceOrder',
- columnsVersion: 0,
- dispatchVisible: false,
- dispatchRow: {}
- };
- },
- computed: {
- // 表格列配置
- seekList() {
- return [
- {
- label: '关键字:',
- value: 'keyWord',
- type: 'input',
- placeholder: ''
- },
- {
- label: '生产工单号:',
- value: 'code',
- type: 'input',
- placeholder: '',
- labelWidth: 100
- },
- {
- label: '生产订单号:',
- value: 'apsWorkOrderCode',
- type: 'input',
- labelWidth: 100
- },
- {
- label: '计划编号:',
- value: 'productionPlanCode',
- type: 'input',
- width: 240
- },
- {
- label: '计划类型:',
- value: 'planType',
- type: 'select',
- placeholder: '',
- width: 240,
- // 加载状态
- planList: this.planType
- },
- {
- label: '工艺路线',
- value: 'produceRoutingName',
- type: 'input',
- placeholder: '',
- width: 240
- },
- {
- label: '产品编码',
- value: 'productCode',
- type: 'input',
- placeholder: '',
- width: 240
- },
- {
- label: '产品名称:',
- value: 'productName',
- type: 'input',
- placeholder: '',
- width: 240
- },
- {
- label: '牌号',
- value: 'brandNo',
- type: 'input',
- placeholder: '',
- width: 240
- },
- {
- label: '型号',
- value: 'model',
- type: 'input',
- placeholder: '',
- width: 240
- },
- // {
- // label: "状态:",
- // value: 'status',
- // type: "select",
- // placeholder: '',
- // width: 240,
- // // 加载状态
- // planList: this.statusOpt.first
- // },
- {
- label: '班组:',
- value: 'teamId',
- type: 'select',
- multiple: false, // 是否多选
- filterable: true, // 是否可搜索
- placeholder: '',
- width: 240,
- // 加载状态
- planList: this.statusOpt.first
- },
- {
- label: '创建时间:',
- value: 'createTime',
- type: 'date',
- dateType: 'daterange',
- placeholder: '',
- width: 240,
- // 加载状态
- planList: this.statusOpt.first
- }
- ];
- },
- basicColumns() {
- const num = this.columnsVersion;
- const opt = {
- first: [
- // {
- // prop: 'deliveryTime',
- // label: '预测交货日期',
- // align: 'center',
- // showOverflowTooltip: true,
- // minWidth: 110
- // }
- ],
- second: [
- {
- prop: 'completeTime',
- label: '完成时间',
- align: 'center'
- },
- {
- prop: 'cycle',
- label: '生产周期',
- align: 'center'
- }
- ]
- };
- return [
- {
- width: 45,
- type: 'selection',
- columnKey: 'selection',
- align: 'center',
- fixed: 'left'
- },
- {
- prop: 'batchNo',
- label: '批次号',
- align: 'center',
- minWidth: 130,
- showOverflowTooltip: true
- },
- {
- prop: 'lineNumber',
- label: '行号',
- align: 'center',
- minWidth: 130,
- showOverflowTooltip: true
- },
- {
- slot: 'code',
- label: '生产工单号',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- // {
- // prop: 'originalCode',
- // label: '原始工单号',
- // align: 'center',
- // minWidth: 110
- // },
- {
- slot: 'QRcode',
- label: '二维码',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- label: '生产订单号',
- slot: 'apsWorkOrderCode',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- prop: 'productionPlanCode',
- label: '计划编号',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- prop: 'planType',
- label: '计划类型',
- align: 'center',
- showOverflowTooltip: true,
- formatter: (row) => {
- const obj = this.planType.find((i) => i.value == row.planType);
- return obj && obj.label;
- }
- },
- {
- prop: 'bomType',
- label: '生产类型',
- align: 'center',
- width: 120,
- formatter: (row) => {
- if (row.bomType == 1) {
- return '产品(PBOM)';
- }
- if (row.bomType == 2) {
- return '加工(MBOM)';
- }
- if (row.bomType == 3) {
- return '装配(ABOM)';
- }
- // if (row.bomType == 4) {
- // return '装配(EBOM)';
- // }
- return '';
- }
- },
- {
- prop: 'bomCategoryName',
- label: 'BOM版本',
- align: 'center',
- width: 130,
- showOverflowTooltip: true,
- formatter: (row) => {
- if (row.bomCategoryName) {
- return `${row.bomCategoryName} (V${row.bomCategoryVersions}.0)`;
- }
- return '';
- }
- },
- {
- prop: 'produceRoutingName',
- label: '工艺路线',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'productCode',
- label: '编码',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'productName',
- label: '名称',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'model',
- label: '型号',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'specification',
- label: '规格',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'productionCodes',
- label: '生产编号',
- align: 'center',
- minWidth: 150,
- showOverflowTooltip: true
- },
- {
- prop: 'brandNo',
- label: '牌号',
- align: 'center'
- },
- {
- prop: 'taskName',
- label: '工序进度',
- align: 'center'
- },
- {
- prop: 'singleReport',
- slot: 'singleReport',
- label: '报工类型',
- align: 'center'
- },
- {
- prop: 'outsourceStatus',
- label: '委外状态',
- align: 'center',
- slot: 'outsourceStatus',
- showOverflowTooltip: true
- },
- {
- prop: 'priority',
- label: '优先级',
- align: 'center',
- minWidth: 120,
- slot: 'priority',
- sortable: 'custom'
- },
- {
- prop: 'formingNum',
- label: '要求生产数量',
- align: 'center',
- slot: 'formingNum',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'formingWeight',
- label: '要求生产重量',
- slot: 'formingWeight',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'formedNum',
- label: '已生产数量',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'formedWeight',
- label: '已生产重量',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'planStartTime',
- label: '计划开始时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 150,
- sortable: 'custom'
- },
- {
- prop: 'planCompleteTime',
- label: '计划结束时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 150,
- sortable: 'custom'
- },
- {
- prop: 'startTime',
- label: '实际开始时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 150,
- sortable: 'custom'
- },
- {
- prop: 'completeTime',
- label: '实际完成时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 150,
- sortable: 'custom'
- },
- ...opt[this.activeName],
- {
- prop: 'createTime',
- label: '创建时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 150,
- sortable: 'custom'
- },
- // {
- // prop: 'status',
- // slot: 'status',
- // label: '状态',
- // align: 'center',
- // formatter: (row) => {
- // const obj = this.statusOpt[this.activeName].find(
- // (i) => i.value == row.status
- // );
- // return obj && obj.label;
- // }
- // },
- {
- prop: 'deviceName',
- slot: 'deviceName',
- label: '设备名称',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'crewNames',
- slot: 'crewNames',
- label: '报工人员',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'teamName',
- label: '班组',
- align: 'center',
- showOverflowTooltip: true
- }
- ];
- },
- dispatchBtn() {
- return (row) => {
- if (Number(row.taskId) == NaN || Number(row.taskId) <= 0) {
- return false;
- }
- return !!row.taskId;
- };
- },
- clientEnvironmentId() {
- return this.$store.state.user.info.clientEnvironmentId;
- }
- },
- watch: {
- activeName: {
- handler() {
- if (this.activeName) {
- this.where.status = this.statusOpt[this.activeName][0].value;
- this.reload();
- }
- },
- immediate: true
- },
- tabValue: {
- // handler(newVal) {
- // if (newVal === '6') {
- // this.columns.splice(3, 1);
- // } else {
- // if (this.columns[3].label !== '生产订单号') {
- // this.columns.splice(3, 0, {
- // label: '生产订单号',
- // slot: 'apsWorkOrderCode',
- // align: 'center',
- // minWidth: 110,
- // showOverflowTooltip: true
- // });
- // }
- // }
- // },
- // immediate: true
- }
- },
- created() {
- this.getFieldModel();
- },
- mounted() {
- this.reload();
- },
- methods: {
- //派单
- toReleaseOpen(row) {
- getTaskIdByInstanceId(row.taskId)
- .then((res) => {
- if (res) {
- this.dispatchRow = { ...row };
- this.dispatchRow.initialWeight = row.formingWeight
- ? row.formingWeight + row.weightUnit
- : '';
- this.dispatchRow.taskInstanceId = res;
- this.dispatchVisible = true;
- }
- })
- .catch((err) => {
- this.$message.error(err.message);
- });
- },
- search(e) {
- if (Array.isArray(e.createTime) && e.createTime.length) {
- e.createTimeStart = e.createTime[0];
- e.createTimeEnd = e.createTime[1];
- }
- this.reload(e);
- },
- // 查看序列号
- toView(row) {
- this.$refs.xlhRef.open(row);
- },
- handlePicking() {
- this.$router.push({
- path: '/produceOrder/picking'
- });
- },
- statusFormatter(status) {
- const obj = this.statusOpt[this.activeName].find(
- (i) => i.value == status
- );
- return obj && obj.label;
- },
- btnPrint() {
- const url = this.$router.resolve({ path: '/print' }).href; // 获取目标URL路径的完整URL字符串
- window.open(url, '_blank');
- // this.$router.push({
- // path: '/print'
- // });
- },
- routing(row) {
- this.id = row.id;
- this.$refs.equipmentRef.open();
- },
- handleTabClick() {
- if (this.tabValue == '6') {
- this.activeName = 'second';
- } else {
- this.activeName = 'first';
- }
- this.reload();
- },
- /* 表格数据源 */
- async datasource({ page, limit, where, order }) {
- // console.log('1123',where)
- where.statusList = [this.tabValue];
- let res = await getPage({
- ...where,
- ...order,
- queryTermination: this.tabValue == '10' ? 1 : 0,
- pageNum: page,
- size: limit,
- ...this.sort
- });
- // res['list'] = this.flattenArray(res.list)
- return res;
- },
- onSortChange(e) {
- let sort = {
- orderBy: e.order,
- sortName: e.prop
- };
- this.sort = sort;
- this.reload();
- },
- flattenArray(arr) {
- var result = []; // 存放结果的数组
- for (let i = 0; i < arr.length; i++) {
- if (Array.isArray(arr[i].subWorkOrder)) {
- let _arr = [];
- _arr = _arr.concat(arr[i].subWorkOrder);
- delete arr[i].subWorkOrder;
- result.push(arr[i]);
- result.push(..._arr);
- } else {
- result.push(arr[i]);
- }
- }
- return result;
- },
- /* 数据转为树形结构 */
- parseData(data) {
- return {
- ...data,
- list: this.$util.toTreeData({
- data: data.list,
- count: data.total,
- idField: 'code',
- parentIdField: 'originalCode'
- })
- };
- },
- /* 数据转为树形结构 */
- createSuccess() {
- this.reload();
- },
- handleCreate() {
- this.$refs.createRef.open(0);
- },
- // 发布工单
- handleOrderPublish(row) {
- this.$refs.workReport.open(row);
- // this.$router.push({
- // path: '/produce',
- // query: {
- // workOrderId: row.id
- // }
- // });
- // this.$router.push({
- // path: '/produceOrder/workReport',
- // query: {
- // workOrderId: row.id
- // }
- // });
- },
- getFieldModel() {
- fieldModel({ fieldModel: 't_main_category' }).then((res) => {
- const privateColumn = [
- {
- columnKey: 'action',
- label: '操作',
- width: 250,
- align: 'center',
- resizable: false,
- fixed: 'right',
- slot: 'action',
- showOverflowTooltip: true
- }
- ];
- let newRes = res.map((m) => {
- return {
- prop: 'extField.' + m.prop,
- label: m.label,
- align: 'center',
- showOverflowTooltip: true
- };
- });
- this.columns = [...this.basicColumns, ...newRes, ...privateColumn];
- this.getTabColumns();
- this.$forceUpdate();
- });
- },
- toPause() {
- if (!this.selection.length) {
- return this.$message.warning('请至少选择一条工单!');
- }
- let ids = [];
- this.selection.forEach((item) => {
- ids.push(item.id);
- });
- this.$confirm(`是否要暂停工单?`, '提醒', {
- confirmButtonText: '确认',
- cancelButtonText: '取消',
- type: 'warning'
- })
- .then(() => {
- updateStatusPause(ids).then((res) => {
- this.$message.success('成功');
- this.reload();
- });
- })
- .catch(() => {});
- },
- toTermination() {
- if (!this.selection.length) {
- return this.$message.warning('请至少选择一条工单!');
- }
- let ids = [];
- this.selection.forEach((item) => {
- ids.push(item.id);
- });
- this.$confirm(`是否要终止工单?`, '提醒', {
- confirmButtonText: '确认',
- cancelButtonText: '取消',
- type: 'warning'
- })
- .then(() => {
- updateStatusTerminate(ids).then((res) => {
- this.$message.success('成功');
- this.reload();
- });
- })
- .catch(() => {});
- },
- // 完结与批量完结
- toEnd(row) {
- if (row) {
- this.$confirm(`是否要完结工单【${row.code}】?`, '提醒', {
- confirmButtonText: '确认',
- cancelButtonText: '取消',
- type: 'warning'
- })
- .then(() => {
- batchCompletion([row.id]).then((res) => {
- this.$message.success('成功');
- this.reload();
- });
- })
- .catch(() => {});
- } else {
- if (!this.selection.length) {
- return this.$message.warning('请至少选择一条工单!');
- }
- const ids = [];
- this.selection.map((item) => {
- ids.push(item.id);
- });
- const h = this.$createElement;
- this.$msgbox({
- title: '提醒',
- message: h('p', null, [
- h('span', null, '是否要完结 '),
- h(
- 'span',
- { style: 'color: #70B603' },
- `${this.selection.length}`
- ),
- h('span', null, ' 条工单?')
- ]),
- showCancelButton: true,
- confirmButtonText: '确认',
- cancelButtonText: '取消',
- type: 'warning'
- })
- .then(() => {
- batchCompletion(ids).then((res) => {
- this.$message.success('成功');
- this.reload();
- });
- })
- .catch(() => {});
- }
- },
- // 取消完结
- toCancel(row) {
- cancelCompletion([row.id]).then((res) => {
- this.$message.success('成功');
- this.reload();
- });
- },
- // 拆分
- toUnpack(row) {
- this.$refs.unpackRef.open(row);
- },
- handleTabChange() {
- this.$refs.searchRef.reset();
- },
- /* 刷新表格 */
- reload(where = {}) {
- this.$nextTick(() => {
- where.statusList = (
- where.status || this.statusOpt[this.activeName][0].value
- ).split(',');
- this.$refs.table.reload({ page: 1, where });
- });
- },
- // 生产工单跳转
- goDetail(row) {
- this.$refs.detailsRef.open(row);
- },
- handleDelete({ id }) {
- this.$confirm('确定删除当前数据?', '提示').then(async () => {
- await del(id);
- this.$message.success('删除成功!');
- this.reload();
- });
- },
- handleQRcode(row) {
- if (this.clientEnvironmentId == 2) {
- this.$refs.printSrRef.open([row.id]);
- } else if (this.clientEnvironmentId == 3) {
- this.$refs.printTgRef.open([row.id]);
- } else {
- this.$refs.printRef.open([row.id]);
- }
- },
- allPrinting() {
- let ids = this.findAllIds(this.selection);
- if (this.clientEnvironmentId == 2) {
- this.$refs.printSrRef.open(ids);
- } else if (this.clientEnvironmentId == 3) {
- this.$refs.printTgRef.open(ids);
- } else {
- this.$refs.printRef.open(ids);
- }
- },
- // 工艺卡打印
- cardPrinting() {
- if (this.selection.length < 1) {
- return this.$message.warning('请选择一条工单!');
- }
- let ids = this.findAllIds(this.selection);
- this.$refs.printCardRef.open(ids);
- },
- findAllIds(nodes) {
- let ids = [];
- nodes.forEach((node) => {
- ids.push(node.id); // 添加当前节点的id
- if (node.children && node.children.length > 0) {
- // 递归调用自身来处理子节点
- ids = ids.concat(this.findAllIds(node.children));
- }
- });
- return ids;
- },
- choose(row) {
- this.updateFn(row);
- },
- async updateFn(row) {
- let req = {
- id: this.id, //工艺路线id false
- produceRoutingId: row[0].id, //工艺路线id false
- produceRoutingName: row[0].name
- };
- const res = await update(req);
- this.reload();
- },
- sortTop(row) {
- row.priority = Number(row.priority) + 1;
- this.priorityChange(row);
- },
- sortBottom(row) {
- if (row.priority <= 1) {
- return;
- }
- row.priority = Number(row.priority) - 1;
- this.priorityChange(row);
- },
- priorityChange(row) {
- if (row.priority > 10) {
- row.priority = 10; // 如果大于 10,则设置为 10
- } else if (row.priority < 0) {
- row.priority = 0; // 如果小于 0,则设置为 0
- }
- this.priorityFn(row);
- },
- priorityFn: debounce(function (row) {
- let params = {
- id: row.id,
- priority: row.priority
- };
- updatePriority(params).then((res) => {});
- }, 800)
- }
- };
- </script>
|