|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<el-table v-loading="codeLoading" :data="codeDetailList" style="width: 100%" border>
|
|
|
|
|
<el-table v-loading="codeLoading" :data="codeDetailList" style="width: 100%" :row-style="{height:'32px'}" border>
|
|
|
|
|
<template v-for="(item, index) in tableHeader2">
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="item.columnType == 'id' && executeEval(row,item.expression,true)"
|
|
|
|
@ -126,7 +126,7 @@
|
|
|
|
|
<script>
|
|
|
|
|
import {convertDate} from "@/utils/date";
|
|
|
|
|
import {executeFuc, getHead} from "@/utils/customConfig";
|
|
|
|
|
import {materialPrescribePage} from "@/api/inout/splitCode";
|
|
|
|
|
import {autoCodeDetail, manualCodeDetail} from "@/api/collect/collectOrder";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
|
|
|
|
@ -140,7 +140,7 @@ export default {
|
|
|
|
|
default: null,
|
|
|
|
|
required: true
|
|
|
|
|
},
|
|
|
|
|
//上货方式:1:拆零上货;2:整取上货;
|
|
|
|
|
//上货方式:1:拆零上货;2:整取上货;3:手动扫码查询
|
|
|
|
|
fifoSplit: {
|
|
|
|
|
type: Object,
|
|
|
|
|
default: null,
|
|
|
|
@ -187,31 +187,47 @@ export default {
|
|
|
|
|
this.query.sort = 'asc'
|
|
|
|
|
}
|
|
|
|
|
this.query.orderBy = column.prop;
|
|
|
|
|
this.getList();
|
|
|
|
|
this.getList(this);
|
|
|
|
|
},
|
|
|
|
|
///界面配置相关------------end
|
|
|
|
|
|
|
|
|
|
getList(_this) {
|
|
|
|
|
if (this.prescribeData == null)
|
|
|
|
|
if (_this.prescribeData == null)
|
|
|
|
|
return
|
|
|
|
|
if (this.prescribeData != null) {
|
|
|
|
|
if (_this.prescribeData != null) {
|
|
|
|
|
_this.codeQuery.page = 1
|
|
|
|
|
_this.codeQuery.prescribeNum = this.prescribeData.code
|
|
|
|
|
_this.codeQuery.orderIdFk = this.prescribeData.billNo
|
|
|
|
|
}
|
|
|
|
|
_this.codeLoading = true;
|
|
|
|
|
_this.codeQuery.fifoSplit = this.fifoSplit
|
|
|
|
|
materialPrescribePage(_this.codeQuery).then(res => {
|
|
|
|
|
_this.codeLoading = false
|
|
|
|
|
if (res.code != 20000) {
|
|
|
|
|
_this.$message.error(res.message)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
_this.codeDetailList = res.data.list
|
|
|
|
|
_this.codeLoading = false
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
_this.codeLoading = false
|
|
|
|
|
_this.$message.error("数据加载失败")
|
|
|
|
|
})
|
|
|
|
|
if (_this.fifoSplit == 3) {
|
|
|
|
|
manualCodeDetail(_this.codeQuery).then(res => {
|
|
|
|
|
_this.codeLoading = false
|
|
|
|
|
if (res.code != 20000) {
|
|
|
|
|
_this.$message.error(res.message)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
_this.codeDetailList = res.data.list
|
|
|
|
|
_this.codeLoading = false
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
_this.codeLoading = false
|
|
|
|
|
_this.$message.error("数据加载失败")
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
_this.codeQuery.fifoSplit = this.fifoSplit
|
|
|
|
|
autoCodeDetail(_this.codeQuery).then(res => {
|
|
|
|
|
_this.codeLoading = false
|
|
|
|
|
if (res.code != 20000) {
|
|
|
|
|
_this.$message.error(res.message)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
_this.codeDetailList = res.data.list
|
|
|
|
|
_this.codeLoading = false
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
_this.codeLoading = false
|
|
|
|
|
_this.$message.error("数据加载失败")
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
codeHandleCurrentChange(val) {
|
|
|
|
|
this.filterQuery.page = val.page;
|
|
|
|
@ -227,7 +243,7 @@ export default {
|
|
|
|
|
this.tableHeader2 = re.data.tableList;
|
|
|
|
|
this.queryList2 = re.data.queryList;
|
|
|
|
|
this.fromList2 = re.data.fromList;
|
|
|
|
|
this.getList();
|
|
|
|
|
this.getList(this);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|