| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656 |
- <template>
- <div class="ele-body">
- <el-card shadow="never" v-loading="loading">
- <produceOrder-search
- @search="reload"
- ref="searchRef"
- :statusOpt="statusOpt"
- :planType="planType"
- :activeName="activeName"
- >
- </produceOrder-search>
- <el-tabs v-model="activeName" type="card">
- <el-tab-pane label="未完成工单" name="first"></el-tab-pane>
- <el-tab-pane label="已完成工单" name="second"></el-tab-pane>
- </el-tabs>
- <!-- 数据表格 -->
- <ele-pro-table
- ref="table"
- :key="activeName"
- :initLoad="false"
- :columns="columns"
- :datasource="datasource"
- row-key="code"
- :cache-key="`${activeName}produceOrderTable`"
- :selection.sync="selection"
- @sort-change="onSortChange"
- autoAmendPage
- >
- <!-- :parse-data="parseData" -->
- <template v-slot:toolbar>
- <el-button type="success">新建</el-button>
- <el-button type="success">暂停</el-button>
- <el-button type="success">终止</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
- >
- </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:priority="{ row }">
- <el-input
- v-model="row.priority"
- type="number"
- size="mini"
- :min="0"
- :max="10"
- @change="priorityChange(row)"
- ></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>
- </template>
- <template v-slot:formingNum="{ row }">
- <span >
- {{ row.formingNum }} {{ row.unit }}
- </span>
- </template>
- <template v-slot:formingWeight="{ row }">
- <span >
- {{ row.formingNum }} {{ row.weightUnit }}
- </span>
- </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"
- icon="el-icon-truck"
- v-if="row.status == 6"
- @click="toCancel(row)"
- >
- 取消完结
- </el-link></template
- >
- <template v-if="activeName != 'second'">
- <el-link
- v-if="row.isSplit == 0"
- type="primary"
- :underline="false"
- icon="el-icon-truck"
- @click="handleOrderPublish(1, row)"
- >
- 报工
- </el-link>
- <el-link
- v-if="row.status == 4 && row.isSplit == 0 && !row.originalCode"
- type="primary"
- :underline="false"
- icon="el-icon-truck"
- @click="toUnpack(row)"
- >
- 拆分
- </el-link>
- <el-link
- v-if="row.isSplit == 0"
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="toEnd(row)"
- >
- 完结
- </el-link>
- </template>
- </template>
- </ele-pro-table>
- </el-card>
- <print ref="printRef"></print>
- <printSr ref="printSrRef"></printSr>
- <printTg ref="printTgRef"></printTg>
- <createDialog ref="createRef" @success="createSuccess" />
- <unpackDialog ref="unpackRef" @success="createSuccess" />
- <pickingDialog ref="PickingRef" />
- </div>
- </template>
- <script>
- import {
- getPage,
- batchCompletion,
- cancelCompletion,
- updatePriority
- } from '@/api/produceOrder/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 { debounce } from 'lodash';
- export default {
- components: {
- produceOrderSearch,
- pickingDialog,
- createDialog,
- unpackDialog,
- print,
- printSr,
- printTg
- },
- data() {
- return {
- activeName: 'first',
- // 加载状态
- 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: []
- };
- },
- computed: {
- // 表格列配置
- columns() {
- 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'
- },
- {
- slot: 'code',
- label: '生产工单号',
- align: 'center',
- minWidth: 110
- },
- // {
- // prop: 'originalCode',
- // label: '原始工单号',
- // align: 'center',
- // minWidth: 110
- // },
- {
- slot: 'QRcode',
- label: '二维码',
- align: 'center',
- minWidth: 110
- },
- {
- prop: 'productionPlanCode',
- label: '计划编号',
- align: 'center',
- minWidth: 110
- },
- {
- prop: 'planType',
- label: '计划类型',
- align: 'center',
- formatter: (row) => {
- const obj = this.planType.find((i) => i.value == row.planType);
- return obj && obj.label;
- }
- },
- {
- prop: 'produceRoutingName',
- label: '工艺路线',
- align: 'center'
- },
- {
- prop: 'productCode',
- label: '物料编号',
- align: 'center'
- },
- {
- prop: 'productName',
- label: '产品名称',
- align: 'center'
- },
- {
- prop: 'brandNo',
- label: '牌号',
- align: 'center'
- },
- {
- prop: 'model',
- label: '型号',
- align: 'center'
- },
- {
- prop: 'batchNo',
- label: '批号',
- align: 'center',
- minWidth: 100,
- 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: 110
- },
- {
- prop: 'planCompleteTime',
- label: '计划结束时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'startTime',
- label: '实际开始时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110
- },
- ...opt[this.activeName],
- {
- prop: 'createTime',
- label: '创建时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- slot: 'status',
- label: '状态',
- align: 'center',
- formatter: (row) => {
- const obj = this.statusOpt[this.activeName].find(
- (i) => i.value == row.status
- );
- return obj && obj.label;
- }
- },
- {
- prop: 'teamName',
- label: '班组',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- columnKey: 'action',
- label: '操作',
- width: 250,
- align: 'center',
- resizable: false,
- fixed: 'right',
- slot: 'action',
- showOverflowTooltip: true
- }
- ];
- },
- clientEnvironmentId() {
- return this.$store.state.user.info.clientEnvironmentId;
- }
- },
- // created(){
- // console.log('positiveIntegerReg',positiveIntegerReg)
- // },
- methods: {
- handlePicking() {
- this.$router.push({
- path: '/produceOrder/picking'
- });
- },
- statusFormatter(status) {
- const obj = this.statusOpt[this.activeName].find(
- (i) => i.value == status
- );
- return obj && obj.label;
- },
- /* 表格数据源 */
- async datasource({ page, limit, where, order }) {
- let res = await getPage({
- ...where,
- ...order,
- 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) {
- console.log(99, data);
- return this.$util.toTreeData({
- data: data.list,
- count: data.total,
- idField: 'code',
- parentIdField: 'originalCode'
- });
- },
- /* 数据转为树形结构 */
- createSuccess() {
- this.reload();
- },
- handleCreate() {
- this.$refs.createRef.open(0);
- },
- // 发布工单
- handleOrderPublish(type, row) {
- this.$router.push({
- path: '/produceOrder/report',
- query: {
- type,
- id: row.id
- }
- });
- },
- // 完结与批量完结
- 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.$router.push({
- path: '/produceOrder/detail/' + row.id,
- query: {
- produceVersionId: row.produceVersionId
- }
- });
- },
- 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);
- }
- },
- 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;
- },
- 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>
|