|
|
|
@ -29,20 +29,20 @@
|
|
|
|
|
<el-button-group style="display:flex;">
|
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
|
|
|
|
|
<el-button type="primary" icon="search" @click="search">查询</el-button>
|
|
|
|
|
<el-button type="primary" icon="search" @click="createScheduleDialog(1)">同步单据
|
|
|
|
|
<el-button type="primary" icon="search" v-if="configParms.orderScanFinish==2 || configParms.orderUnReceive==2 || configParms.orderUnCheck==2" @click="syncData('IO_ORDER')">同步单据
|
|
|
|
|
</el-button>
|
|
|
|
|
<!-- :disabled="!configParms.orderScanFinish&& !configParms.orderUnReceive&& !configParms.orderUnCheck"-->
|
|
|
|
|
<el-button type="primary" icon="search" @click="createScheduleDialog(2)"
|
|
|
|
|
v-if="!configParms.typeBus&& !configParms.typeScan&& !configParms.typeThird">
|
|
|
|
|
<el-button type="primary" icon="search" @click="syncData('DOCUMENT_TYPE_DATA')"
|
|
|
|
|
v-if="configParms.typeBus==2 || configParms.typeScan==2 || configParms.typeThird==2">
|
|
|
|
|
同步单据类型
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="primary" icon="search" @click="createScheduleDialog(3)" v-if="!configParms.basicProducts&& !configParms.basicCorp&&
|
|
|
|
|
!configParms.basicInv&&!configParms.basicThirdProducts&& !configParms.basicThirdCorp&& !configParms.basicThirdInv
|
|
|
|
|
&& !configParms.basicThirdBusOrder&& !configParms.sysUser">同步基础信息
|
|
|
|
|
<el-button type="primary" icon="search" @click="syncData('BASIC_DATA')" v-if="configParms.basicProducts==2|| configParms.basicCorp==2|| configParms.supCert==2">同步基础信息
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="primary" icon="search" @click="createScheduleDialog(4)"
|
|
|
|
|
<el-button type="primary" icon="search" @click="syncData('COUNTRY_DI_DATA')"
|
|
|
|
|
v-if="configParms.dbDiProducts==2">同步国家库DI数据
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="primary" icon="search" @click="syncData('OTHER_DATA')"
|
|
|
|
|
v-if="configParms.udiCodeLost==2||configParms.udiCodeRel==2">同步其他数据
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-row>
|
|
|
|
@ -110,7 +110,8 @@ import {
|
|
|
|
|
createSchedule,
|
|
|
|
|
findConfig,
|
|
|
|
|
updateConfig,
|
|
|
|
|
infoByStatus
|
|
|
|
|
infoByStatus,
|
|
|
|
|
syncData
|
|
|
|
|
} from "../../api/sync/spsSyncStatus";
|
|
|
|
|
import store from "@/store";
|
|
|
|
|
|
|
|
|
@ -402,6 +403,27 @@ export default {
|
|
|
|
|
this.getList();
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
},
|
|
|
|
|
syncData(exportType){
|
|
|
|
|
if(!this.syncTime){
|
|
|
|
|
this.$message.error("请选择同步时间");
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
let param = {
|
|
|
|
|
exportType : exportType,
|
|
|
|
|
syncTime: this.syncTime
|
|
|
|
|
}
|
|
|
|
|
syncData(param).then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.filterQuery.page = 1
|
|
|
|
|
this.$message.success("操作成功");
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
this.syncTime=null
|
|
|
|
|
this.getList();
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|