|
|
|
@ -62,7 +62,7 @@
|
|
|
|
|
<el-form-item class="query-form-item" prop="targetInvCode" label="领用仓库:">
|
|
|
|
|
<el-select v-model="formData.targetInvCode" placeholder="请选择领用仓库" @change="getTargerType"
|
|
|
|
|
clearable="true"
|
|
|
|
|
:disabled="codeArray.length>0"
|
|
|
|
|
:disabled="true"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
@ -178,7 +178,7 @@
|
|
|
|
|
<script>
|
|
|
|
|
import {getBusChange} from "@/api/basic/busTypeChange";
|
|
|
|
|
import {inserThrOrderWeb, updateReceive, updateReceiveDetail, delReceiveDetail} from "@/api/thrsys/thrOrderReceive";
|
|
|
|
|
import {filterSubByInv, findByFrom, findInvByUser} from "@/api/system/invSubWarehouse";
|
|
|
|
|
import {filterSubByInv, findByFrom, findByUp, findInvByUser} from "@/api/system/invSubWarehouse";
|
|
|
|
|
import dialogInvProduct from "../DialogSelectInvProduct";
|
|
|
|
|
import {getOrderDetail} from "@/api/inout/receiveOrder";
|
|
|
|
|
import {parseTime} from "@/utils/coTools";
|
|
|
|
@ -289,11 +289,13 @@ export default {
|
|
|
|
|
findFromInv() {
|
|
|
|
|
let cQuery = {
|
|
|
|
|
locInvCode: this.formData.invCode,
|
|
|
|
|
type:1,
|
|
|
|
|
};
|
|
|
|
|
findByFrom(cQuery)
|
|
|
|
|
findByUp(cQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.fromOptions = response.data || [];
|
|
|
|
|
if (this.fromOptions != null && this.fromOptions.length > 0) {
|
|
|
|
|
this.formData.targetInvCode = this.fromOptions[0].code;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|