1.添加单据上传设置相关页面文件,完成上传设置页面基本功能
parent
bed9fd03a1
commit
ca7d176208
@ -0,0 +1,17 @@
|
||||
import axios from "../../utils/request";
|
||||
|
||||
export function getConfig(params) {
|
||||
return axios({
|
||||
url: "/system/third/syncData/config",
|
||||
method: "get",
|
||||
params: params
|
||||
});
|
||||
}
|
||||
|
||||
export function saveConfig(data) {
|
||||
return axios({
|
||||
url: "/system/third/syncData/save",
|
||||
method: "post",
|
||||
data: data
|
||||
});
|
||||
}
|
@ -0,0 +1,51 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-card class="el-card">
|
||||
</el-card>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
|
||||
const formJson = {
|
||||
site_id: "",
|
||||
site_name: "",
|
||||
describe: "",
|
||||
ads: [],
|
||||
};
|
||||
|
||||
export default {
|
||||
name: "uploadSetting",
|
||||
data() {
|
||||
return {
|
||||
};
|
||||
},
|
||||
components: {
|
||||
},
|
||||
methods: {
|
||||
},
|
||||
filters: {
|
||||
statusFilterType(status) {
|
||||
const statusMap = {
|
||||
false: "success",
|
||||
true: "warning",
|
||||
};
|
||||
return statusMap[status];
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
document.body.ondrop = function (event) {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
};
|
||||
},
|
||||
created() {
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style type="text/scss" lang="scss">
|
||||
</style>
|
||||
|
@ -0,0 +1,48 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-card className="el-card">
|
||||
</el-card>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
|
||||
const formJson = {
|
||||
site_id: "",
|
||||
site_name: "",
|
||||
describe: "",
|
||||
ads: [],
|
||||
};
|
||||
|
||||
export default {
|
||||
name: "uploadSetting",
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
components: {},
|
||||
methods: {},
|
||||
filters: {
|
||||
statusFilterType(status) {
|
||||
const statusMap = {
|
||||
false: "success",
|
||||
true: "warning",
|
||||
};
|
||||
return statusMap[status];
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
document.body.ondrop = function (event) {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
};
|
||||
},
|
||||
created() {
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style type="text/scss" lang="scss">
|
||||
</style>
|
||||
|
@ -0,0 +1,236 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-card className="el-card">
|
||||
<el-form :model="filterQuery" class="query-form" size="mini" label-width="100px" v-show="showSearch">
|
||||
<el-row>
|
||||
<el-col :span="6">
|
||||
<el-form-item class="query-form-item" label="单号:">
|
||||
<el-input v-model="filterQuery.billNo" placeholder="单号"
|
||||
style="width: 90%"
|
||||
clearable="true"></el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
||||
<el-col :span="6">
|
||||
<el-form-item class="query-form-item" label="单据类型:">
|
||||
<el-select v-model="filterQuery.billType" placeholder="请选择单据类型" style="width: 90%">
|
||||
<el-option
|
||||
v-for="item in busTypes"
|
||||
:key="item.name"
|
||||
:label="item.name"
|
||||
:value="item.action">
|
||||
<span style="float: left">{{ item.name }}</span>
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
||||
<el-col :span="6">
|
||||
<el-form-item class="query-form-item" label="单据状态:">
|
||||
<el-select v-model="filterQuery.orderStatus" placeholder="请选择单据状态" style="width: 90%">
|
||||
<el-option
|
||||
v-for="item in orderStatusList"
|
||||
:key="item.label"
|
||||
:label="item.label"
|
||||
:value="item.value">
|
||||
<span style="float: left">{{ item.label }}</span>
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
||||
<el-col :span="6">
|
||||
<el-form-item class="query-form-item" label="提交状态:">
|
||||
<el-select v-model="filterQuery.submitStatus" placeholder="请选择提交状态" style="width: 90%">
|
||||
<el-option
|
||||
v-for="item in submitStatusList"
|
||||
:key="item.label"
|
||||
:label="item.label"
|
||||
:value="item.value">
|
||||
<span style="float: left">{{ item.label }}</span>
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
||||
</el-row>
|
||||
|
||||
<el-row>
|
||||
<el-col :span="6">
|
||||
<el-form-item class="query-form-item" label="往来单位:">
|
||||
<el-input
|
||||
v-model="filterQuery.corpName"
|
||||
placeholder="请输入往来单位"
|
||||
style="width: 90%"
|
||||
clearable="true"
|
||||
></el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
||||
<el-col :span="6">
|
||||
<el-form-item class="query-form-item" label="往来单位:">
|
||||
<el-date-picker
|
||||
:picker-options="pickerOptions"
|
||||
v-model="actDateRange"
|
||||
type="daterange"
|
||||
format="yyyy 年 MM 月 dd 日"
|
||||
value-format="yyyy-MM-dd"
|
||||
range-separator="至"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
style="width: 90%"
|
||||
>
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
|
||||
<div class="top-right-btn">
|
||||
<el-button-group>
|
||||
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
||||
<el-button
|
||||
type="primary"
|
||||
icon="el-icon-refresh"
|
||||
@click="onReset"
|
||||
>重置
|
||||
</el-button>
|
||||
<el-button type="primary" icon="el-icon-search" @click="onSubmit"
|
||||
>查询
|
||||
</el-button
|
||||
>
|
||||
</el-button-group>
|
||||
</div>
|
||||
<el-divider style="margin: 15px"></el-divider>
|
||||
</el-card>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
|
||||
const formJson = {
|
||||
site_id: "",
|
||||
site_name: "",
|
||||
describe: "",
|
||||
ads: [],
|
||||
};
|
||||
|
||||
export default {
|
||||
name: "uploadSetting",
|
||||
data() {
|
||||
return {
|
||||
filterQuery: {
|
||||
billType: null,
|
||||
corpName: null,
|
||||
invCode: null,
|
||||
startTime: null,
|
||||
endTime: null,
|
||||
billNo: null,
|
||||
orderStatus: null,
|
||||
submitStatus: null,
|
||||
page: 1,
|
||||
limit: 10
|
||||
},
|
||||
showSearch: true,
|
||||
busTypes: [],
|
||||
orderStatusList: [
|
||||
{
|
||||
label: '未配货',
|
||||
value: '2'
|
||||
},
|
||||
{
|
||||
label: '待校验',
|
||||
value: '3'
|
||||
},
|
||||
{
|
||||
label: '已校验',
|
||||
value: '4'
|
||||
},
|
||||
{
|
||||
label: '已验收',
|
||||
value: '5'
|
||||
}
|
||||
],
|
||||
submitStatusList: [
|
||||
{
|
||||
label: '未提交',
|
||||
value: 0
|
||||
},
|
||||
{
|
||||
label: '已提交',
|
||||
value: 1
|
||||
},
|
||||
{
|
||||
label: '提交失败',
|
||||
value: 2
|
||||
},
|
||||
],
|
||||
actDateRange: null,
|
||||
pickerOptions: {
|
||||
shortcuts: [
|
||||
{
|
||||
text: "最近一周",
|
||||
onClick(picker) {
|
||||
const end = new Date();
|
||||
const start = new Date();
|
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
|
||||
picker.$emit("pick", [start, end]);
|
||||
},
|
||||
},
|
||||
{
|
||||
text: "最近一个月",
|
||||
onClick(picker) {
|
||||
const end = new Date();
|
||||
const start = new Date();
|
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
|
||||
picker.$emit("pick", [start, end]);
|
||||
},
|
||||
},
|
||||
{
|
||||
text: "最近三个月",
|
||||
onClick(picker) {
|
||||
const end = new Date();
|
||||
const start = new Date();
|
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
|
||||
picker.$emit("pick", [start, end]);
|
||||
},
|
||||
},
|
||||
],
|
||||
}
|
||||
};
|
||||
},
|
||||
components: {},
|
||||
methods: {
|
||||
hideSearch() {
|
||||
this.showSearch = !this.showSearch;
|
||||
},
|
||||
onReset() {
|
||||
|
||||
},
|
||||
|
||||
},
|
||||
filters: {
|
||||
statusFilterType(status) {
|
||||
const statusMap = {
|
||||
false: "success",
|
||||
true: "warning",
|
||||
};
|
||||
return statusMap[status];
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
document.body.ondrop = function (event) {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
};
|
||||
},
|
||||
created() {
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style type="text/scss" lang="scss">
|
||||
</style>
|
||||
|
@ -0,0 +1,338 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-card class="el-card">
|
||||
<el-descriptions class="margin-top" title="单据上传设置" :column="1" 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">
|
||||
<el-col :span="6" class="el-col">
|
||||
|
||||
<el-switch
|
||||
v-model="configQuery.autoUpload"
|
||||
active-text="是否启用自动上传">
|
||||
</el-switch>
|
||||
|
||||
</el-col>
|
||||
<el-col :span="14" class="el-col">
|
||||
<div>
|
||||
<span style="color: red;">说明: 修改同步参数时,请关闭数据同步服务 </span>
|
||||
</div>
|
||||
</el-col>
|
||||
|
||||
</el-row>
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item>
|
||||
<template slot="label">
|
||||
参数设置
|
||||
</template>
|
||||
|
||||
<el-row :gutter="20" class="el-row">
|
||||
<el-col :span="20" class="el-col">
|
||||
<div>
|
||||
<span>单据上传时间间隔(单位:分钟): </span>
|
||||
<el-input
|
||||
style="width: 100px"
|
||||
size="small"
|
||||
type="number" min="10"
|
||||
v-model="configQuery.orderSyncTime"
|
||||
:disabled="configQuery.autoUpload"
|
||||
splaceholder="请输入内容"
|
||||
></el-input>
|
||||
|
||||
</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
|
||||
<el-descriptions class="margin-top" title="上传至第三方系统" :column="1" style="margin-top: 30px"
|
||||
border>
|
||||
|
||||
<el-descriptions-item>
|
||||
<template slot="label">
|
||||
单据时间
|
||||
</template>
|
||||
|
||||
<el-row :gutter="20" class="el-row" type="flex">
|
||||
<el-col :span="20" class="el-col">
|
||||
<div>
|
||||
<span>上传起始时间: </span>
|
||||
<el-date-picker
|
||||
type="date"
|
||||
v-model="configQuery.orderStartTime"
|
||||
format="yyyy-MM-dd"
|
||||
value-format="yyyy-MM-dd"
|
||||
:disabled="configQuery.autoUpload"
|
||||
placeholder="选择日期">
|
||||
</el-date-picker>
|
||||
</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item>
|
||||
<template slot="label">
|
||||
单据(单据状态)
|
||||
</template>
|
||||
<el-checkbox v-model="configQuery.orderUnCheck" :disabled="configQuery.autoUpload">待校验单据
|
||||
</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.orderUnReceive" :disabled="configQuery.autoUpload">未验收单据
|
||||
</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.orderScanFinish" :disabled="configQuery.autoUpload">已完成单据
|
||||
</el-checkbox>
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item>
|
||||
<template slot="label">
|
||||
单据来源
|
||||
</template>
|
||||
<el-checkbox v-model="configQuery.checkWebNew">web端新增单据
|
||||
</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.checkPdaUn">手持终端未校验单据
|
||||
</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.checkPdaEd">手持终端已校验单据
|
||||
</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.checkUdims">UDIMS平台
|
||||
</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.checkPc">UDI扫码通</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.checkSp">自助平台同步</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.checkChange">缺量补单
|
||||
</el-checkbox>
|
||||
<el-checkbox v-model="configQuery.checkBalacne">平衡补单
|
||||
</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"
|
||||
:disabled="configQuery.autoUpload"
|
||||
@click="addBusTypeDialog()">添加扫码单据类型
|
||||
</el-button>
|
||||
</div>
|
||||
<el-table
|
||||
:data="checkedBusTypes"
|
||||
border
|
||||
style="width: 100%"
|
||||
highlight-current-row
|
||||
>
|
||||
<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="操作">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
type="text"
|
||||
size="small"
|
||||
@click.native="removeBus(scope.$index, scope.row)"
|
||||
>移除
|
||||
</el-button
|
||||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
</el-descriptions-item>
|
||||
|
||||
</el-descriptions>
|
||||
</el-card>
|
||||
|
||||
<el-dialog
|
||||
title="添加扫码单据类型"
|
||||
:visible.sync="addBusDialogVisible"
|
||||
width="60%"
|
||||
: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>
|
||||
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="busQuery.page"
|
||||
:limit.sync="busQuery.limit"
|
||||
@pagination="getBuType"
|
||||
/>
|
||||
</el-dialog>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {getBusTypeList} from "@/api/basic/busType";
|
||||
import {getConfig, saveConfig} from "@/api/thrsys/thrUploadSet";
|
||||
|
||||
const formJson = {
|
||||
site_id: "",
|
||||
site_name: "",
|
||||
describe: "",
|
||||
ads: [],
|
||||
};
|
||||
|
||||
export default {
|
||||
name: "uploadSetting",
|
||||
data() {
|
||||
return {
|
||||
configQuery: {
|
||||
autoUpload: null,
|
||||
orderSyncTime: null,
|
||||
orderStartTime: null,
|
||||
orderUnCheck: null,
|
||||
orderUnReceive: null,
|
||||
orderScanFinish: null,
|
||||
checkWebNew: null,
|
||||
checkPdaUn: null,
|
||||
checkPdaEd: null,
|
||||
checkUdims: null,
|
||||
checkPc: null,
|
||||
checkSp: null,
|
||||
checkChange: null,
|
||||
checkBalacne: null,
|
||||
busTypes: []
|
||||
},
|
||||
checkedBusTypes: [],
|
||||
busQuery: {
|
||||
enable: true,
|
||||
page: 1,
|
||||
limit: 10
|
||||
},
|
||||
loading: false,
|
||||
list: [],
|
||||
total: 0,
|
||||
busTypes: [],
|
||||
addBusDialogVisible: false,
|
||||
multipleSelection: []
|
||||
};
|
||||
},
|
||||
components: {},
|
||||
methods: {
|
||||
saveConfig() {
|
||||
this.$confirm('是否确认修改?', '提示', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning',
|
||||
center: true,
|
||||
}).then(() => {
|
||||
if (this.checkedBusTypes != null) {
|
||||
this.configQuery.busTypes = this.checkedBusTypes;
|
||||
}
|
||||
saveConfig(this.configQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
if (response.code == 20000) {
|
||||
this.$message.success("修改成功!");
|
||||
this.getConfig();
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
});
|
||||
}).catch(() => {
|
||||
});
|
||||
},
|
||||
addBusTypeDialog() {
|
||||
this.addBusDialogVisible = true;
|
||||
this.multipleSelection = [];
|
||||
},
|
||||
removeBus(index, row) {
|
||||
this.checkedBusTypes.splice(index, 1);
|
||||
},
|
||||
getBuType() {
|
||||
getBusTypeList(this.busQuery).then((res) => {
|
||||
this.busTypes = res.data.list || [];
|
||||
this.total = res.data.total || 0;
|
||||
this.getConfig();
|
||||
}).catch(() => {
|
||||
});
|
||||
},
|
||||
getConfig() {
|
||||
getConfig().then((res) => {
|
||||
this.configQuery = res.data;
|
||||
this.checkedBusTypes = this.configQuery.busTypes;
|
||||
if (this.configQuery.busTypes === null) {
|
||||
this.$message.error(res.message);
|
||||
}
|
||||
}).catch((error) => {
|
||||
this.loading = false;
|
||||
this.list = [];
|
||||
this.total = 0;
|
||||
})
|
||||
},
|
||||
addBusType() {
|
||||
let selectedData = this.multipleSelection;
|
||||
selectedData.forEach((item) => {
|
||||
item.outChange = false;
|
||||
this.checkedBusTypes.push(item);
|
||||
})
|
||||
this.addBusDialogVisible = false;
|
||||
},
|
||||
handleCheckedChange(row) {
|
||||
this.multipleSelection = row;
|
||||
},
|
||||
checkSelectable(row) {
|
||||
return !row.isSelect
|
||||
},
|
||||
},
|
||||
filters: {
|
||||
statusFilterType(status) {
|
||||
const statusMap = {
|
||||
false: "success",
|
||||
true: "warning",
|
||||
};
|
||||
return statusMap[status];
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
document.body.ondrop = function (event) {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getBuType();
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style type="text/scss" lang="scss">
|
||||
</style>
|
||||
|
Loading…
Reference in New Issue