|
@@ -271,6 +271,7 @@
|
|
|
>
|
|
>
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<div style="display: inline-block;float: left;">
|
|
<div style="display: inline-block;float: left;">
|
|
|
|
|
+<!-- <el-button size="mini" type="text" @click="openPrintOrderInfo(scope.row.orderNumber)">查看</el-button>-->
|
|
|
<el-button v-if="scope.row.workStatus === 0 || scope.row.workStatus == 3" size="mini" @click="generatePdfCombination(scope.row)" :disabled="wave.productionStatus == 0">生成PDF</el-button>
|
|
<el-button v-if="scope.row.workStatus === 0 || scope.row.workStatus == 3" size="mini" @click="generatePdfCombination(scope.row)" :disabled="wave.productionStatus == 0">生成PDF</el-button>
|
|
|
<el-button size="mini" @click="openModifyExpressBillDialog(scope.row)">修改运单号</el-button>
|
|
<el-button size="mini" @click="openModifyExpressBillDialog(scope.row)">修改运单号</el-button>
|
|
|
<el-button key="removeFromWaveBtn" size="mini" type="text" v-if="wave.productionStatus == 0 || scope.row.status != 3" :disabled="wave.productionStatus == 1" @click="removeFromWave(scope.row)">移出波次</el-button>
|
|
<el-button key="removeFromWaveBtn" size="mini" type="text" v-if="wave.productionStatus == 0 || scope.row.status != 3" :disabled="wave.productionStatus == 1" @click="removeFromWave(scope.row)">移出波次</el-button>
|
|
@@ -342,10 +343,8 @@
|
|
|
import moment from 'moment';
|
|
import moment from 'moment';
|
|
|
import {downloadPdf} from "@/utils/pdf";
|
|
import {downloadPdf} from "@/utils/pdf";
|
|
|
import {downloadXls} from "@/utils/excel";
|
|
import {downloadXls} from "@/utils/excel";
|
|
|
- import {downloadZip} from "@/utils/zip";
|
|
|
|
|
import { saveAs } from 'file-saver';
|
|
import { saveAs } from 'file-saver';
|
|
|
import JSzip from 'jszip';
|
|
import JSzip from 'jszip';
|
|
|
- import axios from 'axios'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
export default {
|
|
|
data () {
|
|
data () {
|
|
@@ -436,14 +435,14 @@
|
|
|
wavePrintOrderPdfDownloadLoading: false,
|
|
wavePrintOrderPdfDownloadLoading: false,
|
|
|
modifyExpressBillVisible: false,
|
|
modifyExpressBillVisible: false,
|
|
|
printOrder:{},
|
|
printOrder:{},
|
|
|
- expandRowDetail:{}
|
|
|
|
|
|
|
+ expandRowDetail:{},
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
components: {
|
|
components: {
|
|
|
ProdPic,
|
|
ProdPic,
|
|
|
InputNumberRange,
|
|
InputNumberRange,
|
|
|
ExpressBillUpload,
|
|
ExpressBillUpload,
|
|
|
- OrderScanDelivery
|
|
|
|
|
|
|
+ OrderScanDelivery,
|
|
|
},
|
|
},
|
|
|
computed: {
|
|
computed: {
|
|
|
|
|
|