|
|
|
@ -11,7 +11,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
<el-col :span="4" class="el-col" style="margin-top: 6px">
|
|
|
|
|
<el-checkbox v-model="configQuery.downstreamEnable">下游是否联通</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.downstreamEnable">是否连通中继服务</el-checkbox>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="20" class="el-col">
|
|
|
|
|
<div>
|
|
|
|
@ -45,13 +45,17 @@
|
|
|
|
|
<el-checkbox v-model="configQuery.basicProducts">耗材字典</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.basicCorp">往来单位字典</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.basicInv">仓库字典</el-checkbox>
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
<template slot="label">
|
|
|
|
|
第三方基础信息
|
|
|
|
|
</template>
|
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdProducts">第三方产品信息</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdCorp">第三方往来信息</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdInv">第三方仓库信息</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdBusOrder">第三方业务单据</el-checkbox>
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
<template slot="label">
|
|
|
|
|
国家库DI数据
|
|
|
|
@ -63,18 +67,6 @@
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
|
|
|
|
|
<el-descriptions class="margin-top" title="" :column="1" :size="100" style="margin-top: 30px" border>
|
|
|
|
|
|
|
|
|
|
<el-descriptions-item label="单据(单据类型)" label-style="width: 150px">
|
|
|
|
|
<el-checkbox-group v-model="checkedBusTypes" @change="handleCheckedChange" >
|
|
|
|
|
<el-checkbox
|
|
|
|
|
style="padding-top: 10px"
|
|
|
|
|
v-for="busType in busTypes" :label="busType" :key="busType.action"
|
|
|
|
|
:value="busType.action">{{ busType.name }}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-checkbox>
|
|
|
|
|
</el-checkbox-group>
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
<template slot="label">
|
|
|
|
|
单据(单据状态)
|
|
|
|
@ -83,9 +75,96 @@
|
|
|
|
|
<el-checkbox v-model="configQuery.orderUnReceive">未验收单据</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.orderScanFinish">已完成单据</el-checkbox>
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="单据(单据类型)" label-style="width: 150px">
|
|
|
|
|
|
|
|
|
|
<div style="float: right;margin-bottom: 10px;margin-right: 25px">
|
|
|
|
|
<el-button type="primary" size="small" @click="addBusTypeDialog()">添加扫码单据类型</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
<el-table
|
|
|
|
|
:data="checkedBusTypes"
|
|
|
|
|
border
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="单据类型"
|
|
|
|
|
prop="name"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="单据类型代码"
|
|
|
|
|
prop="action"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native="remveBus(scope.$index, scope.row)"
|
|
|
|
|
>移除
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <el-descriptions-item label="单据(单据类型)" label-style="width: 150px">-->
|
|
|
|
|
<!-- <el-checkbox-group v-model="checkedBusTypes" @change="handleCheckedChange">-->
|
|
|
|
|
<!-- <el-checkbox-->
|
|
|
|
|
<!-- style="padding-top: 10px"-->
|
|
|
|
|
<!-- v-for="busType in busTypes" :label="busType" :key="busType.action"-->
|
|
|
|
|
<!-- :value="busType.action">{{ busType.name }}-->
|
|
|
|
|
<!-- </el-checkbox>-->
|
|
|
|
|
<!-- </el-checkbox-group>-->
|
|
|
|
|
<!-- </el-descriptions-item>-->
|
|
|
|
|
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="添加扫码单据类型"
|
|
|
|
|
:visible.sync="addBusDialogVisible"
|
|
|
|
|
width="55%"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
v-if="addBusDialogVisible"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
<div style="float: right;margin-bottom: 10px;margin-right: 25px">
|
|
|
|
|
<el-button type="primary" size="small" @click="addBusType()">选入</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
<el-table
|
|
|
|
|
:data="busTypes"
|
|
|
|
|
border
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
@selection-change="handleCheckedChange"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column type="selection" width="55" :selectable="checkSelectable"></el-table-column>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="单据类型"
|
|
|
|
|
prop="name"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="单据类型代码"
|
|
|
|
|
prop="action"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
<el-pagination
|
|
|
|
|
:page-size="busQuery.limit"
|
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
|
layout="prev, pager, next"
|
|
|
|
|
:total="total"
|
|
|
|
|
></el-pagination>
|
|
|
|
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</el-card>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
@ -119,7 +198,14 @@ export default {
|
|
|
|
|
busTypes: [],
|
|
|
|
|
},
|
|
|
|
|
checkedBusTypes: [],
|
|
|
|
|
busQuery: {
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
},
|
|
|
|
|
busTypes: [],
|
|
|
|
|
multipleSelection: [],
|
|
|
|
|
addBusDialogVisible: false,
|
|
|
|
|
total: 0,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
@ -127,22 +213,19 @@ export default {
|
|
|
|
|
findConfig()
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
// debugger
|
|
|
|
|
this.configQuery = response.data;
|
|
|
|
|
this.checkedBusTypes = [];
|
|
|
|
|
if (this.configQuery.busTypes != null) {
|
|
|
|
|
for (let i = 0; i < this.configQuery.busTypes.length; i++) {
|
|
|
|
|
|
|
|
|
|
for (let k = 0; k < this.busTypes.length; k++) {
|
|
|
|
|
if (this.busTypes[k].action == this.configQuery.busTypes[i]) {
|
|
|
|
|
this.checkedBusTypes.push(this.busTypes[k]);
|
|
|
|
|
this.busTypes[k].isSelect = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
console.log(this.checkedBusTypes);
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
@ -160,8 +243,6 @@ export default {
|
|
|
|
|
this.configQuery.busTypes.push(this.checkedBusTypes[i].action);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
updateConfig(this.configQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
@ -175,23 +256,45 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
handleCheckedChange() {
|
|
|
|
|
|
|
|
|
|
handleCheckedChange(val) {
|
|
|
|
|
this.multipleSelection = val;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getBusType() {
|
|
|
|
|
let query = {
|
|
|
|
|
enabled: true,
|
|
|
|
|
};
|
|
|
|
|
getBussinessType(query)
|
|
|
|
|
getBussinessType(this.busQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.busTypes = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
this.getConfig();
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
addBusTypeDialog() {
|
|
|
|
|
this.addBusDialogVisible = true;
|
|
|
|
|
this.multipleSelection = [];
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
addBusType(){
|
|
|
|
|
var selectData = this.multipleSelection;
|
|
|
|
|
selectData.forEach((obj) => {
|
|
|
|
|
this.checkedBusTypes.push(obj);
|
|
|
|
|
});
|
|
|
|
|
this.addBusDialogVisible = false;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
remveBus(index,row){
|
|
|
|
|
this.checkedBusTypes.splice(index,1);
|
|
|
|
|
},
|
|
|
|
|
checkSelectable(row) {
|
|
|
|
|
return !row.isSelect;
|
|
|
|
|
},
|
|
|
|
|
handleCurrentChange(val) {
|
|
|
|
|
this.busQuery.page = val;
|
|
|
|
|
this.getBusType();
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.headers = {
|
|
|
|
|