1.修改业务单据查询界面交互

master
x_z 3 years ago
parent a61deaecf0
commit 5fe8a29f39

@ -65,7 +65,7 @@ export function saveBusTypes(data) {
url: "/udiwms/basic/thirdsys/saveBusTypes", url: "/udiwms/basic/thirdsys/saveBusTypes",
method: "post", method: "post",
data: data data: data
}) });
} }
export function deleteThirdSysBusType(params) { export function deleteThirdSysBusType(params) {
@ -73,15 +73,15 @@ export function deleteThirdSysBusType(params) {
url: "/udiwms/basic/thirdsys/delete", url: "/udiwms/basic/thirdsys/delete",
method: "get", method: "get",
params: params params: params
}) });
} }
export function enableInterfaces(data) { export function updateInterfaceStatus(data) {
return axios({ return axios({
url: "/udiwms/basic/thirdsys/enableInterfaces", url: "/udiwms/basic/thirdsys/updateInterfaceStatus",
method: "post", method: "post",
data: data data: data
}) });
} }
export function testThirdService(data) { export function testThirdService(data) {
@ -89,8 +89,7 @@ export function testThirdService(data) {
url: "/udiwms/basic/thirdsys/testThirdService", url: "/udiwms/basic/thirdsys/testThirdService",
method: "post", method: "post",
data: data data: data
}) });
} }

@ -123,6 +123,13 @@
>编辑 >编辑
</el-button </el-button
> >
<el-button
type="text"
size="small"
@click.native.stop="disableInterface(scope.row)"
>移除
</el-button
>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -161,18 +168,24 @@
<el-table v-loading="busTypeLoading" :data="busTypeList" style="width: 100%"> <el-table v-loading="busTypeLoading" :data="busTypeList" style="width: 100%">
<el-table-column label="序号" type="index" show-overflow-tooltip="true"></el-table-column> <el-table-column label="序号" type="index" show-overflow-tooltip="true"></el-table-column>
<el-table-column label="单据类型" prop="name" show-overflow-tooltip="true"></el-table-column> <el-table-column label="单据类型" prop="name" show-overflow-tooltip="true"></el-table-column>
<el-table-column v-if="addBussinessTypeBtnVisible" label="第三方单据类型" prop="thirdBuyName"></el-table-column> <el-table-column v-if="submitOrderVisible" label="第三方单据类型" prop="thirdBuyName"></el-table-column>
<el-table-column label="接口地址" prop="url" width="400" show-overflow-tooltip></el-table-column> <el-table-column label="接口地址" prop="url" width="400" show-overflow-tooltip></el-table-column>
<el-table-column label="备注" prop="remark" show-overflow-tooltip></el-table-column> <el-table-column label="备注" prop="remark" show-overflow-tooltip></el-table-column>
<el-table-column label="操作" width="200" prop="price" fixed="right"> <el-table-column label="操作" width="200" prop="price" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button v-if="submitOrderVisible"
type="text" type="text"
size="small" size="small"
@click="handleEdit(scope.$index, scope.row)" @click="handleEdit(scope.$index, scope.row)"
>编辑 >编辑
</el-button> </el-button>
<el-button v-if="getOrdersEditBtnVisible"
type="text"
size="small"
@click="editGeOrderParam(scope.$index, scope.row)"
>编辑
</el-button>
<el-button <el-button
type="text" type="text"
size="small" size="small"
@ -189,7 +202,7 @@
</el-card> </el-card>
<!--添加单据类型弹窗--> <!--业务单据提交编辑弹窗-->
<el-dialog <el-dialog
:title="formMap[formName]" :title="formMap[formName]"
:close-on-click-modal="false" :close-on-click-modal="false"
@ -204,7 +217,7 @@
<div class="itemTag"> <div class="itemTag">
<span>单据类型:&nbsp;</span> <span>单据类型:&nbsp;</span>
</div> </div>
<el-select style="width: 350px;" v-model="thirdBuyForm.name" placeholder="单据类型"> <el-select style="width: 300px;" v-model="thirdBuyForm.name" placeholder="单据类型">
<el-option <el-option
v-for="item in bussinessTypeList" v-for="item in bussinessTypeList"
:key="item.action" :key="item.action"
@ -220,7 +233,7 @@
<div class="itemTag"> <div class="itemTag">
<span>第三方单据类型:&nbsp;</span> <span>第三方单据类型:&nbsp;</span>
</div> </div>
<el-select style="width: 350px;" v-model="thirdBuyForm.thirdBuyName" placeholder="第三方单据类型"> <el-select style="width: 300px;" v-model="thirdBuyForm.thirdBuyName" placeholder="第三方单据类型">
<el-option <el-option
v-for="item in thirdBuyList" v-for="item in thirdBuyList"
:key="item.name" :key="item.name"
@ -239,7 +252,7 @@
<span>接口地址:&nbsp;</span> <span>接口地址:&nbsp;</span>
</div> </div>
<el-input <el-input
style="width: 350px" style="width: 300px"
size="small" size="small"
splaceholder="请输入内容" splaceholder="请输入内容"
v-model="thirdBuyForm.url" v-model="thirdBuyForm.url"
@ -253,7 +266,7 @@
<span>备注:&nbsp;</span> <span>备注:&nbsp;</span>
</div> </div>
<el-input <el-input
style="width: 350px" style="width: 300px"
size="small" size="small"
splaceholder="请输入内容" splaceholder="请输入内容"
v-model="thirdBuyForm.remark" v-model="thirdBuyForm.remark"
@ -277,6 +290,80 @@
</el-dialog> </el-dialog>
<!--业务单据查询编辑弹窗-->
<el-dialog
:title="formMap[formName]"
:close-on-click-modal="false"
:close-on-press-escape="false"
:visible.sync="editGeOrderParamVisible"
style="width: 100%"
>
<div>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="10" class="el-col">
<div class="text item">
<div class="itemTag">
<span>单据类型:&nbsp;</span>
</div>
<el-select style="width: 280px;" v-model="thirdBuyForm.name" placeholder="单据类型">
<el-option
v-for="item in thirdBuyList"
:key="item.code"
:label="item.name"
:value="item.name"
></el-option>
</el-select>
</div>
</el-col>
<el-col :span="10" class="el-col">
<div class="text item">
<div class="itemTag">
<span>接口地址:&nbsp;</span>
</div>
<el-input
style="width: 280px"
size="small"
splaceholder="请输入内容"
v-model="thirdBuyForm.url"
></el-input>
</div>
</el-col>
</el-row>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="10" class="el-col">
<div class="text item">
<div class="itemTag">
<span>备注:&nbsp;</span>
</div>
<el-input
style="width: 280px"
size="small"
splaceholder="请输入内容"
v-model="thirdBuyForm.remark"
></el-input>
</div>
</el-col>
</el-row>
</div>
<div slot="footer" class="dialog-footer">
<el-button @click.native="editGeOrderParamVisible = !editGeOrderParamVisible"
>取消
</el-button
>
<el-button
type="primary"
@click.native="addBussinessTypeData()"
>保存
</el-button>
</div>
</el-dialog>
<el-dialog <el-dialog
title="添加接口" title="添加接口"
:close-on-click-modal="false" :close-on-click-modal="false"
@ -311,9 +398,11 @@
import { import {
getBasicThirdSys, getBasicThirdSys,
updateBasicThirdSys, getDetailBasicThirdSys, updateDetailBasicThirdSys, filterBusTypeDetail, saveBusTypeDetail, updateBasicThirdSys, getDetailBasicThirdSys, updateDetailBasicThirdSys, filterBusTypeDetail, saveBusTypeDetail,
saveBusTypes, deleteThirdSysBusType, enableInterfaces saveBusTypes, deleteThirdSysBusType, updateInterfaceStatus
} from "../../api/basic/basicThirdSys"; } from "../../api/basic/basicThirdSys";
import {getOriginBusType} from "../../api/basic/busOriginType";
import modifyDialog from "./BasicThirdSysModify"; import modifyDialog from "./BasicThirdSysModify";
import modifyDetailDialog from "./BasicThirdSysDetailModify"; import modifyDetailDialog from "./BasicThirdSysDetailModify";
import {filterForThirdSys} from "../../api/basic/busLocalType"; import {filterForThirdSys} from "../../api/basic/busLocalType";
@ -359,7 +448,10 @@ export default {
bussinessTypeFormVisible: false, bussinessTypeFormVisible: false,
bussinessTypeList: [], bussinessTypeList: [],
addBussinessTypeBtnVisible: false, addBussinessTypeBtnVisible: false,
editGeOrderParamVisible: false,
addInterfaceVisible: false, addInterfaceVisible: false,
getOrdersEditBtnVisible: false,
submitOrderVisible: false,
selectBussinessTypeList: [], selectBussinessTypeList: [],
thirdSysFk: null, thirdSysFk: null,
submitOrderRow: null, submitOrderRow: null,
@ -407,9 +499,15 @@ export default {
}, },
handleBustypeChange(row) { handleBustypeChange(row) {
this.getBustyList(row); this.getBustyList(row);
this.submitOrderRow = row;
if (row.key === "orderSubmitUrl") { if (row.key === "orderSubmitUrl") {
this.addBussinessTypeBtnVisible = true; this.addBussinessTypeBtnVisible = true;
this.submitOrderRow = row; this.submitOrderVisible = true;
this.getOrdersEditBtnVisible = false;
} else if (row.key === "orderQueryUrl") {
this.addBussinessTypeBtnVisible = true;
this.getOrdersEditBtnVisible = true;
this.submitOrderVisible = false;
} else { } else {
this.addBussinessTypeBtnVisible = false; this.addBussinessTypeBtnVisible = false;
} }
@ -528,6 +626,7 @@ export default {
thirdBuyCode: row.thirdBuyCode, thirdBuyCode: row.thirdBuyCode,
thirdBuyName: row.thirdBuyName, thirdBuyName: row.thirdBuyName,
type: row.type, type: row.type,
url: row.url,
thirdSys: row.thirdSys, thirdSys: row.thirdSys,
remark: row.remark remark: row.remark
}; };
@ -541,20 +640,35 @@ export default {
}) })
}, },
addBussinessType() { addBussinessType() {
this.bussinessTypeFormVisible = true;
this.formName = "add"; this.formName = "add";
this.getBussinessType(); if (this.submitOrderVisible) {
this.getThirdBuyType(); this.bussinessTypeFormVisible = true;
this.thirdBuyForm = { this.getBussinessType();
id: null, this.getThirdBuyType();
code: null, this.thirdBuyForm = {
name: null, id: null,
thirdBuyCode: null, code: null,
thirdBuyName: null, name: null,
type: null, thirdBuyCode: null,
thirdSys: null, thirdBuyName: null,
remark: null type: 2,
}; url: null,
thirdSys: this.thirdSysFk,
remark: null
};
} else if (this.getOrdersEditBtnVisible) {
this.editGeOrderParamVisible = true;
this.getThirdBuyType();
this.thirdBuyForm = {
id: null,
code: null,
name: null,
type: 1,
url: null,
thirdSys: this.thirdSysFk,
remark: null
};
}
}, },
getBussinessType() { getBussinessType() {
filterForThirdSys().then((res) => { filterForThirdSys().then((res) => {
@ -562,13 +676,13 @@ export default {
}) })
}, },
addBussinessTypeData() { addBussinessTypeData() {
this.bussinessTypeFormVisible = false; if (this.getOrdersEditBtnVisible) {
// this.editGeOrderParamVisible = false;
if (this.formName == "add") { } else {
this.thirdBuyForm.type = 2; this.bussinessTypeFormVisible = false;
this.thirdBuyForm.thirdSys = this.thirdSysFk;
} }
// //
this.bussinessTypeList.forEach(item =>{ this.bussinessTypeList.forEach(item =>{
// //
@ -580,7 +694,7 @@ export default {
this.thirdBuyList.forEach(item => { this.thirdBuyList.forEach(item => {
// //
if (item.name === this.thirdBuyForm.thirdBuyName) { if (item.name === this.thirdBuyForm.thirdBuyName) {
this.thirdBuyForm.thirdBuyCode = item.code; this.thirdBuyForm.thirdBuyCode = item.action;
} }
}); });
@ -600,10 +714,9 @@ export default {
}, },
getThirdBuyType() { getThirdBuyType() {
let query = { let query = {
thirdSysFk: this.thirdSysFk, thirdSys: this.thirdSysFk
type: 1,
} }
filterBusTypeDetail(query).then((res)=> { getOriginBusType(query).then((res)=> {
this.thirdBuyList = res.data.list; this.thirdBuyList = res.data.list;
}); });
}, },
@ -631,8 +744,20 @@ export default {
}); });
}, },
addInterfaceData(){ addInterfaceData(){
this.addInterfaceVisible = false; let data = [];
enableInterfaces(this.selectInterfaceList).then((res) => { if (this.selectInterfaceList.length > 0) {
this.addInterfaceVisible = false;
this.selectInterfaceList.forEach(id => {
let item = {
id: id,
enabled: true
};
data.push(item);
})
} else {
this.$message.warning("请选择需要添加的接口");
}
updateInterfaceStatus(data).then((res) => {
if (res.code === 20000) { if (res.code === 20000) {
this.selectInterfaceList = []; this.selectInterfaceList = [];
this.$message.success("添加成功"); this.$message.success("添加成功");
@ -655,7 +780,45 @@ export default {
} }
}).catch((error) => { }).catch((error) => {
this.$message.error("添加失败"); this.$message.error("添加失败");
});
},
disableInterface(row) {
let data = [{id: row.id, enabled: false}];
updateInterfaceStatus(data).then((res) => {
if (res.code === 20000) {
this.$message.success("移除成功");
let query = {
thirdSysFk: this.thirdSysFk,
enabled: true
};
this.loading = true;
getDetailBasicThirdSys(query)
.then((response) => {
this.loading = false;
this.detailList = response.data.list || [];
this.total = response.data.total || 0;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
}
}) })
},
editGeOrderParam(index,row) {
this.formName = "edit";
this.editGeOrderParamVisible = true;
this.getThirdBuyType();
this.thirdBuyForm = {
id: row.id,
code: row.code,
name: row.name,
type: row.type,
url: row.url,
thirdSys: this.thirdSysFk,
remark: row.remark
};
} }
}, },
components: { components: {
@ -686,5 +849,13 @@ export default {
flex-wrap: wrap; flex-wrap: wrap;
} }
.itemTag {
float: left;
text-align: left;
margin-top: 10px;
width: 100px;
margin-bottom: 5px;
}
</style> </style>

@ -22,10 +22,9 @@
<el-button-group style="display:flex;"> <el-button-group style="display:flex;">
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="getList"></el-button> <el-button type="primary" icon="search" @click="getList"></el-button>
<!-- <el-button type="primary" icon="search" @click="createSchedule(1)"></el-button> <el-button type="primary" icon="search" @click="createSchedule(1)"></el-button>
<el-button type="primary" icon="search" @click="createSchedule(2)"></el-button> <el-button type="primary" icon="search" @click="createSchedule(2)"></el-button>
<el-button type="primary" icon="search" @click="createSchedule(3)"></el-button> <el-button type="primary" icon="search" @click="createSchedule(3)"></el-button>
<el-button type="primary" icon="search" @click="createSchedule(4)">DI</el-button>-->
</el-button-group> </el-button-group>
</el-form-item> </el-form-item>
</el-row> </el-row>
@ -123,9 +122,9 @@ export default {
currentRow: null, currentRow: null,
editQuery: null, editQuery: null,
type: { type: {
"AutoDownloadOrder": "已完成单据", "AutoUploadOrder": "已完成单据",
"AutoDownloadBusType": "单据类型", "AutoUploadBusType": "单据类型",
"AutoDownloadAllData": "基础信息", "AutoUploadAllData": "基础信息",
"AutoDownloadDiProducts": "国家库DI数据" "AutoDownloadDiProducts": "国家库DI数据"
}, },
status: { status: {

Loading…
Cancel
Save