|
|
|
@ -125,7 +125,7 @@
|
|
|
|
|
<el-table-column label="批次号" prop="batchNo" width="120" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="价格" prop="price" width="100" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="计量单位" prop="measname" show-overflow-tooltip="true" width="100"></el-table-column>
|
|
|
|
|
<el-table-column label="领用数量" width="160">
|
|
|
|
|
<el-table-column label="领用数量" width="160">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-input v-model="scope.row.count"
|
|
|
|
|
placeholder="请输入数量" style="width: 80%"
|
|
|
|
@ -139,7 +139,7 @@
|
|
|
|
|
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh" width="180"></el-table-column>
|
|
|
|
|
<el-table-column label="生产厂家" prop="manufactory" width="180"></el-table-column>
|
|
|
|
|
<el-table-column label="供应商" prop="supName" width="180"></el-table-column>
|
|
|
|
|
<el-table-column label="操作" width="150" fixed="right">
|
|
|
|
|
<el-table-column label="操作" width="150" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" size="small" :disabled="!ischeck || scope.row.index != selectedIndex"
|
|
|
|
|
@click.stop="true"
|
|
|
|
@ -183,8 +183,9 @@ import {getBusChange} from "@/api/basic/busTypeChange";
|
|
|
|
|
import {inserThrOrderWeb, updateReceive, updateReceiveDetail, delReceiveDetail} from "@/api/thrsys/thrOrderReceive";
|
|
|
|
|
import {filterSubByInv, findByFrom, findByUp, findInvByUser, findLyInv} from "@/api/system/invSubWarehouse";
|
|
|
|
|
import dialogInvProduct from "../DialogSelectInvProduct";
|
|
|
|
|
import {getOrderDetail} from "@/api/inout/receiveOrder";
|
|
|
|
|
import {addDetail, getOrderDetail, repeatAdd} from "@/api/inout/receiveOrder";
|
|
|
|
|
import {parseTime} from "@/utils/coTools";
|
|
|
|
|
import {listApplyDetail} from "@/api/purchase/purApply";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "idQuery",
|
|
|
|
@ -205,6 +206,10 @@ export default {
|
|
|
|
|
type: Object,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
isRepeat: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
@ -269,6 +274,7 @@ export default {
|
|
|
|
|
type: 1,
|
|
|
|
|
Receive: null,
|
|
|
|
|
ischeck: false,
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
@ -527,6 +533,29 @@ export default {
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getDetailByRepeat(value) {
|
|
|
|
|
this.query = {
|
|
|
|
|
orderIdFk: value
|
|
|
|
|
}
|
|
|
|
|
getOrderDetail(this.query) //查找该单号下的所有条码
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.codeArray = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.codeArray.forEach(item => {
|
|
|
|
|
item.orderIdFk = this.pId
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
filters: {},
|
|
|
|
|
mounted() {
|
|
|
|
@ -547,17 +576,54 @@ export default {
|
|
|
|
|
} else {
|
|
|
|
|
this.editType = false;
|
|
|
|
|
let date = new Date();
|
|
|
|
|
this.formData = {
|
|
|
|
|
invCode: this.$store.getters.locInvCode,
|
|
|
|
|
targetInvCode: null,
|
|
|
|
|
billType: "HCLY",
|
|
|
|
|
billNo: null,
|
|
|
|
|
createTime: parseTime(
|
|
|
|
|
date,
|
|
|
|
|
"{y}-{m}-{d} {h}:{i}:{s}"
|
|
|
|
|
),
|
|
|
|
|
};
|
|
|
|
|
this.orderEditor = false;
|
|
|
|
|
if (this.isRepeat) {
|
|
|
|
|
this.formData = this.idQuery.formData;
|
|
|
|
|
let query = {
|
|
|
|
|
orderIdFk: this.formData.billNo
|
|
|
|
|
}
|
|
|
|
|
getOrderDetail(query) //查找该单号下的所有条码
|
|
|
|
|
.then((response) => {
|
|
|
|
|
let codeArray = response.data.list || [];
|
|
|
|
|
this.loading = false;
|
|
|
|
|
let repeatQuery = {
|
|
|
|
|
purReceiveEntity: this.formData,
|
|
|
|
|
datas: codeArray
|
|
|
|
|
}
|
|
|
|
|
repeatAdd(repeatQuery).then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.formData = response.data;
|
|
|
|
|
this.getOrderDetailList()
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
// codeArray.forEach(item => {
|
|
|
|
|
//
|
|
|
|
|
// })
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
this.formData = {
|
|
|
|
|
invCode: this.$store.getters.locInvCode,
|
|
|
|
|
targetInvCode: null,
|
|
|
|
|
billType: "HCLY",
|
|
|
|
|
billNo: null,
|
|
|
|
|
createTime: parseTime(
|
|
|
|
|
date,
|
|
|
|
|
"{y}-{m}-{d} {h}:{i}:{s}"
|
|
|
|
|
),
|
|
|
|
|
};
|
|
|
|
|
this.orderEditor = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.getBusType();
|
|
|
|
|