|
|
|
@ -1,7 +1,8 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<el-card class="el-card">
|
|
|
|
|
<el-form v-if="queryList && queryList.length > 0 && showSearch" :model="filterQuery" class="query-form" size="mini" label-width="100px">
|
|
|
|
|
<el-form v-if="queryList && queryList.length > 0 && showSearch" :model="filterQuery" class="query-form"
|
|
|
|
|
size="mini" label-width="100px">
|
|
|
|
|
<!-- <el-row>
|
|
|
|
|
<el-col :span="18">
|
|
|
|
|
<el-form-item label="扫码查询:">
|
|
|
|
@ -142,8 +143,9 @@
|
|
|
|
|
|
|
|
|
|
</el-row> -->
|
|
|
|
|
<el-row style=" display:flex; flex-wrap: wrap; ">
|
|
|
|
|
<template v-for="(item, index) in queryList" >
|
|
|
|
|
<el-form-item v-if="item.columnType == 'input' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`" :key="item.id">
|
|
|
|
|
<template v-for="(item, index) in queryList">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'input' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`" :key="item.id">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="filterQuery[item.columnName]"
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
@ -152,7 +154,8 @@
|
|
|
|
|
clearable
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'select' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'select' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
<el-select v-model="filterQuery[item.columnName]"
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
|
:disabled="executeEval(null,item.disabledFuc,false)"
|
|
|
|
@ -164,12 +167,15 @@
|
|
|
|
|
:value="dict.value"
|
|
|
|
|
/>
|
|
|
|
|
<span style="float: left">{{ item.name }}</span>
|
|
|
|
|
<span v-if="item.isShowXx == '1'" style="float: right; color: #8492a6; font-size: 13px">{{ item.code }}</span>
|
|
|
|
|
<span v-if="item.isShowXx == '1'" style="float: right; color: #8492a6; font-size: 13px">{{
|
|
|
|
|
item.code
|
|
|
|
|
}}</span>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'selectServer' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'selectServer' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="map[item.columnName]"
|
|
|
|
|
v-model="filterQuery[item.columnName]"
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
|
:disabled="executeEval(null,item.disabledFuc,false)"
|
|
|
|
|
filterable
|
|
|
|
@ -183,10 +189,13 @@
|
|
|
|
|
:value="item.code"
|
|
|
|
|
/>
|
|
|
|
|
<span style="float: left">{{ item.name }}</span>
|
|
|
|
|
<span v-if="item.isShowXx == '1'" style="float: right; color: #8492a6; font-size: 13px">{{ item.code }}</span>
|
|
|
|
|
<span v-if="item.isShowXx == '1'" style="float: right; color: #8492a6; font-size: 13px">{{
|
|
|
|
|
item.code
|
|
|
|
|
}}</span>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'datePicker' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'datePicker' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
:picker-options="pickerOptions"
|
|
|
|
|
v-model="actDateRange"
|
|
|
|
@ -199,7 +208,8 @@
|
|
|
|
|
></el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item v-if="item.columnType == 'date' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'date' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="filterQuery[item.columnName]"
|
|
|
|
|
:style="`width:${item.width+'px'}`"
|
|
|
|
@ -209,7 +219,8 @@
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
|
></el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'datePickera' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'datePickera' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
:picker-options="pickerOptions"
|
|
|
|
|
v-model="confirmDateRange"
|
|
|
|
@ -237,10 +248,16 @@
|
|
|
|
|
>查询
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="primary" icon="el-icon-document" @click="selectExport" :loading="selectExportLoading">选中导出Excel</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-document" @click="searchExport" :loading="searchExportLoading">结果导出Excel</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-printer" @click="optinPrint" :loading="optinPrintLoading">选中打印</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-printer" @click="selectPrint" :loading="selectPrinttLoading">查询结果打印</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-document" @click="selectExport" :loading="selectExportLoading">
|
|
|
|
|
选中导出Excel
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-document" @click="searchExport" :loading="searchExportLoading">
|
|
|
|
|
结果导出Excel
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-printer" @click="optinPrint" :loading="optinPrintLoading">选中打印
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-printer" @click="selectPrint" :loading="selectPrinttLoading">查询结果打印
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</div>
|
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
@ -310,7 +327,7 @@
|
|
|
|
|
:show-overflow-tooltip="item.tooltip"
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-radio :label="scope.row.id" v-model="radioCheck"><span></span></el-radio>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
@ -323,8 +340,10 @@
|
|
|
|
|
:show-overflow-tooltip="item.tooltip"
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item.lableRuleObj[scope.row[item.columnName]])}">{{ item.lableRuleObj[scope.row[item.columnName]] }}</span>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item.lableRuleObj[scope.row[item.columnName]])}">{{
|
|
|
|
|
item.lableRuleObj[scope.row[item.columnName]]
|
|
|
|
|
}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
@ -336,9 +355,12 @@
|
|
|
|
|
:show-overflow-tooltip="item.tooltip"
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag :type="executeFuc(scope.row,'4',item,item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName])">
|
|
|
|
|
<span>{{ item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName] }}</span>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag
|
|
|
|
|
:type="executeFuc(scope.row,'4',item,item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName])">
|
|
|
|
|
<span>{{
|
|
|
|
|
item.lableRuleObj ? item.lableRuleObj[scope.row[item.columnName]] : scope.row[item.columnName]
|
|
|
|
|
}}</span>
|
|
|
|
|
</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
@ -373,7 +395,9 @@
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item,scope.row[item.columnName])}">{{ scope.row[item.columnName] }}</span>
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item,scope.row[item.columnName])}">{{
|
|
|
|
|
scope.row[item.columnName]
|
|
|
|
|
}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</template>
|
|
|
|
@ -431,7 +455,7 @@ import {findByInvUser, getLocalJoinByUser, getOrderDetailBus, getOrderDetailBusO
|
|
|
|
|
import {getCorrespondence} from "@/api/basic/basicUnitMaintain";
|
|
|
|
|
import {excelImport} from "@/api/inout/statData";
|
|
|
|
|
import {
|
|
|
|
|
getHead,executeFuc
|
|
|
|
|
getHead, executeFuc
|
|
|
|
|
} from "@/utils/customConfig";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
@ -456,9 +480,9 @@ export default {
|
|
|
|
|
fromCorp: null,
|
|
|
|
|
keyWords: null,
|
|
|
|
|
inoutPrintStatus: null,
|
|
|
|
|
confirmStarTime:null, //发票确认起始日期
|
|
|
|
|
confirmEndTime:null,
|
|
|
|
|
corpName:null,
|
|
|
|
|
confirmStarTime: null, //发票确认起始日期
|
|
|
|
|
confirmEndTime: null,
|
|
|
|
|
corpName: null,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
printMap: {
|
|
|
|
@ -474,21 +498,21 @@ export default {
|
|
|
|
|
optinPrintLoading: false,
|
|
|
|
|
selectPrinttLoading: false,
|
|
|
|
|
total: 0,
|
|
|
|
|
tableHeader:[],
|
|
|
|
|
queryList:[],
|
|
|
|
|
fromList:[],
|
|
|
|
|
tableHeader: [],
|
|
|
|
|
queryList: [],
|
|
|
|
|
fromList: [],
|
|
|
|
|
options: {
|
|
|
|
|
getBusTypeByInv:[],
|
|
|
|
|
getBusTypeByInv: [],
|
|
|
|
|
},
|
|
|
|
|
orderSelection: [],
|
|
|
|
|
showSup: false,
|
|
|
|
|
customerId: this.$store.getters.customerId,
|
|
|
|
|
map:{
|
|
|
|
|
"actDateRange" : this.actDateRange,
|
|
|
|
|
"confirmDateRange" : this.confirmDateRange,
|
|
|
|
|
map: {
|
|
|
|
|
"actDateRange": this.actDateRange,
|
|
|
|
|
"confirmDateRange": this.confirmDateRange,
|
|
|
|
|
},
|
|
|
|
|
actDateRange: [],
|
|
|
|
|
confirmDateRange:[],
|
|
|
|
|
confirmDateRange: [],
|
|
|
|
|
actionType: null,
|
|
|
|
|
auditDateRange: [],
|
|
|
|
|
pickerOptions: {
|
|
|
|
@ -558,7 +582,7 @@ export default {
|
|
|
|
|
this.filterQuery.startAduditTime = null;
|
|
|
|
|
this.filterQuery.endAduditTime = null;
|
|
|
|
|
}
|
|
|
|
|
if (this.confirmDateRange!== null) {
|
|
|
|
|
if (this.confirmDateRange !== null) {
|
|
|
|
|
this.filterQuery.confirmStarTime = this.confirmDateRange[0];
|
|
|
|
|
this.filterQuery.confirmEndTime = this.confirmDateRange[1];
|
|
|
|
|
} else {
|
|
|
|
@ -656,13 +680,13 @@ export default {
|
|
|
|
|
this.optinPrintLoading = false
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
let printParams = {
|
|
|
|
|
startAduditTime :this.filterQuery.startAduditTime,
|
|
|
|
|
startAduditTime: this.filterQuery.startAduditTime,
|
|
|
|
|
endAduditTime: this.filterQuery.endAduditTime,
|
|
|
|
|
confirmStarTime : this.filterQuery.confirmStarTime ,
|
|
|
|
|
confirmEndTime : this.filterQuery.confirmEndTime ,
|
|
|
|
|
corpName : this.filterQuery.corpName ,
|
|
|
|
|
confirmStarTime: this.filterQuery.confirmStarTime,
|
|
|
|
|
confirmEndTime: this.filterQuery.confirmEndTime,
|
|
|
|
|
corpName: this.filterQuery.corpName,
|
|
|
|
|
employeeName: this.$store.getters.user.employeeName,
|
|
|
|
|
locInvName:this.$store.getters.locInvName,
|
|
|
|
|
locInvName: this.$store.getters.locInvName,
|
|
|
|
|
templateId: res.data,
|
|
|
|
|
list: this.orderSelection
|
|
|
|
|
};
|
|
|
|
@ -718,7 +742,7 @@ export default {
|
|
|
|
|
keyWords: this.filterQuery.keyWords,
|
|
|
|
|
mainAction: this.filterQuery.mainAction,
|
|
|
|
|
action: this.filterQuery.action,
|
|
|
|
|
locInvName:this.$store.getters.locInvName,
|
|
|
|
|
locInvName: this.$store.getters.locInvName,
|
|
|
|
|
employeeName: this.$store.getters.user.employeeName,
|
|
|
|
|
};
|
|
|
|
|
if (this.actDateRange !== null) {
|
|
|
|
@ -728,7 +752,7 @@ export default {
|
|
|
|
|
printParams.startAduditTime = null;
|
|
|
|
|
printParams.endAduditTime = null;
|
|
|
|
|
}
|
|
|
|
|
if (this.confirmDateRange!== null) {
|
|
|
|
|
if (this.confirmDateRange !== null) {
|
|
|
|
|
printParams.confirmStarTime = this.confirmDateRange[0];
|
|
|
|
|
printParams.confirmEndTime = this.confirmDateRange[1];
|
|
|
|
|
} else {
|
|
|
|
@ -828,7 +852,7 @@ export default {
|
|
|
|
|
printParams.startAduditTime = null;
|
|
|
|
|
printParams.endAduditTime = null;
|
|
|
|
|
}
|
|
|
|
|
if (this.confirmDateRange!== null) {
|
|
|
|
|
if (this.confirmDateRange !== null) {
|
|
|
|
|
printParams.confirmStarTime = this.confirmDateRange[0];
|
|
|
|
|
printParams.confirmEndTime = this.confirmDateRange[1];
|
|
|
|
|
} else {
|
|
|
|
@ -848,11 +872,11 @@ export default {
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
executeFuc(row,type,clickFuc,value){
|
|
|
|
|
return executeFuc(this,row,type,clickFuc,value);
|
|
|
|
|
executeFuc(row, type, clickFuc, value) {
|
|
|
|
|
return executeFuc(this, row, type, clickFuc, value);
|
|
|
|
|
},
|
|
|
|
|
executeEval(row,expression,defaultRet){
|
|
|
|
|
if(expression){
|
|
|
|
|
executeEval(row, expression, defaultRet) {
|
|
|
|
|
if (expression) {
|
|
|
|
|
return eval(expression);
|
|
|
|
|
}
|
|
|
|
|
return defaultRet;
|
|
|
|
@ -871,7 +895,7 @@ export default {
|
|
|
|
|
this.showSup = true;
|
|
|
|
|
}
|
|
|
|
|
this.actionType = this.$route.query.name;
|
|
|
|
|
getHead("supInoutSearchOrder","1").then((re) => {
|
|
|
|
|
getHead("supInoutSearchOrder", "1").then((re) => {
|
|
|
|
|
// 处理返回的数据
|
|
|
|
|
this.tableObj = re.data;
|
|
|
|
|
this.tableHeader = re.data.tableList;
|
|
|
|
|