禅道上bug修改

fencang
anthonywj 3 years ago
parent e6a492ad18
commit a96a38ee65

@ -1,304 +1,314 @@
<template> <template>
<div> <div>
<el-card> <el-card>
<el-form :inline="true" :model="filterQuery" class="query-form" size="mini"> <el-form :inline="true" :model="filterQuery" class="query-form" size="mini">
<el-form-item class="query-form-item"> <el-form-item class="query-form-item">
<el-input <el-input
v-model="filterQuery.name" v-model="filterQuery.name"
style="width: 250px" style="width: 250px"
placeholder="单据类型名称" placeholder="单据类型名称"
></el-input> ></el-input>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button-group style="margin-left: 10px;display:flex;"> <el-button-group style="margin-left: 10px;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="handleAddClick" <el-button type="primary" icon="search" @click="handleAddClick"
>新增 >新增
</el-button </el-button
> >
</el-button-group> </el-button-group>
</el-form-item> </el-form-item>
</el-form> </el-form>
<el-table v-loading="loading" :data="list" style="width: 100%"> <el-table v-loading="loading" :data="list" style="width: 100%">
<el-table-column label="序号" type="index" width="60" fixed></el-table-column> <el-table-column label="序号" type="index" width="60" fixed></el-table-column>
<el-table-column label="扫码单据类型" prop="curName" fixed></el-table-column> <el-table-column label="扫码单据类型" prop="curName" fixed></el-table-column>
<el-table-column label="当前仓库" prop="curInvName" fixed></el-table-column> <el-table-column label="当前仓库" prop="curInvName" fixed></el-table-column>
<el-table-column label="委托验收仓库" prop="entrustInvName" fixed> <el-table-column label="委托验收仓库" prop="entrustInvName" fixed>
</el-table-column> </el-table-column>
<el-table-column label="委托验收人" prop="employeeName" fixed> <el-table-column label="委托验收人" prop="employeeName" fixed>
</el-table-column> </el-table-column>
<el-table-column label="操作" fixed="right"> <el-table-column label="操作" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
type="text" type="text"
size="small" size="small"
@click.native.stop="handleModifyClick(scope.row)" @click.native.stop="handleModifyClick(scope.row)"
>编辑 >编辑
</el-button </el-button
> >
<el-button <el-button
type="text" type="text"
size="small" size="small"
@click.native.stop="deleteDialog(scope.row)" @click.native.stop="deleteDialog(scope.row)"
>删除 >删除
</el-button </el-button
> >
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<el-dialog <el-dialog
title="新增委托验收" title="新增委托验收"
:visible.sync="addDialogVisible" :visible.sync="addDialogVisible"
width="70%" width="70%"
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"
v-if="addDialogVisible" v-if="addDialogVisible"
> >
<modifyDialog :inputQuery="inputQuery"></modifyDialog> <modifyDialog :inputQuery="inputQuery"></modifyDialog>
<div style="text-align: center"> <div style="text-align: center">
<el-button type="primary" size="small" icon="search" @click="onAddSubmit" <el-button type="primary" size="small" icon="search" @click="onAddSubmit"
>提交 >提交
</el-button </el-button
> >
<el-button type="primary" size="small" icon="search" @click="cancelDialog" <el-button type="primary" size="small" icon="search" @click="cancelDialog"
>取消 >取消
</el-button </el-button
> >
</div> </div>
</el-dialog> </el-dialog>
<el-dialog <el-dialog
title="编辑委托验收" title="编辑委托验收"
:visible.sync="modifyDialogVisible" :visible.sync="modifyDialogVisible"
width="70%" width="70%"
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"
v-if="modifyDialogVisible" v-if="modifyDialogVisible"
> >
<modifyDialog :inputQuery="inputQuery"></modifyDialog> <modifyDialog :inputQuery="inputQuery"></modifyDialog>
<div style="text-align: center"> <div style="text-align: center">
<el-button type="primary" size="small" icon="search" @click="onModifySubmit" <el-button type="primary" size="small" icon="search" @click="onModifySubmit"
>提交 >提交
</el-button </el-button
> >
<el-button type="primary" size="small" icon="search" @click="cancelDialog" <el-button type="primary" size="small" icon="search" @click="cancelDialog"
>取消 >取消
</el-button </el-button
> >
</div> </div>
</el-dialog> </el-dialog>
<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 {
getEntrustRece, getEntrustRece,
deleteEntrustRece, deleteEntrustRece,
updateEntrustRece, updateEntrustRece,
insertEntrustRece, insertEntrustRece,
} from "../../api/basic/EntrustRece"; } from "../../api/basic/EntrustRece";
import modifyDialog from "./BasicEntrutsReceModify"; import modifyDialog from "./BasicEntrutsReceModify";
export default { export default {
data() { data() {
return { return {
filterQuery: { filterQuery: {
name: "", name: "",
page: 1, page: 1,
limit: 20, limit: 20,
}, },
loading: false, loading: false,
addDialogVisible: false, addDialogVisible: false,
modifyDialogVisible: false, modifyDialogVisible: false,
list: [], list: [],
inputQuery: { inputQuery: {
action: "", action: "",
name: "", name: "",
entrustInv: "", entrustInv: "",
entrustUser: "", entrustUser: "",
entrustAction: null, entrustAction: null,
finishRece: false, finishRece: false,
curInv: "", curInv: "",
entrustSubInv: "", entrustSubInv: "",
invWarehouseCode: "", invWarehouseCode: "",
}, },
enableMap: { enableMap: {
true: "是", true: "是",
false: "否", false: "否",
}, },
mainActionMap: { mainActionMap: {
WareHouseIn: "入库", WareHouseIn: "入库",
WareHouseOut: "出库" WareHouseOut: "出库"
}, },
fileList: [], fileList: [],
total: 0, total: 0,
multipleSelection: [], multipleSelection: [],
uploadFileUrl: null, uploadFileUrl: null,
headers: {}, headers: {},
};
},
methods: {
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
name: "",
page: 1,
limit: 20,
};
this.getList();
},
cancelDialog() {
this.modifyDialogVisible = false;
this.addDialogVisible = false;
},
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList();
},
getList() {
this.loading = true;
getEntrustRece(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;
});
},
};
},
onAddSubmit() { methods: {
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
name: "",
page: 1,
limit: 20,
};
this.getList();
},
cancelDialog() {
this.modifyDialogVisible = false;
this.addDialogVisible = false;
},
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList();
},
getList() {
this.loading = true;
getEntrustRece(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;
});
},
if (this.$isBlank(this.inputQuery.action)) {
this.$message.error("单据类型不能为空!");
return;
}
if (this.$isBlank(this.inputQuery.curInv)) {
this.$message.error("请输入委托仓库!");
return;
}
if (this.$isBlank(this.inputQuery.entrustInv)) {
this.$message.error("请输入接受委托仓库!");
return;
}
if (this.$isBlank(this.inputQuery.entrustInv)) {
this.$message.error("请输入接受委托人!");
return;
}
insertEntrustRece(this.inputQuery) onAddSubmit() {
.then((response) => {
this.loading = false;
this.cancelDialog();
this.getList();
})
.catch(() => {
this.loading = false;
this.cancelDialog();
});
},
onModifySubmit() { if (this.$isBlank(this.inputQuery.action)) {
if (this.$isBlank(this.inputQuery.action)) { this.$message.error("单据类型不能为空!");
this.$message.error("单据类型不能为空!"); return;
return; }
} if (this.$isBlank(this.inputQuery.curInv)) {
if (this.$isBlank(this.inputQuery.curInv)) { this.$message.error("请输入委托仓库!");
this.$message.error("请输入委托仓库!"); return;
return; }
} if (this.$isBlank(this.inputQuery.entrustInv)) {
if (this.$isBlank(this.inputQuery.entrustInv)) { this.$message.error("请输入接受委托仓库!");
this.$message.error("请输入接受委托仓库!"); return;
return; }
} if (this.$isBlank(this.inputQuery.entrustUser)) {
if (this.$isBlank(this.inputQuery.entrustInv)) { this.$message.error("请输入接受委托人!");
this.$message.error("请输入接受委托人!"); return;
return; }
}
insertEntrustRece(this.inputQuery)
.then((response) => {
this.loading = false;
this.cancelDialog();
this.getList();
})
.catch(() => {
this.loading = false;
this.cancelDialog();
});
},
handleAddClick() { if (this.$isBlank(this.inputQuery.invWarehouseCode)) {
this.inputQuery = {enable: true, expireTip: true}; this.$message.error("当前分库不能为空!");
this.addDialogVisible = true; return;
}, }
if (this.$isBlank(this.inputQuery.entrustSubInv)) {
this.$message.error("请输入接受委托分库!");
return;
}
handleModifyClick(row) {
this.inputQuery = row;
this.modifyDialogVisible = true;
},
deleteDialog(rowId) { insertEntrustRece(this.inputQuery)
this.$confirm("此操作将永久删除该委托验收信息, 是否继续?", "提示", { .then((response) => {
confirmButtonText: "确定", this.loading = false;
cancelButtonText: "取消", this.cancelDialog();
type: "warning", this.getList();
}) })
.then(() => { .catch(() => {
this.deleteOrders(rowId); this.loading = false;
}) this.cancelDialog();
.catch(() => { });
}); },
},
deleteOrders(data) { onModifySubmit() {
this.loading = true; if (this.$isBlank(this.inputQuery.action)) {
let tquery = { this.$message.error("单据类型不能为空!");
id: data.id + "", return;
}; }
deleteEntrustRece(tquery) if (this.$isBlank(this.inputQuery.curInv)) {
.then((response) => { this.$message.error("请输入委托仓库!");
this.getList(); return;
if (response.code == 20000) { }
this.$message({ if (this.$isBlank(this.inputQuery.entrustInv)) {
type: "success", this.$message.error("请输入接受委托仓库!");
message: "删除成功!", return;
}); }
} else { if (this.$isBlank(this.inputQuery.entrustInv)) {
this.$message.error(response.message); this.$message.error("请输入接受委托人!");
} return;
}
insertEntrustRece(this.inputQuery)
.then((response) => {
this.loading = false;
this.cancelDialog();
this.getList();
})
.catch(() => {
this.loading = false;
this.cancelDialog();
});
},
}) handleAddClick() {
.catch(() => { this.inputQuery = {enable: true, expireTip: true};
}); this.addDialogVisible = true;
},
}, },
components: {
modifyDialog, handleModifyClick(row) {
this.inputQuery = row;
this.modifyDialogVisible = true;
}, },
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 + "",
};
deleteEntrustRece(tquery)
.then((response) => {
this.getList();
if (response.code == 20000) {
this.$message({
type: "success",
message: "删除成功!",
});
} else {
this.$message.error(response.message);
}
})
.catch(() => {
});
}, },
},
components: {
modifyDialog,
},
mounted() {
},
created() {
this.getList();
},
}; };
</script> </script>

@ -1,296 +1,299 @@
<template> <template>
<div> <div>
<el-descriptions class="margin-top" title="产品信息" :column="3" :size="size" border> <el-descriptions class="margin-top" title="产品信息" :column="3" :size="size" border>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
产品名称 产品名称
</template> </template>
{{ idQuery.cpmctymc }} {{ idQuery.cpmctymc }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
产品标识 产品标识
</template> </template>
{{ idQuery.nameCode }} {{ idQuery.nameCode }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
批次号 批次号
</template> </template>
{{ idQuery.batchNo }} {{ idQuery.batchNo }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
规格型号 规格型号
</template> </template>
{{ idQuery.ggxh }} {{ idQuery.ggxh }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
生产日期 生产日期
</template> </template>
{{ idQuery.productionDate }} {{ idQuery.productionDate }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
失效日期 失效日期
</template> </template>
{{ idQuery.expireDate }} {{ idQuery.expireDate }}
</el-descriptions-item> </el-descriptions-item>
</el-descriptions> </el-descriptions>
<!-- <el-descriptions style="margin-top: 15px" class="margin-top" title="库存统计" :column="3" :size="size" border>--> <!-- <el-descriptions style="margin-top: 15px" class="margin-top" title="库存统计" :column="3" :size="size" border>-->
<!-- <el-descriptions-item>--> <!-- <el-descriptions-item>-->
<!-- <template slot="label">--> <!-- <template slot="label">-->
<!-- 入库数量--> <!-- 入库数量-->
<!-- </template>--> <!-- </template>-->
<!-- {{ statData.inCount }}--> <!-- {{ statData.inCount }}-->
<!-- </el-descriptions-item>--> <!-- </el-descriptions-item>-->
<!-- <el-descriptions-item>--> <!-- <el-descriptions-item>-->
<!-- <template slot="label">--> <!-- <template slot="label">-->
<!-- 出库数量--> <!-- 出库数量-->
<!-- </template>--> <!-- </template>-->
<!-- {{ statData.outCount }}--> <!-- {{ statData.outCount }}-->
<!-- </el-descriptions-item>--> <!-- </el-descriptions-item>-->
<!-- <el-descriptions-item>--> <!-- <el-descriptions-item>-->
<!-- <template slot="label">--> <!-- <template slot="label">-->
<!-- 结余数量--> <!-- 结余数量-->
<!-- </template>--> <!-- </template>-->
<!-- {{ (statData.inCount - statData.outCount) }}--> <!-- {{ (statData.inCount - statData.outCount) }}-->
<!-- </el-descriptions-item>--> <!-- </el-descriptions-item>-->
<!-- <el-descriptions-item>--> <!-- <el-descriptions-item>-->
<!-- <template slot="label">--> <!-- <template slot="label">-->
<!-- 普通采购数量--> <!-- 普通采购数量-->
<!-- </template>--> <!-- </template>-->
<!-- {{ statData.commonCount }}--> <!-- {{ statData.commonCount }}-->
<!-- </el-descriptions-item>--> <!-- </el-descriptions-item>-->
<!-- <el-descriptions-item>--> <!-- <el-descriptions-item>-->
<!-- <template slot="label">--> <!-- <template slot="label">-->
<!-- 预入库数量--> <!-- 预入库数量-->
<!-- </template>--> <!-- </template>-->
<!-- {{ statData.advanceCount }}--> <!-- {{ statData.advanceCount }}-->
<!-- </el-descriptions-item>--> <!-- </el-descriptions-item>-->
<!-- </el-descriptions>--> <!-- </el-descriptions>-->
<el-form :inline="true" :model="query" class="query-form" size="mini"> <el-form :inline="true" :model="query" class="query-form" size="mini">
<el-form-item class="query-form-item"> <el-form-item class="query-form-item">
<el-input v-model="query.code" placeholder="条码查询"></el-input> <el-input v-model="query.code" placeholder="条码查询"></el-input>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button-group> <el-button-group>
<el-button type="primary" icon="search" @click="getCodeList" <el-button type="primary" icon="search" @click="getCodeList"
>查询 >查询
</el-button </el-button
> >
</el-button-group> </el-button-group>
</el-form-item> </el-form-item>
</el-form> </el-form>
<el-table v-loading="loading" :data="codeArry" style="width: 100%"> <el-table v-loading="loading" :data="codeArry" 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
label="条码" label="条码"
prop="originCode" prop="originCode"
width="300" width="300"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column label="单据类型" prop="action" width="150"> <el-table-column label="单据类型" prop="action" width="150">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ getActionName(scope.row.action) }}</span> <span>{{ getActionName(scope.row.action) }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
label="出入库类型" label="出入库类型"
prop="mainActionStr" prop="mainActionStr"
width="120" width="120"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="入库数量" label="入库数量"
prop="inCount" prop="inCount"
width="120" width="120"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="出库数量" label="出库数量"
prop="outCount" prop="outCount"
width="120" width="120"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="订单日期" label="订单日期"
prop="updateTime" prop="updateTime"
width="150" width="150"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="所属扫码单据" label="所属扫码单据"
prop="orderIdFk" prop="orderIdFk"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="所属业务单据" label="所属业务单据"
prop="stockIdFk" prop="stockIdFk"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
</el-table> </el-table>
<el-pagination <el-pagination
:page-size="query.limit" :page-size="query.limit"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
layout="prev, pager, next,total" layout="prev, pager, next,total"
:total="total" :total="total"
> >
</el-pagination> </el-pagination>
</div> </div>
</template> </template>
<script> <script>
import { import {
filterDetailProducts, statDetailProducts filterDetailProducts, statDetailProducts
} from "../../api/inventory/InvProducts"; } from "../../api/inventory/InvProducts";
import store from "../../store"; import store from "../../store";
import draggable from "vuedraggable"; import draggable from "vuedraggable";
import {getBussinessType} from "../../api/basic/bussinessType"; import {getBussinessType} from "../../api/basic/bussinessType";
export default { export default {
name: "idQuery", name: "idQuery",
props: { props: {
idQuery: { idQuery: {
type: Object, type: Object,
required: true, required: true,
},
}, },
}, data() {
data() { return {
return { query: {
query: { batchNo: null,
batchNo: null, productIdFk: null,
productIdFk: null, customerId: null,
customerId: null, page: 1,
page: 1, invStorageCode: null,
invStorageCode: null, invWarehouseCode: null,
limit: 20, limit: 20,
}, },
codeArry: [], codeArry: [],
total: 0, total: 0,
loading: true, loading: true,
index: null, index: null,
formLoading: false, formLoading: false,
formVisible: false, formVisible: false,
deleteLoading: false, deleteLoading: false,
orderNo: null, orderNo: null,
busTypes: [], busTypes: [],
statData: {}, statData: {},
}; };
},
components: {
draggable,
},
methods: {
onReset() {
this.$router.push({
path: "",
});
this.query = {
productIdFk: null,
customerId: null,
page: 1,
limit: 20,
};
this.getCodeList();
}, },
onSubmit() { components: {
this.$router.push({ draggable,
path: "",
query: this.query,
});
this.getCodeList();
},
handleSizeChange(val) {
this.query.limit = val;
this.getCodeList();
},
handleCurrentChange(val) {
this.query.page = val;
this.getCodeList();
}, },
methods: {
onReset() {
this.$router.push({
path: "",
});
this.query = {
productIdFk: null,
customerId: null,
page: 1,
limit: 20,
};
this.getCodeList();
},
onSubmit() {
this.$router.push({
path: "",
query: this.query,
});
this.getCodeList();
},
handleSizeChange(val) {
this.query.limit = val;
this.getCodeList();
},
handleCurrentChange(val) {
this.query.page = val;
this.getCodeList();
},
getCodeList() { getCodeList() {
this.loading = true; this.loading = true;
this.query.productIdFk = this.idQuery.relIdFk; this.query.productIdFk = this.idQuery.relIdFk;
this.query.batchNo = this.idQuery.batchNo; this.query.batchNo = this.idQuery.batchNo;
this.query.supId = this.idQuery.supId; this.query.supId = this.idQuery.supId;
this.query.invStorageCode = this.idQuery.invStorageCode; this.query.invStorageCode = this.idQuery.invStorageCode;
filterDetailProducts(this.query) // this.query.invWarehouseCode = this.idQuery.invWarehouseCode;
.then((response) => { filterDetailProducts(this.query) //
this.loading = false; .then((response) => {
this.codeArry = response.data.list || []; this.loading = false;
this.total = response.data.total || 0; this.codeArry = response.data.list || [];
}) this.total = response.data.total || 0;
.catch(() => { })
this.loading = false; .catch(() => {
this.list = []; this.loading = false;
this.total = 0; this.list = [];
}); this.total = 0;
}, });
},
getStat() { getStat() {
this.query.productIdFk = this.idQuery.relIdFk; this.query.productIdFk = this.idQuery.relIdFk;
this.query.batchNo = this.idQuery.batchNo; this.query.batchNo = this.idQuery.batchNo;
this.query.customerId = store.getters.customerId; this.query.customerId = store.getters.customerId;
this.query.invStorageCode = this.idQuery.invStorageCode; this.query.invStorageCode = this.idQuery.invStorageCode;
statDetailProducts(this.query) // this.query.invWarehouseCode = this.idQuery.invWarehouseCode;
.then((response) => { statDetailProducts(this.query) //
this.loading = false; .then((response) => {
this.statData = response.data; this.loading = false;
}) this.statData = response.data;
.catch(() => { })
this.loading = false; .catch(() => {
}); this.loading = false;
});
}, },
intentBack() { intentBack() {
// this.$router.push({path:'../readme/detail',query:{id:row.corpOrderId}}); // this.$router.push({path:'../readme/detail',query:{id:row.corpOrderId}});
this.$router.go(-1); this.$router.go(-1);
},
getActionName(action) {
for (let i = 0; i < this.busTypes.length; i++) {
if (this.busTypes[i].action === action) {
return this.busTypes[i].name;
}
}
},
getBusType() {
let query = {
enabled: true,
};
getBussinessType(query)
.then((response) => {
this.busTypes = response.data.list || [];
this.filterQuery.billAction = this.busTypes[0].action;
// this.getList();
})
.catch(() => {
});
},
}, },
getActionName(action) { filters: {},
for (let i = 0; i < this.busTypes.length; i++) { mounted() {
if (this.busTypes[i].action === action) { document.body.ondrop = function (event) {
return this.busTypes[i].name; event.preventDefault();
} event.stopPropagation();
} };
}, },
getBusType() { created() {
let query = { this.getBusType();
enabled: true, this.getCodeList();
}; this.getStat();
getBussinessType(query)
.then((response) => {
this.busTypes = response.data.list || [];
this.filterQuery.billAction = this.busTypes[0].action;
// this.getList();
})
.catch(() => {
});
}, },
},
filters: {},
mounted() {
document.body.ondrop = function (event) {
event.preventDefault();
event.stopPropagation();
};
},
created() {
this.getBusType();
this.getCodeList();
this.getStat();
},
}; };
</script> </script>

@ -87,6 +87,11 @@
<span>{{ getStorageName(scope.row.locStorageCode) }}</span> <span>{{ getStorageName(scope.row.locStorageCode) }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="当前分库" prop="invWarehouseCode" width="120">
<template slot-scope="scope">
<span>{{ getSubStorageName(scope.row.invWarehouseCode) }}</span>
</template>
</el-table-column>
<el-table-column label="创建时间" prop="actDate" show-overflow-tooltip> <el-table-column label="创建时间" prop="actDate" show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
<i class="el-icon-time"></i> <i class="el-icon-time"></i>
@ -283,8 +288,8 @@ export default {
data() { data() {
return { return {
filterQuery: { filterQuery: {
locStorageCode:null, locStorageCode: null,
invWarehouseCode:null, invWarehouseCode: null,
id: "", id: "",
mainAction: null, mainAction: null,
action: null, action: null,
@ -548,6 +553,13 @@ export default {
} }
} }
}, },
getSubStorageName(code) {
for (let i = 0; i < this.subInvList.length; i++) {
if (this.subInvList[i].code === code) {
return this.subInvList[i].name;
}
}
},
addOrders(row) { addOrders(row) {
console.log(row) console.log(row)
this.idQuery.id = ''; this.idQuery.id = '';

Loading…
Cancel
Save