|
|
|
@ -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
|
|
|
|
@ -77,20 +77,20 @@
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<!-- <el-col :span="11">-->
|
|
|
|
|
<!-- <el-form-item prop="billType" label="领用类型:">-->
|
|
|
|
|
<!-- <el-select v-model="formData.billType" placeholder="请选择领用类型" style="width: 100%"-->
|
|
|
|
|
<!-- clearable>-->
|
|
|
|
|
<!-- <el-option-->
|
|
|
|
|
<!-- v-for="item in busTypes"-->
|
|
|
|
|
<!-- :key="item.originAction"-->
|
|
|
|
|
<!-- :label="item.originName"-->
|
|
|
|
|
<!-- :value="item.originAction">-->
|
|
|
|
|
<!-- <span style="float: left">{{ item.originName }}</span>-->
|
|
|
|
|
<!-- </el-option>-->
|
|
|
|
|
<!-- </el-select>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <el-col :span="11">-->
|
|
|
|
|
<!-- <el-form-item prop="billType" label="领用类型:">-->
|
|
|
|
|
<!-- <el-select v-model="formData.billType" placeholder="请选择领用类型" style="width: 100%"-->
|
|
|
|
|
<!-- clearable>-->
|
|
|
|
|
<!-- <el-option-->
|
|
|
|
|
<!-- v-for="item in busTypes"-->
|
|
|
|
|
<!-- :key="item.originAction"-->
|
|
|
|
|
<!-- :label="item.originName"-->
|
|
|
|
|
<!-- :value="item.originAction">-->
|
|
|
|
|
<!-- <span style="float: left">{{ item.originName }}</span>-->
|
|
|
|
|
<!-- </el-option>-->
|
|
|
|
|
<!-- </el-select>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<el-col :span="11">
|
|
|
|
|
<el-form-item prop="remark" label="备注:">
|
|
|
|
|
<el-input v-model="formData.remark" auto-complete="off"></el-input>
|
|
|
|
@ -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";
|
|
|
|
@ -265,7 +265,7 @@ export default {
|
|
|
|
|
invQueryData: {},
|
|
|
|
|
type: 1,
|
|
|
|
|
Receive: {},
|
|
|
|
|
ischeck:false,
|
|
|
|
|
ischeck: false,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
@ -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(() => {
|
|
|
|
|
});
|
|
|
|
@ -314,8 +316,8 @@ export default {
|
|
|
|
|
hideSearch() {
|
|
|
|
|
this.showSearch = !this.showSearch;
|
|
|
|
|
},
|
|
|
|
|
getTargerType(){
|
|
|
|
|
this.formData.advanceType= this.fromOptions.find(item => item.code == this.formData.targetInvCode).advanceType
|
|
|
|
|
getTargerType() {
|
|
|
|
|
this.formData.advanceType = this.fromOptions.find(item => item.code == this.formData.targetInvCode).advanceType
|
|
|
|
|
console.log(this.formData)
|
|
|
|
|
},
|
|
|
|
|
saveOrder(status) {
|
|
|
|
@ -416,7 +418,7 @@ export default {
|
|
|
|
|
this.getOrderDetailList();
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
save(){
|
|
|
|
|
save() {
|
|
|
|
|
if (this.$isNotBlank(this.Receive)) {
|
|
|
|
|
console.log("this.Receive:")
|
|
|
|
|
console.log(this.Receive)
|
|
|
|
@ -425,8 +427,8 @@ export default {
|
|
|
|
|
updateReceiveDetail(this.Receive).then(res => {
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.ischeck=false;
|
|
|
|
|
this.selectedIndex=null;
|
|
|
|
|
this.ischeck = false;
|
|
|
|
|
this.selectedIndex = null;
|
|
|
|
|
this.$message.success('修改成功');
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message);
|
|
|
|
@ -436,7 +438,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
rowChange(val) {
|
|
|
|
|
this.Receive=val;
|
|
|
|
|
this.Receive = val;
|
|
|
|
|
console.log("var:")
|
|
|
|
|
console.log(this.Receive)
|
|
|
|
|
this.ischeck = true;
|
|
|
|
@ -499,7 +501,7 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
subStorageChange(item) {
|
|
|
|
|
this.formData.targetInvCode='';
|
|
|
|
|
this.formData.targetInvCode = '';
|
|
|
|
|
this.getBusType();
|
|
|
|
|
this.findFromInv();
|
|
|
|
|
},
|
|
|
|
|