中继服务同步

master
anthonywj 3 years ago
parent ac6a9a85ac
commit 40924b4d5a

@ -49,6 +49,15 @@ export function deleteWarehouse(data) {
data: data data: data
}); });
} }
export function uploadStatus(data) {
return axios({
url: "/spms/inv/warehouse/upload",
method: "post",
data: data
});
}
export function exportJson(query) { export function exportJson(query) {
return axios({ return axios({

@ -17,6 +17,14 @@ export function corpUpload(query) {
data: query data: query
}); });
} }
export function corpUploadStatus(query) {
return axios({
url: "/udiwms/corps/importLog/exportStatus",
method: "post",
data: query
});
}
//产品信息上传 //产品信息上传
export function udiUpload(query) { export function udiUpload(query) {
@ -26,6 +34,14 @@ export function udiUpload(query) {
data: query data: query
}); });
} }
export function udiUploadStatus(query) {
return axios({
url: "/udiwms/products/importLog/exportStatus",
method: "post",
data: query
});
}
//第三方业务单据上传 //第三方业务单据上传

@ -65,7 +65,7 @@
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"
:visible.sync="modifyDialogVisible" :visible.sync="modifyDialogVisible"
width="70%" width="60%"
v-if="modifyDialogVisible" v-if="modifyDialogVisible"
> >
<modifyDialog :inputQuery="inputQuery"></modifyDialog> <modifyDialog :inputQuery="inputQuery"></modifyDialog>
@ -100,9 +100,9 @@
</el-table-column> </el-table-column>
<!--<el-table-column label="本地缓存" prop="itrCache">--> <!--<el-table-column label="本地缓存" prop="itrCache">-->
<!--<template slot-scope="scope">--> <!--<template slot-scope="scope">-->
<!--<span>{{ enableMap[scope.row.enabled] }}</span>--> <!--<span>{{ enableMap[scope.row.enabled] }}</span>-->
<!--</template>--> <!--</template>-->
<!--</el-table-column>--> <!--</el-table-column>-->
<el-table-column label="备注" prop="remark" show-overflow-tooltip></el-table-column> <el-table-column label="备注" prop="remark" show-overflow-tooltip></el-table-column>
@ -147,175 +147,180 @@
></el-pagination> ></el-pagination>
<div style="margin-top: 18px ; color: #F71616;"> <div style="margin-top: 18px ; color: #F71616;">
<span>重要提示本页功能仅供技术提供方修改&nbsp;</span> <span>重要提示本页功能仅供技术提供方修改&nbsp;</span>
</div> </div>
</el-card> </el-card>
</div> </div>
</template> </template>
<script> <script>
import { import {
getBasicThirdSys, getBasicThirdSys,
updateBasicThirdSys, getDetailBasicThirdSys, updateDetailBasicThirdSys updateBasicThirdSys, getDetailBasicThirdSys, updateDetailBasicThirdSys
} from "../../api/basic/basicThirdSys"; } from "../../api/basic/basicThirdSys";
import modifyDialog from "./BasicThirdSysModify"; import modifyDialog from "./BasicThirdSysModify";
import modifyDetailDialog from "./BasicThirdSysDetailModify"; import modifyDetailDialog from "./BasicThirdSysDetailModify";
export default { export default {
data() { data() {
return { return {
filterQuery: { filterQuery: {
thirdId: "", thirdId: "",
thirdName: "", thirdName: "",
enabled: "1", enabled: "1",
page: 1, page: 1,
limit: 20, limit: 20,
},
modifyDialogVisible: false,
modifyDetailDialogVisible: false,
list: [],
inputQuery: null,
inputDetailQuery: null,
enableMap: {
true: "是",
false: "否",
},
dataMap: {
0: "接口实时获取",
1: "文件缓存",
2:"第三方上传缓存",
3:"接口本地缓存"
},
detailList: null,
total: 0,
};
},
methods: {
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
thirdId: "",
thirdName: "",
enabled: null,
page: 1,
limit: 20,
};
this.getList();
}, },
cancelDialog() { modifyDialogVisible: false,
this.modifyDialogVisible = false; modifyDetailDialogVisible: false,
this.modifyDetailDialogVisible = false; list: [],
inputQuery: null,
inputDetailQuery: null,
enableMap: {
true: "是",
false: "否",
}, },
handleCurrentChange(row) { dataMap: {
this.getDetailList(row); 0: "接口实时获取",
1: "文件缓存",
2: "第三方上传缓存",
3: "接口本地缓存"
}, },
getList() { detailList: null,
this.loading = true; total: 0,
getBasicThirdSys(this.filterQuery) };
.then((response) => { },
this.loading = false;
this.list = response.data.list || [];
this.detailList = [];
this.total = response.data.total || 0;
// this.getDetailList(this.list[0]);
methods: {
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
thirdId: "",
thirdName: "",
enabled: null,
page: 1,
limit: 20,
};
this.getList();
},
cancelDialog() {
this.modifyDialogVisible = false;
this.modifyDetailDialogVisible = false;
},
handleCurrentChange(row) {
if (row.mainSys) {
this.detailList = [];
} else {
this.getDetailList(row);
}
}) },
.catch(() => { getList() {
this.loading = false; this.loading = true;
this.list = []; getBasicThirdSys(this.filterQuery)
this.total = 0; .then((response) => {
}); this.loading = false;
}, this.list = response.data.list || [];
this.detailList = [];
this.total = response.data.total || 0;
// this.getDetailList(this.list[0]);
getDetailList(row) { })
let query = { .catch(() => {
thirdSysFk: row.thirdId this.loading = false;
}; this.list = [];
this.loading = true; this.total = 0;
getDetailBasicThirdSys(query) });
.then((response) => { },
this.loading = false;
this.detailList = response.data.list || [];
this.total = response.data.total || 0;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
onModifySubmit() { getDetailList(row) {
updateBasicThirdSys(this.inputQuery) let query = {
.then((response) => { thirdSysFk: row.thirdId
if (response.code == 20000) { };
this.loading = false; this.loading = true;
this.cancelDialog(); getDetailBasicThirdSys(query)
this.getList(); .then((response) => {
this.$message.success(response.data); this.loading = false;
} else { this.detailList = response.data.list || [];
this.$message.error(response.message); this.total = response.data.total || 0;
} })
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
})
.catch(() => { onModifySubmit() {
updateBasicThirdSys(this.inputQuery)
.then((response) => {
if (response.code == 20000) {
this.loading = false; this.loading = false;
this.cancelDialog(); this.cancelDialog();
}); this.getList();
}, this.$message.success(response.data);
onDetailModifySubmit() { } else {
updateDetailBasicThirdSys(this.inputDetailQuery) this.$message.error(response.message);
.then((response) => { }
if (response.code == 20000) {
this.loading = false;
this.cancelDialog();
this.getList();
this.$message.success(response.data);
} else {
this.$message.error(response.message);
}
}) })
.catch(() => { .catch(() => {
this.loading = false;
this.cancelDialog();
});
},
onDetailModifySubmit() {
updateDetailBasicThirdSys(this.inputDetailQuery)
.then((response) => {
if (response.code == 20000) {
this.loading = false; this.loading = false;
this.cancelDialog(); this.cancelDialog();
}); this.getList();
}, this.$message.success(response.data);
} else {
this.$message.error(response.message);
}
handleModifyClick(row) { })
this.modifyDialogVisible = true; .catch(() => {
this.inputQuery = row; this.loading = false;
}, this.cancelDialog();
handleDetailModifyClick(row) { });
this.modifyDetailDialogVisible = true;
this.inputDetailQuery = row;
},
},
components: {
modifyDialog, modifyDetailDialog
}, },
mounted() {
handleModifyClick(row) {
this.modifyDialogVisible = true;
this.inputQuery = row;
}, },
created() { handleDetailModifyClick(row) {
this.getList(); this.modifyDetailDialogVisible = true;
this.inputDetailQuery = row;
}, },
}; },
components: {
modifyDialog, modifyDetailDialog
},
mounted() {
},
created() {
this.getList();
},
};
</script> </script>
<style scoped> <style scoped>
.el-card { .el-card {
margin-right: 20px; margin-right: 20px;
/*transition: all .5s;*/ /*transition: all .5s;*/
} }
</style> </style>

@ -10,6 +10,7 @@
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="getList"></el-button> <el-button type="primary" icon="search" @click="getList"></el-button>
<el-button type="primary" icon="search" @click="exportExcel"></el-button> <el-button type="primary" icon="search" @click="exportExcel"></el-button>
<el-button type="primary" icon="search" @click="uploadSmp">UDI</el-button>
</el-button-group> </el-button-group>
</el-form-item> </el-form-item>
</el-row> </el-row>

@ -33,7 +33,7 @@
</el-button> </el-button>
<el-button type="primary" icon="search" @click="uploadSMP" <el-button type="primary" icon="search" @click="uploadSMP"
v-if="selectType==1" v-if="selectType==1"
>一键上传 >结果全部上传
</el-button> </el-button>
</el-button-group> </el-button-group>
@ -231,7 +231,7 @@
basicUnitMaintainSave, basicUnitMaintainSave,
deleteBasicUnitMaintain, getThrsysUnit deleteBasicUnitMaintain, getThrsysUnit
} from "../../api/basic/basicUnitMaintain"; } from "../../api/basic/basicUnitMaintain";
import {corpUpload} from "../../api/thrsys/smp" import {corpUpload,corpUploadStatus} from "../../api/thrsys/smp"
import {getBasicThirdSys} from "../../api/basic/basicThirdSys"; import {getBasicThirdSys} from "../../api/basic/basicThirdSys";
import {exportExcel} from "../../api/basic/corpExport" import {exportExcel} from "../../api/basic/corpExport"
@ -499,7 +499,7 @@
}, },
allUploadSMP() { allUploadSMP() {
corpUpload(this.query) corpUploadStatus(this.query)
.then((response) => { .then((response) => {
if (response.code == 20000) { if (response.code == 20000) {
this.$message.success("提交成功,后台正在上传!") this.$message.success("提交成功,后台正在上传!")

@ -72,7 +72,7 @@
</el-button> </el-button>
<el-button type="primary" icon="search" @click="allUploadSMP" <el-button type="primary" icon="search" @click="allUploadSMP"
v-if="selectType==1" v-if="selectType==1"
>一键上传 >结果全部上传
</el-button> </el-button>
</el-button-group> </el-button-group>
</el-form-item> </el-form-item>
@ -541,7 +541,7 @@ import {
updateErpProduct, updateErpProduct,
thirdSysDetail, thirdSysDetail,
} from "../../api/basic/udiRelevance"; } from "../../api/basic/udiRelevance";
import {udiUpload} from "../../api/thrsys/smp" import {udiUpload,udiUploadStatus} from "../../api/thrsys/smp"
import {exportExcel} from "../../api/basic/udiInfoExport" import {exportExcel} from "../../api/basic/udiInfoExport"
import {selectSysParamByKey} from "../../api/param/systemParamConfig"; import {selectSysParamByKey} from "../../api/param/systemParamConfig";
import {filterByUuid} from "../../api/basic/udiInfo"; import {filterByUuid} from "../../api/basic/udiInfo";
@ -703,7 +703,7 @@ export default {
}, },
allUploadSMP() { allUploadSMP() {
udiUpload(this.filterQuery) udiUploadStatus(this.filterQuery)
.then((response) => { .then((response) => {
if (response.code == 20000) { if (response.code == 20000) {
this.$message({ this.$message({

@ -9,7 +9,8 @@
<el-button-group style="display:flex;"> <el-button-group style="display:flex;">
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="getList"></el-button> <el-button type="primary" icon="search" @click="getList"></el-button>
<el-button type="primary" icon="search" @click="exportExcel"></el-button> <el-button type="primary" icon="search" @click="exportExcel"></el-button>
<el-button type="primary" icon="search" @click="uploadSmp">UDI</el-button>
</el-button-group> </el-button-group>
</el-form-item> </el-form-item>
</el-row> </el-row>
@ -96,197 +97,197 @@
</template> </template>
<script> <script>
import axios from "axios"; import axios from "axios";
import {filterLog, downloadLog, deleteLog} from "../../api/basic/udiInfoExport"; import {filterLog, downloadLog, deleteLog} from "../../api/basic/udiInfoExport";
import udiInfoSelect from "./UdIInfoSelect"; import udiInfoSelect from "./UdIInfoSelect";
import store from "@/store"; import store from "@/store";
export default { export default {
data() { data() {
return { return {
filterQuery: { filterQuery: {
type: 1, type: 1,
genKey: null, genKey: null,
status: null, status: null,
fromType: null, fromType: null,
page: 1, page: 1,
limit: 20, limit: 20,
thirdSysFk: null, thirdSysFk: null,
}, },
selectType: 0, selectType: 0,
udiImportDetailVisible: false, udiImportDetailVisible: false,
list: [], list: [],
detailList: [], detailList: [],
thirdSys: [], thirdSys: [],
thirdSysDetail: null, thirdSysDetail: null,
total: 0, total: 0,
editQuery: null, editQuery: null,
fromStatus: { fromStatus: {
0: "产品信息", 0: "产品信息",
1: "库存信息", 1: "库存信息",
2: "异常第三方上传" 2: "异常第三方上传"
}, },
status: { status: {
0: "等待处理", 0: "等待处理",
1: "正在处理", 1: "正在处理",
2: "处理异常", 2: "处理异常",
3: "处理完成" 3: "处理完成"
}, },
uploadFileUrl: null, uploadFileUrl: null,
uploadData: { uploadData: {
thirdSys: "thirdId", thirdSys: "thirdId",
}, },
};
},
methods: {
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
type: 1,
fromType: null,
genKey: null,
status: null,
page: 1,
limit: 20,
thirdSysFk: null,
}; };
this.getList();
}, },
getList() {
methods: { this.loading = true;
onReset() { filterLog(this.filterQuery)
this.$router.push({ .then((response) => {
path: "", this.loading = false;
this.list = response.data.list || [];
this.total = response.data.total || 0;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
}); });
this.filterQuery = { },
type: 1,
fromType: null, exportExcel() {
genKey: null, this.selectType = 0;
status: null, this.udiImportDetailVisible = true;
page: 1, },
limit: 20, uploadSmp() {
thirdSysFk: null, this.selectType = 1;
}; this.udiImportDetailVisible = true;
this.getList(); },
}, downloadExcel(row) {
getList() { axios.get("./config.json").then(res => {
this.loading = true; let baseUrl = res.data.BASE_URL;
filterLog(this.filterQuery) let href = baseUrl + "/udiwms/products/exportLog/download" + "?genKey=" + row.genKey;
.then((response) => { let a = document.createElement("a");
this.loading = false; fetch(href)
this.list = response.data.list || []; .then((res) => res.blob())
this.total = response.data.total || 0; .then((blob) => {
}) a.href = URL.createObjectURL(blob);
.catch(() => { console.log(a.href);
this.loading = false; a.download =
this.list = []; row.filePath.split("/")[
this.total = 0; row.filePath.split("/").length - 1
]; // //
document.body.appendChild(a);
a.click();
this.getList();
}); });
}, });
},
exportExcel() { cancelDialog(val) {
this.selectType = 0; this.udiImportDetailVisible = false;
this.udiImportDetailVisible = true; if (val) {
}, this.getList();
uploadSmp() { }
this.selectType = 1; },
this.udiImportDetailVisible = true; handleCurrentChange(val) {
}, this.filterQuery.page = val;
downloadExcel(row) { this.getList();
axios.get("./config.json").then(res => { },
let baseUrl = res.data.BASE_URL; deleteDialog(rowId) {
let href = baseUrl + "/udiwms/products/exportLog/download" + "?genKey=" + row.genKey; this.$confirm("此操作将删除该产品信息, 是否继续?", "提示", {
let a = document.createElement("a"); confirmButtonText: "确定",
fetch(href) cancelButtonText: "取消",
.then((res) => res.blob()) type: "warning",
.then((blob) => { })
a.href = URL.createObjectURL(blob); .then(() => {
console.log(a.href); let dQuery = {
a.download = id: rowId,
row.filePath.split("/")[ };
row.filePath.split("/").length - 1 deleteLog(dQuery)
]; // // .then((response) => {
document.body.appendChild(a); this.loading = false;
a.click(); if (response.code == 20000) {
this.$message.success("删除成功");
} else {
this.$message.error(response.message);
}
this.getList(); this.getList();
})
.catch(() => {
this.loading = false;
}); });
})
.catch(() => {
}); });
}, },
handleChange(response, files, fileList) {
cancelDialog(val) { console.log(response);
this.udiImportDetailVisible = false; if (response.code != 20000) {
if (val) { this.$message.error(response.message);
this.getList(); } else {
} // console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]);
},
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList(); this.getList();
}, this.$message.success("文件上传成功,请稍后刷新查看!");
deleteDialog(rowId) {
this.$confirm("此操作将删除该产品信息, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
let dQuery = {
id: rowId,
};
deleteLog(dQuery)
.then((response) => {
this.loading = false;
if (response.code == 20000) {
this.$message.success("删除成功");
} else {
this.$message.error(response.message);
}
this.getList();
})
.catch(() => {
this.loading = false;
});
})
.catch(() => {
});
},
handleChange(response, files, fileList) {
console.log(response);
if (response.code != 20000) {
this.$message.error(response.message);
} else {
// console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]);
this.getList();
this.$message.success("文件上传成功,请稍后刷新查看!");
} }
},
statusFilterType(status) {
const statusMap = {
0: "warning",
1: "warning",
2: "danger",
3: "success",
};
return statusMap[status];
},
},
mounted() {
}, },
components: {udiInfoSelect}, statusFilterType(status) {
created() { const statusMap = {
// this.getBasicThirdSys(); 0: "warning",
this.getList(); 1: "warning",
2: "danger",
3: "success",
};
return statusMap[status];
}, },
}; },
mounted() {
},
components: {udiInfoSelect},
created() {
// this.getBasicThirdSys();
this.getList();
},
};
</script> </script>
<style> <style>
.itemTag { .itemTag {
float: left; float: left;
text-align: left; text-align: left;
margin-top: 10px; margin-top: 10px;
width: 100px; width: 100px;
} }
.text { .text {
font-size: 13px; font-size: 13px;
font-family: "Microsoft YaHei"; font-family: "Microsoft YaHei";
} }
.el-row { .el-row {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
} }
.el-col { .el-col {
border-radius: 4px; border-radius: 4px;
flex-wrap: wrap; flex-wrap: wrap;
} }
</style> </style>

@ -39,6 +39,8 @@
</el-upload> </el-upload>
<el-button type="primary" icon="search" @click="exportInvwarehouse"></el-button> <el-button type="primary" icon="search" @click="exportInvwarehouse"></el-button>
<el-button type="primary" icon="search" @click="uploadInvwarehouse">UDI</el-button>
</el-button-group> </el-button-group>
</el-form-item> </el-form-item>
</el-form> </el-form>
@ -138,11 +140,11 @@
stripe stripe
style="width: 100%"> style="width: 100%">
<el-table-column label="序号" type="index"></el-table-column> <el-table-column label="序号" type="index"></el-table-column>
<!-- <el-table-column--> <!-- <el-table-column-->
<!-- prop="username"--> <!-- prop="username"-->
<!-- label="账号"--> <!-- label="账号"-->
<!-- min-width="20%">--> <!-- min-width="20%">-->
<!-- </el-table-column>--> <!-- </el-table-column>-->
<el-table-column <el-table-column
prop="employeeName" prop="employeeName"
label="用户名" label="用户名"
@ -604,7 +606,7 @@
<script> <script>
import { import {
filterList, filterAll, filterList, filterAll,
saveWarehouse, exportJson, saveWarehouse, exportJson, uploadStatus,
deleteWarehouse, warehouseBussinessTypeList, deleteWarehouse, warehouseBussinessTypeList,
warehouseUserList, saveWarehouseBussinessType, warehouseUserList, saveWarehouseBussinessType,
saveWarehouseUser, updateDirector, saveWarehouseUser, updateDirector,
@ -626,7 +628,7 @@ const formJson = {
status: 1, status: 1,
advanceType: false, advanceType: false,
isDefault: false, isDefault: false,
level:1, level: 1,
}; };
export default { export default {
data() { data() {
@ -691,7 +693,7 @@ export default {
selectUserList: [], selectUserList: [],
selectBussinessTypeList: [], selectBussinessTypeList: [],
bussinessTypeFormVisible: false, bussinessTypeFormVisible: false,
thrWarehouseData : null, thrWarehouseData: null,
currentId: null, currentId: null,
thrWareHouseVisible: false, thrWareHouseVisible: false,
sysList: [], sysList: [],
@ -942,6 +944,21 @@ export default {
} }
return CurrentDate return CurrentDate
}, },
uploadInvwarehouse() {
let tempQuery = {};
uploadStatus(tempQuery)
.then((response) => {
if (response.code == 20000) {
this.$message.success(response.data);
} else {
this.$message.error(response.message);
}
})
.catch(() => {
});
},
exportInvwarehouse() { exportInvwarehouse() {
let tquery = {}; let tquery = {};
exportJson(tquery).then((response) => { exportJson(tquery).then((response) => {
@ -996,7 +1013,7 @@ export default {
}); });
}, },
changeLevel(row) { changeLevel(row) {
this.formData.pcode =null; this.formData.pcode = null;
this.getParentInv(this.formData.level); this.getParentInv(this.formData.level);
}, },
@ -1220,7 +1237,7 @@ export default {
this.$message.error("第三方仓库数据加载失败"); this.$message.error("第三方仓库数据加载失败");
}); });
}, },
changeThrWarehouse(row){ changeThrWarehouse(row) {
this.checkThrWarehouseRow = row; this.checkThrWarehouseRow = row;
}, },
hideThrWarehouseTable() { hideThrWarehouseTable() {

@ -162,6 +162,7 @@
import {getBussinessType} from "../../api/basic/bussinessType"; import {getBussinessType} from "../../api/basic/bussinessType";
import thrOrderImportDetail from "./ThrOrderImportDetail"; import thrOrderImportDetail from "./ThrOrderImportDetail";
import thrOrderSelect from "./ThrOrderSelect"; import thrOrderSelect from "./ThrOrderSelect";
import store from "@/store";
export default { export default {
data() { data() {

@ -13,10 +13,10 @@
<el-table v-loading="loading" :data="list" style="width: 100%"> <el-table v-loading="loading" :data="list" style="width: 100%">
<el-table-column type="index" label="序号" width="50"></el-table-column> <el-table-column type="index" label="序号" width="50"></el-table-column>
<el-table-column label="参数名" prop="paramName" width="200"></el-table-column> <el-table-column label="参数名" prop="paramName" ></el-table-column>
<el-table-column label="参数键" prop="paramKey" width="200"></el-table-column> <el-table-column label="参数键" prop="paramKey" width="200"></el-table-column>
<el-table-column label="参数值" prop="paramValue" width="300"></el-table-column> <el-table-column label="参数值" prop="paramValue" width="100"></el-table-column>
<!--<el-table-column label="参数状态">--> <!--<el-table-column label="参数状态">-->
<!--<template slot-scope="scope">--> <!--<template slot-scope="scope">-->
<!--<el-tag :type="scope.row.paramStatus | paramStatusFilterType">{{--> <!--<el-tag :type="scope.row.paramStatus | paramStatusFilterType">{{-->

@ -15,7 +15,7 @@
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item class="query-form-item"> <el-form-item class="query-form-item">
<el-select v-model="filterQuery.action" placeholder="请选择业务类型"> <el-select v-model="filterQuery.action" placeholder="请选择扫码单据类型">
<el-option <el-option
v-for="item in busTypes" v-for="item in busTypes"
:key="item.name" :key="item.name"

@ -75,7 +75,7 @@
<!--<el-option label="送货单" value="deliveryNote"></el-option>--> <!--<el-option label="送货单" value="deliveryNote"></el-option>-->
<!--</el-select>--> <!--</el-select>-->
<!-- @change="getStorage"--> <!-- @change="getStorage"-->
<el-select v-model="formData.billType" placeholder="请选择业务类型" clearable> <el-select v-model="formData.billType" placeholder="请选择业务类型" @change="getStorage" clearable>
<el-option <el-option
v-for="item in busTypes" v-for="item in busTypes"
:key="item.localName" :key="item.localName"
@ -130,7 +130,8 @@
<!--<el-select v-model="formData.billType" style="width: 100%" placeholder="业务类型" :disabled="true">--> <!--<el-select v-model="formData.billType" style="width: 100%" placeholder="业务类型" :disabled="true">-->
<!--<el-option label="送货单" value="deliveryNote"></el-option>--> <!--<el-option label="送货单" value="deliveryNote"></el-option>-->
<!--</el-select>--> <!--</el-select>-->
<el-select v-model="formData.locStorageCode" placeholder="当前仓库信息" clearable @change="getBusType"> <el-select v-model="formData.locStorageCode" placeholder="当前仓库信息" clearable
@change="getBusType">
<el-option <el-option
v-for="item in storageList" v-for="item in storageList"
:key="item.name" :key="item.name"
@ -451,7 +452,7 @@ import stockOrderNewSelectProduct from "./stockOrderNewSelectProduct";
import dialogInvProduct from "../inventory/DialogInvProduct" import dialogInvProduct from "../inventory/DialogInvProduct"
import {getBasicUnitMaintains, getBasicUnitMaintains2} from "../../api/basic/basicUnitMaintain"; import {getBasicUnitMaintains, getBasicUnitMaintains2} from "../../api/basic/basicUnitMaintain";
import {getBussinessType} from "../../api/basic/bussinessType"; import {getBussinessType} from "../../api/basic/bussinessType";
import {getLocalBusType, getLocalJoinBusType,getLocalJoinByUser} from "../../api/basic/busLocalType"; import {getLocalBusType, getLocalJoinBusType, getLocalJoinByUser} from "../../api/basic/busLocalType";
export default { export default {
name: "idQuery", name: "idQuery",
@ -1083,7 +1084,7 @@ export default {
getBusType() { getBusType() {
let query = { let query = {
enabled: true, enabled: true,
code:this.formData.locStorageCode code: this.formData.locStorageCode
}; };
getLocalJoinByUser(query) getLocalJoinByUser(query)
.then((response) => { .then((response) => {

Loading…
Cancel
Save