库存查询,库存详情,参数配置等

master
anthonywj 3 years ago
parent ff540b152a
commit 43b07ac743

@ -1,5 +1,5 @@
{
"BASE_URL": "http://192.168.0.115:9996",
"SERVER_IP": "http://192.168.0.115:9996",
"BASE_URL": "http://192.168.0.109:9996",
"SERVER_IP": "http://192.168.0.109:9996",
"hosp_name": "诏安县总医院(测试)"
}

@ -207,6 +207,7 @@ export default {
ullageFill: null,
scanPreIn: null,
vailInv: null,
codeFillCheck:null,
},
enableMap: {
true: "是",
@ -349,7 +350,8 @@ export default {
prefix: row.prefix,
ullageFill: row.ullageFill,
scanPreIn: row.scanPreIn,
vailInv: row.vailInv
vailInv: row.vailInv,
codeFillCheck: row.codeFillCheck,

@ -236,6 +236,8 @@
</el-checkbox>
<el-checkbox v-model="inputQuery.vailInv">访
</el-checkbox>
<el-checkbox v-model="inputQuery.codeFillCheck">
</el-checkbox>
</div>
</el-col>
</el-row>

@ -238,6 +238,8 @@
v-on:closeDetailDialog="closeDetailDialog"
></codeDetail>
</el-dialog>
<el-pagination
:page-size="filterQuery.limit"
@current-change="handleCurrentChange"

@ -348,7 +348,6 @@
editTye="2"
:closeCodeDialog="closeCodeDialog"
:codeDetail="codeDetail">
</editCodeDialog>
</el-dialog>
@ -465,9 +464,9 @@ export default {
selectRlTitle: "绑定产品",
selectUnitTitle: "绑定供应商",
sictomText: "",
codeDetail: null,
originCode: "",
checkSuccess: false,
codeDetail: null,
editTitle: "编辑条码",
};
},

@ -21,6 +21,26 @@
prop="code"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="生产日期"
prop="produceDate"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="失效日期"
prop="expireDate"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="批次号"
prop="batchNo"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="序列号"
prop="serialNo"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="扫码数量"
prop="count"

@ -30,7 +30,27 @@
<el-table-column type="selection" width="55"></el-table-column>
<el-table-column label="序号" type="index" fixed></el-table-column>
<!-- <el-table-column label="ID" prop="id" fixed></el-table-column> -->
<el-table-column label="条码" prop="code" fixed></el-table-column>
<el-table-column label="条码" prop="code" show-overflow-tooltip fixed></el-table-column>
<el-table-column
label="生产日期"
prop="produceDate"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="失效日期"
prop="expireDate"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="批次号"
prop="batchNo"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="序列号"
prop="serialNo"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="供应商"
prop="supId"
@ -52,6 +72,15 @@
<el-table-column label="操作" fixed="right" width="250">
<template slot-scope="scope">
<el-button
type="text"
size="small"
@click.native.stop="editCode(scope.row)"
>编辑
</el-button
>
<!-- <el-button-->
<!-- type="text"-->
<!-- size="small"-->
@ -113,6 +142,21 @@
v-on:closeBindDialog="closeBindDialog"
></selectRlDialog>
</el-dialog>
<el-dialog
:title="editTitle"
:visible.sync="editCodeVisible"
append-to-body width="70%"
v-if="editCodeVisible"
>
<editCodeDialog
editTye="2"
:closeCodeDialog="closeCodeDialog"
:codeDetail="codeDetail">
</editCodeDialog>
</el-dialog>
</div>
</template>
@ -126,6 +170,7 @@ import draggable from "vuedraggable";
import {saveAs} from "file-saver";
import DialogSelectUnit from "./DialogSelectUnit";
import selectRlDialog from "./DialogSelectRl";
import editCodeDialog from "@/views/warehouse/editCode";
export default {
name: "idQuery",
@ -155,10 +200,14 @@ export default {
multipleSelection: [],
selectRlVisible: false,
dialogTableVisible: false,
codeDetail: null,
editTitle: "补齐三期",
editCodeVisible: false,
};
},
components: {
draggable, DialogSelectUnit, selectRlDialog
draggable, DialogSelectUnit, selectRlDialog, editCodeDialog
},
methods: {
handleSelectionChange(val) {
@ -193,7 +242,9 @@ export default {
this.query.page = val;
this.getCodeList();
},
closeCodeDialog() {
this.editCodeVisible = false;
},
deleteDialog() {
this.$confirm("是否删除所选条码?", "提示", {
confirmButtonText: "确定",
@ -309,6 +360,10 @@ export default {
return rowBackground;
},
editCode(row) {
this.codeDetail = row;
this.editCodeVisible = true;
},
},
filters: {},
mounted() {

Loading…
Cancel
Save