业务单据,追随,udi修改
parent
a59805a550
commit
d63186a069
@ -1,6 +1,6 @@
|
||||
{
|
||||
"UDI_SYNC_SERVER_IP": "http://192.168.0.109:9995/",
|
||||
"BASE_URL":"http://192.168.0.109:9991/",
|
||||
"SERVER_IP": "http://192.168.0.109:9991/",
|
||||
"BASE_URL":"http://139.9.178.73:8080/UDI_WMS_MC/",
|
||||
"SERVER_IP": "http://139.9.178.73:8080/",
|
||||
"WEBSOCKET_URL": "ws://192.168.0.109:9991/UDI_WMS_MC/api/websocket/"
|
||||
}
|
||||
|
@ -0,0 +1,29 @@
|
||||
import axios from "../../utils/axios";
|
||||
|
||||
export function filterCompanyProductRelevance(query) {
|
||||
return axios(
|
||||
{
|
||||
url: "/sale/info/company/product/relevance/filter",
|
||||
method: "get",
|
||||
params: query
|
||||
}
|
||||
)
|
||||
}
|
||||
export function insertFilter(query) {
|
||||
return axios(
|
||||
{
|
||||
url: "/sale/info/insertFilter",
|
||||
method: "post",
|
||||
data: query
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,45 @@
|
||||
import axios from "../../utils/axios";
|
||||
|
||||
|
||||
export function filterLog(query) {
|
||||
return axios({
|
||||
url: "/spssync/basic/udiinfo/filter",
|
||||
method: "get",
|
||||
params: query
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
export function deleteLog(query) {
|
||||
return axios({
|
||||
url: "/spssync/basic/udiinfo/deleteByStatus",
|
||||
method: "post",
|
||||
data: query
|
||||
});
|
||||
}
|
||||
|
||||
export function createSchedule(query) {
|
||||
return axios({
|
||||
url: "/spssync/basic/schedule/create",
|
||||
method: "post",
|
||||
data: query
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
export function findConfig(query) {
|
||||
return axios({
|
||||
url: "/system/param/syncData/config",
|
||||
method: "get",
|
||||
params: query
|
||||
});
|
||||
}
|
||||
|
||||
export function updateConfig(query) {
|
||||
return axios({
|
||||
url: "/system/param/syncData/save",
|
||||
method: "post",
|
||||
data: query
|
||||
});
|
||||
}
|
||||
|
@ -0,0 +1,139 @@
|
||||
<template>
|
||||
<el-card>
|
||||
|
||||
<el-descriptions class="margin-top" title="数据同步设置" :column="1" :size="100" border>
|
||||
<template slot="extra">
|
||||
<el-button type="primary" size="small" @click="saveConfig()">保存</el-button>
|
||||
</template>
|
||||
<el-descriptions-item>
|
||||
<template slot="label">
|
||||
参数设置
|
||||
</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-col>
|
||||
<el-col :span="20" class="el-col" >
|
||||
<div>
|
||||
<span>数据同步轮询时间(单位:分钟): </span>
|
||||
<el-input
|
||||
style="width: 100px"
|
||||
size="small"
|
||||
type="number"
|
||||
v-model="configQuery.syncTime"
|
||||
splaceholder="请输入内容"
|
||||
></el-input>
|
||||
</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item>
|
||||
<template slot="label">
|
||||
单据类型
|
||||
</template>
|
||||
<el-checkbox v-model="configQuery.typeBus">业务单据类型</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.typeScan">扫码单据类型</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.typeThird">第三方单据类型</el-checkbox>
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item>
|
||||
<template slot="label">
|
||||
基础信息
|
||||
</template>
|
||||
<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-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">
|
||||
单据
|
||||
</template>
|
||||
<el-checkbox v-model="configQuery.orderScanFinish">已完成扫码单据</el-checkbox>
|
||||
</el-descriptions-item>
|
||||
|
||||
</el-descriptions>
|
||||
|
||||
|
||||
|
||||
|
||||
</el-card>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {findConfig, updateConfig} from "@/api/thrsys/spsSyncStatus";
|
||||
import store from "@/store";
|
||||
|
||||
export default {
|
||||
name: "SysUdimsConfig",
|
||||
data() {
|
||||
return {
|
||||
configQuery: {
|
||||
id: null,
|
||||
typeBus: null,
|
||||
typeScan: null,
|
||||
typeThird: null,
|
||||
basicProducts: null,
|
||||
basicCorp: null,
|
||||
basicInv: null,
|
||||
basicThirdProducts: null,
|
||||
basicThirdCorp: null,
|
||||
basicThirdInv: null,
|
||||
basicThirdBusOrder: null,
|
||||
orderScanFinish: null,
|
||||
dbDiProducts: null,
|
||||
downstreamEnable:null,
|
||||
syncTime:null,
|
||||
},
|
||||
}
|
||||
},
|
||||
methods:{
|
||||
getConfig() {
|
||||
findConfig()
|
||||
.then((response) => {
|
||||
if (response.code == 20000) {
|
||||
this.configQuery = response.data;
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.list = [];
|
||||
this.total = 0;
|
||||
});
|
||||
},
|
||||
saveConfig() {
|
||||
updateConfig(this.configQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
if (response.code == 20000) {
|
||||
this.$message.success("更新成功!");
|
||||
this.getConfig();
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
|
||||
},
|
||||
created() {
|
||||
this.headers = {
|
||||
ADMIN_ID: store.getters.adminId,
|
||||
ADMIN_TOKEN: store.getters.token,
|
||||
};
|
||||
this.getConfig();
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
Loading…
Reference in New Issue