|
|
|
@ -10,7 +10,7 @@
|
|
|
|
|
同步服务
|
|
|
|
|
</template>
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
<el-col :span="6" class="el-col" >
|
|
|
|
|
<el-col :span="6" class="el-col">
|
|
|
|
|
|
|
|
|
|
<el-switch
|
|
|
|
|
v-model="configQuery.downstreamEnable"
|
|
|
|
@ -23,17 +23,22 @@
|
|
|
|
|
<span style="color: red;">说明: 修改同步参数时,请关闭数据同步服务 </span>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
<el-descriptions class="margin-top" title="同步至UDI管理系统基础数据" :column="1" :size="100" style="margin-top: 40px"
|
|
|
|
|
border>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
<template slot="label">
|
|
|
|
|
轮询时间设置
|
|
|
|
|
</template>
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
|
|
|
|
|
<el-col :span="20" class="el-col">
|
|
|
|
|
<el-col :span="8" class="el-col">
|
|
|
|
|
<div>
|
|
|
|
|
<span>数据同步轮询时间(单位:分钟): </span>
|
|
|
|
|
<el-input
|
|
|
|
@ -45,60 +50,115 @@
|
|
|
|
|
></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8" class="el-col">
|
|
|
|
|
<div>
|
|
|
|
|
<span>开始时间: </span>
|
|
|
|
|
<el-time-picker
|
|
|
|
|
:disabled="configQuery.downstreamEnable"
|
|
|
|
|
v-model="configQuery.basicSyncStart"
|
|
|
|
|
placeholder="开始时间">
|
|
|
|
|
</el-time-picker>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
<template slot="label">
|
|
|
|
|
运行参数
|
|
|
|
|
</template>
|
|
|
|
|
<el-checkbox v-model="configQuery.entrustAction" :disabled="configQuery.downstreamEnable">委托验收</el-checkbox>
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
<el-descriptions class="margin-top" title="同步至UDI管理系统基础数据" :column="1" :size="100" style="margin-top: 40px"
|
|
|
|
|
border>
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
<template slot="label">
|
|
|
|
|
单据类型
|
|
|
|
|
</template>
|
|
|
|
|
<el-checkbox v-model="configQuery.typeBus" :disabled="configQuery.downstreamEnable">业务单据类型</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.typeScan" :disabled="configQuery.downstreamEnable">扫码单据类型</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.typeThird" :disabled="configQuery.downstreamEnable">第三方单据类型</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.typeScan" :disabled="configQuery.downstreamEnable">扫码单据类型
|
|
|
|
|
</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.typeThird" :disabled="configQuery.downstreamEnable">第三方单据类型
|
|
|
|
|
</el-checkbox>
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
<template slot="label">
|
|
|
|
|
基础信息
|
|
|
|
|
</template>
|
|
|
|
|
<el-checkbox v-model="configQuery.sysUser" :disabled="configQuery.downstreamEnable">用户信息</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.basicProducts" :disabled="configQuery.downstreamEnable">耗材字典</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.basicCorp" :disabled="configQuery.downstreamEnable">往来单位字典</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.sysUser" :disabled="configQuery.downstreamEnable">用户信息</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.basicProducts" :disabled="configQuery.downstreamEnable">耗材字典
|
|
|
|
|
</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.basicCorp" :disabled="configQuery.downstreamEnable">往来单位字典
|
|
|
|
|
</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.basicInv" :disabled="configQuery.downstreamEnable">仓库字典</el-checkbox>
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
<template slot="label">
|
|
|
|
|
第三方基础信息
|
|
|
|
|
</template>
|
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdProducts" :disabled="configQuery.downstreamEnable">第三方产品信息</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdCorp" :disabled="configQuery.downstreamEnable">第三方往来信息</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdInv" :disabled="configQuery.downstreamEnable">第三方仓库信息</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdBusOrder" :disabled="configQuery.downstreamEnable">第三方业务单据</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdProducts" :disabled="configQuery.downstreamEnable">第三方产品信息
|
|
|
|
|
</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdCorp" :disabled="configQuery.downstreamEnable">第三方往来信息
|
|
|
|
|
</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdInv" :disabled="configQuery.downstreamEnable">第三方仓库信息
|
|
|
|
|
</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdBusOrder" :disabled="configQuery.downstreamEnable">第三方业务单据
|
|
|
|
|
</el-checkbox>
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
<template slot="label">
|
|
|
|
|
国家库DI数据
|
|
|
|
|
</template>
|
|
|
|
|
<el-checkbox v-model="configQuery.dbDiProducts" :disabled="configQuery.downstreamEnable">DI产品信息</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.dbDiProducts" :disabled="configQuery.downstreamEnable">DI产品信息
|
|
|
|
|
</el-checkbox>
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
|
|
|
|
|
<el-descriptions class="margin-top" title="同步至UDI管理系统单据" :column="1" :size="100" style="margin-top: 30px"
|
|
|
|
|
border>
|
|
|
|
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
<template slot="label">
|
|
|
|
|
轮询时间设置
|
|
|
|
|
</template>
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
|
|
|
|
|
<el-col :span="8" class="el-col">
|
|
|
|
|
<div>
|
|
|
|
|
<span>数据同步轮询时间(单位:分钟): </span>
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 100px"
|
|
|
|
|
size="small"
|
|
|
|
|
type="number"
|
|
|
|
|
v-model="configQuery.orderSyncTime" :disabled="configQuery.downstreamEnable"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8" class="el-col">
|
|
|
|
|
<div>
|
|
|
|
|
<span>开始时间: </span>
|
|
|
|
|
<el-time-picker
|
|
|
|
|
:disabled="configQuery.downstreamEnable"
|
|
|
|
|
v-model="configQuery.orderSyncStart"
|
|
|
|
|
placeholder="开始时间">
|
|
|
|
|
</el-time-picker>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
<template slot="label">
|
|
|
|
|
单据(单据状态)
|
|
|
|
|
</template>
|
|
|
|
|
<el-checkbox v-model="configQuery.orderUnCheck" :disabled="configQuery.downstreamEnable">待校验单据</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.orderUnReceive" :disabled="configQuery.downstreamEnable">未验收单据</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.orderScanFinish" :disabled="configQuery.downstreamEnable">已完成单据</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.orderUnCheck" :disabled="configQuery.downstreamEnable">待校验单据
|
|
|
|
|
</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.orderUnReceive" :disabled="configQuery.downstreamEnable">未验收单据
|
|
|
|
|
</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="configQuery.orderScanFinish" :disabled="configQuery.downstreamEnable">已完成单据
|
|
|
|
|
</el-checkbox>
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="单据(单据类型)" label-style="width: 150px">
|
|
|
|
|
|
|
|
|
@ -222,6 +282,10 @@ export default {
|
|
|
|
|
orderUnCheck: null,
|
|
|
|
|
orderUnReceive: null,
|
|
|
|
|
busTypes: [],
|
|
|
|
|
basicSyncStart:null,
|
|
|
|
|
orderSyncTime:null,
|
|
|
|
|
orderSyncStart:null,
|
|
|
|
|
entrustAction:null,
|
|
|
|
|
},
|
|
|
|
|
checkedBusTypes: [],
|
|
|
|
|
busQuery: {
|
|
|
|
|