同步服务修改

master
anthonyywj2 3 years ago
parent 25a85e3bd0
commit a274c1c723

@ -32,7 +32,10 @@
>新增 >新增
</el-button </el-button
> >
<el-button type="primary" icon="search" @click="updateDownload"></el-button> <el-button type="primary" icon="search" @click="updateDownload"
v-if="this.thirdSysDetail.enabled && this.thirdSysDetail.fromType==3"
>更新下载
</el-button>
</el-button-group> </el-button-group>
</el-form-item> </el-form-item>
@ -128,12 +131,13 @@ import {
import modifyDialog from "./BussinessTypeThirdModify"; import modifyDialog from "./BussinessTypeThirdModify";
import axios from "axios"; import axios from "axios";
import {getBasicThirdSys} from "@/api/basic/basicThirdSys"; import {filterDetailByKey, getBasicThirdSys} from "@/api/basic/basicThirdSys";
export default { export default {
data() { data() {
return { return {
filterQuery: { filterQuery: {
thirdSys: null,
key: "", key: "",
page: 1, page: 1,
limit: 20, limit: 20,
@ -159,6 +163,7 @@ export default {
multipleSelection: [], multipleSelection: [],
uploadFileUrl: null, uploadFileUrl: null,
loading: false, loading: false,
thirdSysDetail: {},
}; };
}, },
@ -203,6 +208,7 @@ export default {
.then((response) => { .then((response) => {
this.thirdSys = response.data.list || []; this.thirdSys = response.data.list || [];
this.filterQuery.thirdSys = this.thirdSys[0].thirdId; this.filterQuery.thirdSys = this.thirdSys[0].thirdId;
this.getThirdSysDetail();
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
@ -216,7 +222,13 @@ export default {
downloadBussinessType(query) downloadBussinessType(query)
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;
if (response.code == 20000) {
this.getList(); this.getList();
} else {
this.$message.error(response.message);
}
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
@ -318,6 +330,23 @@ export default {
thirdSysChange() { thirdSysChange() {
this.getList(); this.getList();
}, },
getThirdSysDetail() {
let query = {
thirdSysFk: this.filterQuery.thirdSys,
key: "busTypeQueryUrl",
};
filterDetailByKey(query)
.then((response) => {
this.thirdSysDetail = response.data;
})
.catch(() => {
this.loading = false;
this.list = [];
});
this.uploadData.thirdSys = this.query.thirdSysFk;
},
getThirdSysFkName(thirdSys) { getThirdSysFkName(thirdSys) {
for (let i = 0; i < this.thirdSys.length; i++) { for (let i = 0; i < this.thirdSys.length; i++) {
if (this.thirdSys[i].thirdId === thirdSys) { if (this.thirdSys[i].thirdId === thirdSys) {

@ -7,15 +7,36 @@
</template> </template>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
中继服务 同步服务
</template> </template>
<el-row :gutter="20" class="el-row" type="flex"> <el-row :gutter="20" class="el-row" type="flex">
<el-col :span="4" class="el-col" style="margin-top: 6px"> <el-col :span="6" class="el-col" style="margin-top: 6px">
<el-checkbox v-model="configQuery.downstreamEnable"></el-checkbox>
<el-switch
v-model="configQuery.downstreamEnable"
active-text="是否启用数据同步">
</el-switch>
</el-col>
<el-col :span="14" class="el-col">
<div>
<span style="color: red;margin-top: 16px">说明:&nbsp;修改同步参数时,请关闭数据同步服务 </span>
</div>
</el-col> </el-col>
</el-row>
</el-descriptions-item>
<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="20" class="el-col">
<div> <div>
<span style="margin-left: 30px;">服务地址:&nbsp;</span> <span>服务地址:&nbsp;</span>
<el-input <el-input
style="width: 50%" style="width: 50%"
size="small" size="small"
@ -29,6 +50,7 @@
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <el-descriptions-item>
@ -63,33 +85,34 @@
</el-descriptions-item> </el-descriptions-item>
</el-descriptions> </el-descriptions>
<el-descriptions class="margin-top" title="上传至UDI自助平台基础数据" :column="1" :size="100" style="margin-top: 40px" border> <el-descriptions class="margin-top" title="上传至UDI自助平台基础数据" :column="1" :size="100" style="margin-top: 40px"
border>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
单据类型 单据类型
</template> </template>
<el-checkbox v-model="configQuery.typeBus"></el-checkbox> <el-checkbox v-model="configQuery.typeBus" :disabled="configQuery.downstreamEnable"></el-checkbox>
<el-checkbox v-model="configQuery.typeScan"></el-checkbox> <el-checkbox v-model="configQuery.typeScan" :disabled="configQuery.downstreamEnable"></el-checkbox>
<el-checkbox v-model="configQuery.typeThird"></el-checkbox> <el-checkbox v-model="configQuery.typeThird" :disabled="configQuery.downstreamEnable"></el-checkbox>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
基础信息 基础信息
</template> </template>
<el-checkbox v-model="configQuery.basicProducts"></el-checkbox> <el-checkbox v-model="configQuery.basicProducts" :disabled="configQuery.downstreamEnable"></el-checkbox>
<el-checkbox v-model="configQuery.basicCorp"></el-checkbox> <el-checkbox v-model="configQuery.basicCorp" :disabled="configQuery.downstreamEnable"></el-checkbox>
<el-checkbox v-model="configQuery.basicInv"></el-checkbox> <el-checkbox v-model="configQuery.basicInv" :disabled="configQuery.downstreamEnable"></el-checkbox>
<el-checkbox v-model="configQuery.sysUser"></el-checkbox> <el-checkbox v-model="configQuery.sysUser" :disabled="configQuery.downstreamEnable"></el-checkbox>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
第三方基础信息 第三方基础信息
</template> </template>
<el-checkbox v-model="configQuery.basicThirdProducts"></el-checkbox> <el-checkbox v-model="configQuery.basicThirdProducts" :disabled="configQuery.downstreamEnable"></el-checkbox>
<el-checkbox v-model="configQuery.basicThirdCorp"></el-checkbox> <el-checkbox v-model="configQuery.basicThirdCorp" :disabled="configQuery.downstreamEnable"></el-checkbox>
<el-checkbox v-model="configQuery.basicThirdInv"></el-checkbox> <el-checkbox v-model="configQuery.basicThirdInv" :disabled="configQuery.downstreamEnable"></el-checkbox>
<el-checkbox v-model="configQuery.basicThirdBusOrder"></el-checkbox> <el-checkbox v-model="configQuery.basicThirdBusOrder" :disabled="configQuery.downstreamEnable"></el-checkbox>
</el-descriptions-item> </el-descriptions-item>
<!-- <el-descriptions-item>--> <!-- <el-descriptions-item>-->
@ -102,14 +125,15 @@
</el-descriptions> </el-descriptions>
<el-descriptions class="margin-top" title="上传至UDI自助平台单据" :column="1" :size="100" style="margin-top: 40px" border> <el-descriptions class="margin-top" title="上传至UDI自助平台单据" :column="1" :size="100" style="margin-top: 40px"
border>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
单据(单据状态) 单据(单据状态)
</template> </template>
<el-checkbox v-model="configQuery.orderUnCheck"></el-checkbox> <el-checkbox v-model="configQuery.orderUnCheck" :disabled="configQuery.downstreamEnable"></el-checkbox>
<el-checkbox v-model="configQuery.orderUnReceive"></el-checkbox> <el-checkbox v-model="configQuery.orderUnReceive" :disabled="configQuery.downstreamEnable"></el-checkbox>
<el-checkbox v-model="configQuery.orderScanFinish"></el-checkbox> <el-checkbox v-model="configQuery.orderScanFinish" :disabled="configQuery.downstreamEnable"></el-checkbox>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="单据(单据类型)" label-style="width: 150px"> <el-descriptions-item label="单据(单据类型)" label-style="width: 150px">

@ -36,6 +36,7 @@
>添加仓库 >添加仓库
</el-button> </el-button>
<el-button type="primary" @click.native="downloadWarehouse()" <el-button type="primary" @click.native="downloadWarehouse()"
v-if="this.thirdSysDetail.enabled && this.thirdSysDetail.fromType==3"
>下载仓库 >下载仓库
</el-button> </el-button>
</el-button-group> </el-button-group>
@ -237,7 +238,7 @@ import {
deleteThrWarehouse, deleteThrWarehouse,
download download
} from "../../api/thrsys/thrInvWarehouse"; } from "../../api/thrsys/thrInvWarehouse";
import {getBasicThirdSys} from "../../api/basic/basicThirdSys"; import {filterDetailByKey, getBasicThirdSys} from "../../api/basic/basicThirdSys";
const formJson = { const formJson = {
id: null, id: null,
@ -270,6 +271,8 @@ export default {
children: "children", children: "children",
label: "name" label: "name"
}, },
thirdSysDetail:{},
total: 0, total: 0,
treeList: [], treeList: [],
loading: true, loading: true,
@ -570,6 +573,8 @@ export default {
getBasicThirdSys(query) getBasicThirdSys(query)
.then((response) => { .then((response) => {
this.thirdSys = response.data.list || []; this.thirdSys = response.data.list || [];
this.query.thirdSysFk = this.thirdSys[0].thirdId;
this.getThirdSysDetail();
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
@ -591,7 +596,7 @@ export default {
this.$message.success("下载完成"); this.$message.success("下载完成");
this.getList(); this.getList();
} else { } else {
this.$message.error("下载失败"); this.$message.error(res.message);
} }
}).catch((error) => { }).catch((error) => {
this.$message.error("下载失败"); this.$message.error("下载失败");
@ -599,7 +604,24 @@ export default {
}, },
thirdSysFkChange(thirdSysFk) { thirdSysFkChange(thirdSysFk) {
console.log(thirdSysFk); console.log(thirdSysFk);
} this.getThirdSysDetail();
},
getThirdSysDetail() {
let query = {
thirdSysFk: this.query.thirdSysFk,
key: "warehouseQueryUrl",
};
filterDetailByKey(query)
.then((response) => {
this.thirdSysDetail = response.data;
})
.catch(() => {
this.loading = false;
this.list = [];
});
this.uploadData.thirdSys = this.query.thirdSysFk;
},
}, },
filters: { filters: {
statusFilterType(status) { statusFilterType(status) {

@ -347,9 +347,13 @@ import {
getStockOrderDetailInstrumentById, stockOrderDetail2, generateBillNoInt getStockOrderDetailInstrumentById, stockOrderDetail2, generateBillNoInt
} from "../../api/inout/stockOrder"; } from "../../api/inout/stockOrder";
import draggable from "vuedraggable"; import draggable from "vuedraggable";
import {saveAs} from "file-saver";
import {parseTime} from "../../filtres";
import store from "../../store"; import store from "../../store";
import stockOrderNewSelectProduct from "../business/stockOrderNewSelectProduct"; import stockOrderNewSelectProduct from "../business/stockOrderNewSelectProduct";
import {getBasicUnitMaintains, getBasicUnitMaintains2} from "../../api/basic/basicUnitMaintain"; import {getBasicUnitMaintains, getBasicUnitMaintains2} from "../../api/basic/basicUnitMaintain";
import {getBussinessType} from "../../api/basic/bussinessType";
import {getLocalBusType, getLocalJoinBusType, getLocalJoinByUser} from "../../api/basic/busLocalType";
import {filterAll, filterAllByLoc, filterAllByUser} from "@/api/basic/invWarehouse"; import {filterAll, filterAllByLoc, filterAllByUser} from "@/api/basic/invWarehouse";
import dialogInvProduct from "../inventory/DialogInvProduct" import dialogInvProduct from "../inventory/DialogInvProduct"
import {getOriginJoinBusType} from "@/api/basic/busOriginType"; import {getOriginJoinBusType} from "@/api/basic/busOriginType";
@ -613,87 +617,30 @@ export default {
this.thisData.formData.thirdSysFk = this.curAction.thirdSys; this.thisData.formData.thirdSysFk = this.curAction.thirdSys;
this.thisData.billType = this.curAction.localAction; this.thisData.billType = this.curAction.localAction;
// this.thisData.formData.billType = this.curAction.localAction;
if (this.curAction.mainAction == 'WareHouseOut' && this.formData.noInvOut != true) {
this.invQueryData = {
locStorageCode: this.formData.locStorageCode,
};
this.selectInvProductVisible = true;
} else if (this.curAction.mainAction == "WareHouseIn" && this.curAction.corpType == 1 && this.formData.noInvOut != true) {
this.invQueryData = { this.invQueryData = {
locStorageCode: this.formData.corpId, locStorageCode: this.formData.locStorageCode,
}; };
console.log("his.invQueryData " + this.invQueryData.locStorageCode);
this.selectInvProductVisible = true; this.selectInvProductVisible = true;
} else {
this.selectProductVisible = true;
}
// this.thisData.formData.billType = this.curAction.localAction;
return; // if (this.curAction.mainAction == 'WareHouseOut' && this.formData.noInvOut != true) {
}
// this.code = this.code.trim();
//
// if (this.code.length > 13) {
// let tStr = this.code.substring(0, 2);
// tStr = tStr.replace('m', 'M');
// tStr = tStr.replace('a', 'A');
// if (tStr.indexOf("MA") !== -1) {
// this.code = tStr + this.code.substring(2, this.code.length);
// }
// }
// //
// this.loading = true; // } else if (this.curAction.mainAction == "WareHouseIn" && this.curAction.corpType == 1 && this.formData.noInvOut != true) {
// let tQuery = {
// code: this.code,
// customerId: store.getters.customerId,
// };
// //
// stockOrderDetailQueryProduct(tQuery).then((response) => { // this.invQueryData = {
// this.loading = false; // locStorageCode: this.formData.corpId,
// console.log(response)
// if (response.code === 20000) {
// if (response.data.getType === "1") {
// this.loading = true;
// //
// let ids = [response.data.getId];
// let tQuery2 = {
// ids: ids,
// udiEntity: response.data
// }; // };
// getStockOrderDetailInstrumentById(tQuery2).then((response) => { // console.log("his.invQueryData " + this.invQueryData.locStorageCode);
// this.loading = false; // this.selectInvProductVisible = true;
// if (response.code === 20000) {
// this.closeDialogC2(response.data);
// } else { // } else {
// this.$message.error(response.message);
// }
// }).catch(() => {
// this.loading = false;
// });
// } else {
// this.thisData = response.data;
// this.thisData.code = this.code;
// this.thisData.orderEditor = this.orderEditor;
// this.thisData.orderId = "";
// if (this.orderEditor) {
// this.thisData.orderId = this.formData.id
// }
// this.thisData.stockOrderLists = this.codeArray;
// this.selectProductVisible = true; // this.selectProductVisible = true;
// } // }
// } else {
// this.$message.warning(response.message);
// // this.focusNext('inputRef'); return;
// if (this.$isNotBlank(event)) { }
// event.target.select();
// }
// // event.target.select();
// // event.currentTarget.select();
// }
// });
}, },
@ -722,22 +669,8 @@ export default {
this.focusNext('iCount'); this.focusNext('iCount');
// let sc = this.selectedIndex + 'reCount';
// const _this = this;
// this.$nextTick(() => {
// setTimeout(function() {
// console.log(sc);
// console.log(_this.$refs[sc]);
// console.log(_this.$refs[sc].focus());
// _this.$refs[sc].focus();
// }, 1)
// // this.$refs['inputBatchNoRef'][0].focus()
// })
}, },
iCountChange() { iCountChange() {
// console.log(this.iCount)
// this.currentRow.count = this.iCount;
// this.currentRow.reCount = this.iCount;
}, },
iCountEnterFunction() { iCountEnterFunction() {
if (this.$isNotBlank(this.currentRow)) { if (this.$isNotBlank(this.currentRow)) {
@ -842,13 +775,6 @@ export default {
if (this.$isBlank(row.batchNo)) { if (this.$isBlank(row.batchNo)) {
return this.$message.error('批次号不能为空'); return this.$message.error('批次号不能为空');
} }
// if (this.$isBlank(row.productDate)) {
// return this.$message.error('');
// }
// if (this.$isBlank(row.expireDate)) {
// return this.$message.error('');
// }
this.$refs.multipleTable.setCurrentRow(); this.$refs.multipleTable.setCurrentRow();
this.currentRow = {}; this.currentRow = {};
this.selectedIndex = ""; this.selectedIndex = "";
@ -976,7 +902,6 @@ export default {
this.loading = false; this.loading = false;
if (response.code === 20000) { if (response.code === 20000) {
this.formData.billNo = response.data; this.formData.billNo = response.data;
// this.formData.billdate = parseTime(new Date(), '{y}{m}{d}');
this.formData.billdate = new Date(); this.formData.billdate = new Date();
} else { } else {
this.closeDialog(true); this.closeDialog(true);
@ -1001,8 +926,6 @@ export default {
this.formData.corpName = event.name; this.formData.corpName = event.name;
this.formData.corpId = event.erpId; this.formData.corpId = event.erpId;
this.formData.unitIdFk = event.erpId; this.formData.unitIdFk = event.erpId;
// console.log("this.inputQuery.companyId" + item);
console.log("this.inputQuery.companyId" + event.erpId);
}, },
findMethod(query) { findMethod(query) {
console.log(query); console.log(query);
@ -1050,6 +973,7 @@ export default {
actionChange(item) { actionChange(item) {
console.log(item); console.log(item);
this.curAction = this.getActionItem(item); this.curAction = this.getActionItem(item);
// this.formData.locStorageCode = this.curAction.storageCode;
console.log(this.curAction.corpType + "---" + "-----" + this.curAction.action); console.log(this.curAction.corpType + "---" + "-----" + this.curAction.action);
this.findMethod(); this.findMethod();
// } // }

Loading…
Cancel
Save