1.第三方系统页面增加第三方系统相关参数配置

2.第三方系统,业务单据提交接口,增加绑定业务单据,删除单据功能
master
x_z 3 years ago
parent 4b5d6dfddb
commit a1c56274a8

@ -60,6 +60,21 @@ export function saveBusTypeDetail(query) {
}); });
} }
export function saveBusTypes(data) {
return axios({
url: "/udiwms/basic/thirdsys/saveBusTypes",
method: "post",
data: data
})
}
export function deleteThirdSysBusType(params) {
return axios({
url: "/udiwms/basic/thirdsys/delete",
method: "get",
params: params
})
}

@ -151,7 +151,7 @@
</el-card> </el-card>
<el-card class="el-card"> <el-card class="el-card">
<el-button v-if="addBussinessTypeBtnVisible" type="primary" style="float: right; margin-bottom: 5px;" @click="addBussinessType"></el-button>
<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>
@ -183,6 +183,12 @@
@click="handleSave(scope.$index, scope.row)" @click="handleSave(scope.$index, scope.row)"
>保存 >保存
</el-button> </el-button>
<el-button
type="text"
size="small"
@click="handleDelete(scope.$index, scope.row)"
>删除
</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -193,16 +199,54 @@
</el-card> </el-card>
<!--添加单据类型弹窗-->
<el-dialog
title="单据类型"
:close-on-click-modal="false"
:close-on-press-escape="false"
:visible.sync="bussinessTypeFormVisible"
>
<el-table v-loading="loading" :data="bussinessTypeList" ref="typeList"
@selection-change="handleBussinessTypeSelectionChange"
style="width: 100%">
<el-table-column
type="selection"
:reserve-selection="false"
width="55">
</el-table-column>
<el-table-column label="单据类型编码" prop="action" fixed></el-table-column>
<el-table-column label="单据类型名称" prop="name" fixed></el-table-column>
</el-table>
<div slot="footer" class="dialog-footer">
<el-button @click.native="bussinessTypeFormVisible = !bussinessTypeFormVisible"
>取消
</el-button
>
<el-button
type="primary"
@click.native="addBussinessTypeData()"
>提交
</el-button>
</div>
</el-dialog>
</div> </div>
</template> </template>
<script> <script>
import { import {
getBasicThirdSys, getBasicThirdSys,
updateBasicThirdSys, getDetailBasicThirdSys, updateDetailBasicThirdSys, filterBusTypeDetail, saveBusTypeDetail updateBasicThirdSys, getDetailBasicThirdSys, updateDetailBasicThirdSys, filterBusTypeDetail, saveBusTypeDetail,
saveBusTypes, deleteThirdSysBusType
} from "../../api/basic/basicThirdSys"; } from "../../api/basic/basicThirdSys";
import modifyDialog from "./BasicThirdSysModify"; import modifyDialog from "./BasicThirdSysModify";
import modifyDetailDialog from "./BasicThirdSysDetailModify"; import modifyDetailDialog from "./BasicThirdSysDetailModify";
import {getLocalBusType} from "../../api/basic/busLocalType";
export default { export default {
data() { data() {
@ -237,6 +281,12 @@ export default {
loading: false, loading: false,
busTypeLoading:false, busTypeLoading:false,
currentCheckIndex: -1, currentCheckIndex: -1,
bussinessTypeFormVisible: false,
bussinessTypeList: [],
addBussinessTypeBtnVisible: false,
selectBussinessTypeList: [],
thirdSysFk: null,
submitOrderRow: null
}; };
}, },
@ -264,6 +314,13 @@ export default {
}, },
handleBustypeChange(row) { handleBustypeChange(row) {
this.getBustyList(row); this.getBustyList(row);
if (row.key === "orderSubmitUrl") {
this.addBussinessTypeBtnVisible = true;
this.submitOrderRow = row;
} else {
this.addBussinessTypeBtnVisible = false;
}
this.thirdSysFk = row.thirdSysFk;
}, },
getList() { getList() {
this.loading = true; this.loading = true;
@ -273,9 +330,6 @@ export default {
this.list = response.data.list || []; this.list = response.data.list || [];
this.detailList = []; this.detailList = [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
// this.getDetailList(this.list[0]);
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
@ -375,9 +429,6 @@ export default {
this.modifyDetailDialogVisible = true; this.modifyDetailDialogVisible = true;
this.inputDetailQuery = row; this.inputDetailQuery = row;
}, },
handleEdit(index, row) { handleEdit(index, row) {
this.currentCheckIndex = index; this.currentCheckIndex = index;
}, },
@ -389,6 +440,58 @@ export default {
} }
}) })
}, },
addBussinessType(){
this.bussinessTypeFormVisible = true;
getLocalBusType().then((res) => {
this.bussinessTypeList = res.data.list;
this.busTypeList.forEach((item) => {
for (let i = 0; i < this.bussinessTypeList.length; i++) {
if (item.code === this.bussinessTypeList[i].action) {
this.bussinessTypeList.splice(i, 1);
i--;
break;
}
}
})
})
},
addBussinessTypeData() {
if (this.selectBussinessTypeList.length == 0) {
this.$message.error("请选择单据类型")
} else {
this.bussinessTypeFormVisible = false;
let data = [];
this.selectBussinessTypeList.forEach((row) => {
let item = {
code: row.action,
name: row.name,
type: 2,
thirdSys: this.thirdSysFk
}
data.push(item);
});
saveBusTypes(data).then((res) => {
this.handleBustypeChange(this.submitOrderRow);
}).catch((error) => {
this.$message.error(error.message);
})
}
},
handleBussinessTypeSelectionChange(row) {
let _this = this;
_this.selectBussinessTypeList = [];
row.forEach((item) => {
_this.selectBussinessTypeList.push(item);
})
},
handleDelete(index, row) {
let params = {id: row.id};
deleteThirdSysBusType(params).then((res) => {
this.handleBustypeChange(this.submitOrderRow);
}).catch((error) => {
this.$message.error(error.message);
})
}
}, },
components: { components: {
modifyDialog, modifyDetailDialog modifyDialog, modifyDetailDialog

@ -71,6 +71,22 @@
</el-col> </el-col>
</el-row> </el-row>
<el-row :gutter="20" class="el-row" type="flex"> <el-row :gutter="20" class="el-row" type="flex">
<el-col :span="18" class="el-col">
<div class="text item">
<div class="itemTag">
<span>第三方系统IP地址:&nbsp;</span>
</div>
<el-input
style="width: 80%"
size="mini"
splaceholder="请输入内容"
v-model="inputQuery.thirdSysUrl"
></el-input>
</div>
</el-col>
</el-row>
<!--<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="18" class="el-col"> <el-col :span="18" class="el-col">
<div class="text item"> <div class="text item">
<div class="itemTag"> <div class="itemTag">
@ -93,7 +109,7 @@
</div> </div>
</el-col> </el-col>
</el-row> </el-row>-->
<el-row :gutter="20" class="el-row" type="flex"> <el-row :gutter="20" class="el-row" type="flex">
<el-col :span="18" class="el-col"> <el-col :span="18" class="el-col">
<div class="text item"> <div class="text item">

Loading…
Cancel
Save