库存查询,文件导入导出等

master
anthonywj 3 years ago
parent 87527aeaf8
commit 77ab482a99

@ -1,7 +1,7 @@
{ {
"BASE_URL":"http://139.159.187.130:8080/UDI_WMS_MC", "BASE_URL":"http://127.0.0.1:9991",
"SERVER_IP": "http://139.159.187.130:8080/", "SERVER_IP": "http://127.0.0.1:9991/",
"WEBSOCKET_URL": "ws://139.159.187.130:8080/UDI_WMS_MC/api/websocket/" "BASE_URL2": "ws://127.0.0.1:9991/api/websocket/"
} }

@ -8,7 +8,13 @@
style="width: 400px" style="width: 400px"
></el-input> ></el-input>
</el-form-item> </el-form-item>
<el-form-item class="query-form-item">
<el-select v-model="filterQuery.enable" placeholder="启用状态" clearable>
<el-option label="全部" value=""></el-option>
<el-option label="已启用" value="1"></el-option>
<el-option label="未启用" value="0"></el-option>
</el-select>
</el-form-item>
<el-form-item> <el-form-item>
<el-button-group> <el-button-group>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
@ -97,159 +103,164 @@
</div> </div>
</template> </template>
<script> <script>
import { import {
getJoinBussinessType, getJoinBussinessType,
deleteBussinessType, deleteBussinessType,
updateBussinessType, updateBussinessType,
insertBussinessType, insertBussinessType,
} from "../../api/basic/bussinessType"; } from "../../api/basic/bussinessType";
import modifyDialog from "./BussinessTypeModify";
export default {
data() {
return {
filterQuery: {
udiwmsType: "",
thirdType: "",
page: 1,
limit: 20,
},
addDialogVisible: false,
modifyDialogVisible: false,
list: [],
inputQuery: {
action: "",
name: "",
enable: "",
remark: "",
mainAction: "",
thirdSysFk: "",
id: "",
localAction: null,
},
enableMap: {
true: "是",
false: "否",
},
total: 0,
multipleSelection: [],
};
},
methods: { import modifyDialog from "./BussinessTypeModify";
onReset() {
this.$router.push({ export default {
path: "", data() {
}); return {
this.filterQuery = { filterQuery: {
udiwmsType: "", enable: "1",
thirdType: "", udiwmsType: "",
page: 1, thirdType: "",
limit: 20, page: 1,
}; limit: 20,
this.getList();
}, },
cancelDialog() { addDialogVisible: false,
this.modifyDialogVisible = false; modifyDialogVisible: false,
this.addDialogVisible = false; list: [],
inputQuery: {
action: "",
name: "",
enable: "",
remark: "",
mainAction: "",
thirdSysFk: "",
id: "",
localAction: null,
}, },
enableMap: {
getList() { true: "是",
this.loading = true; false: "否",
getJoinBussinessType(this.filterQuery)
.then((response) => {
this.loading = false;
this.list = response.data.list || [];
this.total = response.data.total || 0;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
}, },
total: 0,
multipleSelection: [],
};
},
onAddSubmit() { methods: {
insertBussinessType(this.inputQuery) onReset() {
.then((response) => { this.$router.push({
this.loading = false; path: "",
this.cancelDialog(); });
this.getList(); this.filterQuery = {
}) enable: null,
.catch(() => { udiwmsType: "",
this.loading = false; thirdType: "",
this.cancelDialog(); page: 1,
}); limit: 20,
}, };
this.getList();
onModifySubmit() { },
updateBussinessType(this.inputQuery) cancelDialog() {
.then((response) => { this.modifyDialogVisible = false;
this.loading = false; this.addDialogVisible = false;
this.cancelDialog(); },
this.getList();
})
.catch(() => {
this.loading = false;
this.cancelDialog();
});
},
handleModifyClick(row) { getList() {
this.modifyDialogVisible = true; this.loading = true;
this.inputQuery = { getJoinBussinessType(this.filterQuery)
id: row.id, .then((response) => {
remark: row.remark, this.loading = false;
action: row.action, this.list = response.data.list || [];
name: row.name, this.total = response.data.total || 0;
enable: row.enable, })
mainAction: row.mainAction, .catch(() => {
localAction:row.localAction, this.loading = false;
thirdSysFk: row.thirdSysFk, this.list = [];
}; this.total = 0;
}, });
},
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList();
},
deleteDialog(rowId) { onAddSubmit() {
this.$confirm("此操作将永久删除该业务类型信息, 是否继续?", "提示", { insertBussinessType(this.inputQuery)
confirmButtonText: "确定", .then((response) => {
cancelButtonText: "取消", this.loading = false;
type: "warning", this.cancelDialog();
this.getList();
}) })
.then(() => { .catch(() => {
this.deleteOrders(rowId); this.loading = false;
}) this.cancelDialog();
.catch(() => { });
}); },
},
deleteOrders(data) { onModifySubmit() {
this.loading = true; updateBussinessType(this.inputQuery)
let tquery = { .then((response) => {
id: data.id + "", this.loading = false;
}; this.cancelDialog();
this.getList();
deleteBussinessType(tquery) })
.then((response) => { .catch(() => {
this.getList(); this.loading = false;
this.$message({ this.cancelDialog();
type: "success", });
message: "删除成功!",
});
})
.catch(() => {
});
},
}, },
components: {
modifyDialog, handleModifyClick(row) {
this.modifyDialogVisible = true;
this.inputQuery = {
id: row.id,
remark: row.remark,
action: row.action,
name: row.name,
enable: row.enable,
mainAction: row.mainAction,
localAction: row.localAction,
thirdSysFk: row.thirdSysFk,
};
}, },
mounted() {
deleteDialog(rowId) {
this.$confirm("此操作将永久删除该业务类型信息, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.deleteOrders(rowId);
})
.catch(() => {
});
}, },
created() {
this.getList(); deleteOrders(data) {
this.loading = true;
let tquery = {
id: data.id + "",
};
deleteBussinessType(tquery)
.then((response) => {
this.getList();
this.$message({
type: "success",
message: "删除成功!",
});
})
.catch(() => {
});
}, },
}; },
components: {
modifyDialog,
},
mounted() {
},
created() {
this.getList();
},
};
</script> </script>

@ -160,6 +160,10 @@
}; };
return statusMap[status]; return statusMap[status];
}, },
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList();
},
}, },
mounted() { mounted() {
}, },

@ -1,212 +1,215 @@
<template> <template>
<div> <div>
<el-card> <el-card>
<el-form :inline="true" :model="query" size="mini"> <el-form :inline="true" :model="query" size="mini">
<el-row> <el-row>
<el-form-item class="query-form-item"> <el-form-item class="query-form-item">
<el-input v-model="filterQuery.udiCode" placeholder="UDI编码"></el-input> <el-input v-model="filterQuery.udiCode" placeholder="UDI编码"></el-input>
</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.status" placeholder="处理状态"> <el-select v-model="filterQuery.status" placeholder="处理状态">
<el-option label="全部" value=""></el-option> <el-option label="全部" value=""></el-option>
<el-option label="未处理" value="0"></el-option> <el-option label="未处理" value="0"></el-option>
<el-option label="已完成" value="1"></el-option> <el-option label="已完成" value="1"></el-option>
<el-option label="异常" value="2"></el-option> <el-option label="异常" value="2"></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<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-group> </el-button-group>
</el-form-item> </el-form-item>
</el-row> </el-row>
</el-form> </el-form>
<el-table <el-table
v-loading="loading" v-loading="loading"
:data="list" :data="list"
style="width: 100%" style="width: 100%"
@selection-change="handleSelectionChange" @selection-change="handleSelectionChange"
> >
<el-table-column label="序号" type="index"></el-table-column> <el-table-column label="序号" type="index"></el-table-column>
<el-table-column <el-table-column
label="UDI编码" label="UDI编码"
prop="udiCode" prop="udiCode"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="产品ID1" label="产品ID1"
prop="thirdId" prop="thirdId"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="产品ID2" label="产品ID2"
prop="thirdId1" prop="thirdId1"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="产品ID3" label="产品ID3"
prop="thirdId2" prop="thirdId2"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="产品ID4" label="产品ID4"
prop="thirdId3" prop="thirdId3"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="产品ID5" label="产品ID5"
prop="thirdId4" prop="thirdId4"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="医保编码" label="医保编码"
width="100" width="100"
prop="ybbm" prop="ybbm"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="商品条码" label="商品条码"
prop="sptm" prop="sptm"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="状态" label="状态"
prop="status" prop="status"
show-overflow-tooltip show-overflow-tooltip
> >
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag <el-tag
:type="statusFilterType(scope.row.status)" :type="statusFilterType(scope.row.status)"
>{{ status[scope.row.status] }} >{{ status[scope.row.status] }}
</el-tag </el-tag
> >
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
label="备注" label="备注"
prop="remark" prop="remark"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
</el-table> </el-table>
<el-pagination <el-pagination
:page-size="filterQuery.limit" :page-size="filterQuery.limit"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
layout="prev, pager, next" layout="prev, pager, next"
:total="total" :total="total"
></el-pagination> ></el-pagination>
</el-card> </el-card>
</div> </div>
</template> </template>
<script> <script>
import { import {
filterDetail, filterDetail,
} from "../../api/basic/udiinfolog"; } from "../../api/basic/udiinfolog";
export default { export default {
name: "udiImportDetail", name: "udiImportDetail",
props: { props: {
currentRow: { currentRow: {
type: Object, type: Object,
required: true, required: true,
}, },
}, },
data() { data() {
return { return {
filterQuery: { filterQuery: {
genKey: null, genKey: null,
udiCode:null, udiCode: null,
status:null, status: null,
page: 1, page: 1,
limit: 10, limit: 10,
}, },
list: [], list: [],
detailList: [], detailList: [],
total: 0, total: 0,
status: { status: {
0: "未处理", 0: "未处理",
1: "处理失败", 1: "处理失败",
2: "处理成功" 2: "处理成功"
}, },
}; };
}, },
methods: { methods: {
onReset() { onReset() {
this.$router.push({ this.$router.push({
path: "", path: "",
}); });
this.filterQuery = { this.filterQuery = {
genKey: null, genKey: null,
udiCode:null, udiCode: null,
status:null, status: null,
page: 1, page: 1,
limit: 10, limit: 10,
}; };
this.getList(); this.getList();
}, },
getList() { getList() {
this.loading = true; this.loading = true;
console.log(" this.genKey = "+ this.currentRow.genKey) console.log(" this.genKey = " + this.currentRow.genKey)
this.filterQuery.genKey = this.currentRow.genKey; this.filterQuery.genKey = this.currentRow.genKey;
filterDetail(this.filterQuery) filterDetail(this.filterQuery)
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;
this.list = response.data.list || []; this.list = response.data.list || [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
this.list = []; this.list = [];
this.total = 0; this.total = 0;
}); });
}, },
statusFilterType(status) { statusFilterType(status) {
const statusMap = { const statusMap = {
0: "warning", 0: "warning",
1: "danger", 1: "danger",
2: "success", 2: "success",
}; };
return statusMap[status]; return statusMap[status];
}, },
}, handleCurrentChange(val) {
mounted() { this.filterQuery.page = val;
}, this.getList();
created() { },
this.getList();
},
filters: {
}, },
}; mounted() {
},
created() {
this.getList();
},
filters: {},
};
</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>

@ -148,6 +148,10 @@
this.total = 0; this.total = 0;
}); });
}, },
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList();
},
}, },
mounted() { mounted() {
}, },

@ -158,6 +158,10 @@
console.log("----" + val); console.log("----" + val);
this.multipleSelection = val; this.multipleSelection = val;
}, },
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList();
},
} }
} }

@ -196,6 +196,10 @@
console.log("----" + val); console.log("----" + val);
this.multipleSelection = val; this.multipleSelection = val;
}, },
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList();
},
} }
} }

Loading…
Cancel
Save