1.第三方系统页面,提交单据接口,绑定第三方系统类型调整,增加弹窗

master
x_z 3 years ago
parent 1ed9c3f11c
commit 132c6f0a69

@ -155,21 +155,19 @@
<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 label="单据类型代码" prop="code"> <el-table-column label="单据类型代码" prop="code"></el-table-column>
</el-table-column> <el-table-column v-if="addBussinessTypeBtnVisible" label="第三方单据类型" prop="thirdBuyName"></el-table-column>
<el-table-column v-if="addBussinessTypeBtnVisible" label="第三方单据类型" prop="thirdBuyCode"></el-table-column>
<el-table-column label="接口地址" prop="url" width="400" show-overflow-tooltip> <el-table-column label="接口地址" prop="url" width="400" show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
<el-input :disabled="scope.$index !== currentCheckIndex" v-model="scope.row.url" <el-input :disabled="scope.$index !== currentCheckIndex" v-model="scope.row.url"
placeholder="请输入"></el-input> placeholder="请输入"></el-input>
</template> </template>
</el-table-column> </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="150" 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
type="text" type="text"
@ -177,6 +175,13 @@
@click="handleEdit(scope.$index, scope.row)" @click="handleEdit(scope.$index, scope.row)"
>编辑 >编辑
</el-button> </el-button>
<el-button
v-if="addBussinessTypeBtnVisible"
type="text"
size="small"
@click="bindThirdBuyType(scope.$index, scope.row)"
>绑定
</el-button>
<el-button <el-button
type="text" type="text"
size="small" size="small"
@ -205,6 +210,7 @@
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"
:visible.sync="bussinessTypeFormVisible" :visible.sync="bussinessTypeFormVisible"
style="width: 80%"
> >
<el-table v-loading="loading" :data="bussinessTypeList" ref="typeList" <el-table v-loading="loading" :data="bussinessTypeList" ref="typeList"
@selection-change="handleBussinessTypeSelectionChange" @selection-change="handleBussinessTypeSelectionChange"
@ -233,6 +239,33 @@
</el-dialog> </el-dialog>
<!--绑定第三方单据类型弹窗-->
<el-dialog
title="第三方系统单据类型"
:close-on-click-modal="false"
:close-on-press-escape="false"
:visible.sync="bindBuyTypeFormVisible"
style="width: 80%"
>
<el-table v-loading="loading" :data="thirdBuyList" ref="typeList"
@selection-change="handleBussinessTypeSelectionChange"
style="width: 100%">
<el-table-column label="单据类型编码" prop="code" fixed></el-table-column>
<el-table-column label="单据类型名称" prop="name" fixed></el-table-column>
<el-table-column label="操作" width="200" prop="price" fixed="right">
<template slot-scope="scope">
<el-button
type="text"
size="small"
@click="bindThirdBuyTypeData(scope.$index, scope.row)"
>绑定
</el-button>
</template>
</el-table-column>
</el-table>
</el-dialog>
</div> </div>
@ -286,7 +319,10 @@ export default {
addBussinessTypeBtnVisible: false, addBussinessTypeBtnVisible: false,
selectBussinessTypeList: [], selectBussinessTypeList: [],
thirdSysFk: null, thirdSysFk: null,
submitOrderRow: null submitOrderRow: null,
thirdBuyList: [], //,
bindBuyTypeFormVisible: false,
submitTypeRowId: null //ID
}; };
}, },
@ -381,8 +417,6 @@ export default {
this.busTypeList = []; this.busTypeList = [];
}); });
}, },
onModifySubmit() { onModifySubmit() {
updateBasicThirdSys(this.inputQuery) updateBasicThirdSys(this.inputQuery)
.then((response) => { .then((response) => {
@ -419,8 +453,6 @@ export default {
this.cancelDialog(); this.cancelDialog();
}); });
}, },
handleModifyClick(row) { handleModifyClick(row) {
this.modifyDialogVisible = true; this.modifyDialogVisible = true;
this.inputQuery = row; this.inputQuery = row;
@ -482,6 +514,36 @@ export default {
}).catch((error) => { }).catch((error) => {
this.$message.error(error.message); this.$message.error(error.message);
}) })
},
bindThirdBuyType(index,row) {
this.bindBuyTypeFormVisible = true;
let query = {
thirdSysFk: row.thirdSysFk,
type: 1,
}
this.submitTypeRowId = row.id;
//
filterBusTypeDetail(query).then((res)=> {
this.thirdBuyList = res.data.list;
});
},
bindThirdBuyTypeData(index, row){
let params = {
"id": this.submitTypeRowId,
"thirdBuyName": row.name,
"thirdBuyCode": row.code
};
saveBusTypeDetail(params).then((res) => {
if (res.code == 20000) {
this.$message.success("绑定成功");
this.bindBuyTypeFormVisible = false;
this.handleBustypeChange(this.submitOrderRow);
} else {
this.$message.error("绑定失败");
}
}).catch((error) => {
this.$message.error(error.message);
})
} }
}, },
components: { components: {

@ -492,7 +492,6 @@ export default {
}, },
handleEdit(index, row) { handleEdit(index, row) {
this.currentCheckIndex = index; this.currentCheckIndex = index;
console.log(this.currentCheckIndex)
}, },
handleSave(index, row) { handleSave(index, row) {
this.currentCheckIndex = -1; this.currentCheckIndex = -1;
@ -872,7 +871,6 @@ export default {
}); });
}, },
submitOrder(row){ submitOrder(row){
console.log(row.exportStatus)
if (row.exportStatus == 1) { if (row.exportStatus == 1) {
this.$confirm("单据已经提交,是否重复提交?","提示",{ this.$confirm("单据已经提交,是否重复提交?","提示",{
confirmButtonText: "确定", confirmButtonText: "确定",

Loading…
Cancel
Save