|
|
|
@ -4,16 +4,16 @@
|
|
|
|
|
<el-row type="flex" justify="end">
|
|
|
|
|
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px;margin-top: -5px">
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
@click.native="saveOrder('1')"
|
|
|
|
|
:loading="loading"
|
|
|
|
|
type="primary"
|
|
|
|
|
@click.native="saveOrder('1')"
|
|
|
|
|
:loading="loading"
|
|
|
|
|
>草稿保存
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
@click.native="saveOrder('2')"
|
|
|
|
|
:loading="loading"
|
|
|
|
|
type="primary"
|
|
|
|
|
@click.native="saveOrder('2')"
|
|
|
|
|
:loading="loading"
|
|
|
|
|
>提交单据
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
@ -29,13 +29,13 @@
|
|
|
|
|
<el-col :span="11">
|
|
|
|
|
<el-form-item prop="createTime" label="创建时间:">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
:disabled="true"
|
|
|
|
|
v-model="formData.createTime"
|
|
|
|
|
type="datetime"
|
|
|
|
|
placeholder="选择日期"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
:clearable="false"
|
|
|
|
|
value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
|
:disabled="true"
|
|
|
|
|
v-model="formData.createTime"
|
|
|
|
|
type="datetime"
|
|
|
|
|
placeholder="选择日期"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
:clearable="false"
|
|
|
|
|
value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
|
>
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
@ -45,31 +45,31 @@
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="11">
|
|
|
|
|
<el-form-item prop="invCode" label="当前仓库:">
|
|
|
|
|
<el-select v-model="formData.invCode" @change="subStorageChange" placeholder="当前仓库信息"
|
|
|
|
|
<el-select v-model="formData.invCode" @change="subStorageChange" placeholder="当前仓库信息"
|
|
|
|
|
style="width: 100%;"
|
|
|
|
|
:disabled="codeArray.length>0"
|
|
|
|
|
clearable>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in invList"
|
|
|
|
|
:key="item.name"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.code">
|
|
|
|
|
v-for="item in invList"
|
|
|
|
|
:key="item.name"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.code">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11">
|
|
|
|
|
<el-form-item class="query-form-item" prop="targetInvCode" label="领用仓库:">
|
|
|
|
|
<el-select v-model="formData.targetInvCode" placeholder="请选择领用仓库" @change="getTargerType"
|
|
|
|
|
<el-select v-model="formData.targetInvCode" placeholder="请选择领用仓库" @change="getTargerType"
|
|
|
|
|
clearable="true"
|
|
|
|
|
:disabled="codeArray.length>0"
|
|
|
|
|
:disabled="true"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in fromOptions"
|
|
|
|
|
:key="item.code"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.code">
|
|
|
|
|
v-for="item in fromOptions"
|
|
|
|
|
:key="item.code"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.code">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
@ -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>
|
|
|
|
@ -107,10 +107,10 @@
|
|
|
|
|
<el-card>
|
|
|
|
|
<el-button-group style="display: flex">
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
@click.native.stop="selectProductFunction()"
|
|
|
|
|
style="margin: 0px 60px 10px auto; height: 35px"
|
|
|
|
|
:loading="loading"
|
|
|
|
|
type="primary"
|
|
|
|
|
@click.native.stop="selectProductFunction()"
|
|
|
|
|
style="margin: 0px 60px 10px auto; height: 35px"
|
|
|
|
|
:loading="loading"
|
|
|
|
|
>产品录入
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
@ -157,19 +157,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="库存设备录入"
|
|
|
|
|
:visible.sync="selectInvProductVisible"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
width="85%"
|
|
|
|
|
v-if="selectInvProductVisible"
|
|
|
|
|
:append-to-body='true'
|
|
|
|
|
title="库存设备录入"
|
|
|
|
|
:visible.sync="selectInvProductVisible"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
width="85%"
|
|
|
|
|
v-if="selectInvProductVisible"
|
|
|
|
|
:append-to-body='true'
|
|
|
|
|
>
|
|
|
|
|
<dialogInvProduct
|
|
|
|
|
:closeDialog="closeDialogC2"
|
|
|
|
|
:invQueryData="formData"
|
|
|
|
|
:codeArray="codeArray"
|
|
|
|
|
:type="1"
|
|
|
|
|
:closeDialog="closeDialogC2"
|
|
|
|
|
:invQueryData="formData"
|
|
|
|
|
:codeArray="codeArray"
|
|
|
|
|
:type="1"
|
|
|
|
|
></dialogInvProduct>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
@ -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: {
|
|
|
|
@ -279,24 +279,26 @@ export default {
|
|
|
|
|
filter: 3
|
|
|
|
|
};
|
|
|
|
|
findInvByUser(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.invList = response.data || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.invList = response.data || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
//往来分库
|
|
|
|
|
findFromInv() {
|
|
|
|
|
let cQuery = {
|
|
|
|
|
locInvCode: this.formData.invCode,
|
|
|
|
|
type:1,
|
|
|
|
|
};
|
|
|
|
|
findByFrom(cQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.fromOptions = response.data || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
findByUp(cQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.fromOptions = response.data || [];
|
|
|
|
|
if (this.fromOptions != null && this.fromOptions.length > 0) {
|
|
|
|
|
this.formData.targetInvCode = this.fromOptions[0].code;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
//领用类型
|
|
|
|
|
getBusType() {
|
|
|
|
@ -305,17 +307,17 @@ export default {
|
|
|
|
|
type: 1,
|
|
|
|
|
};
|
|
|
|
|
getBusChange(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.busTypes = response.data.list || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.busTypes = response.data.list || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
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) {
|
|
|
|
@ -387,17 +389,17 @@ export default {
|
|
|
|
|
tQuery.subErpOrders = this.codeArray;
|
|
|
|
|
tQuery.thirdPartyDate = 2;
|
|
|
|
|
updateReceive(tQuery)
|
|
|
|
|
.then(response => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success(tMessage + "成功");
|
|
|
|
|
this.closeDialog(true);
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
})
|
|
|
|
|
.then(response => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success(tMessage + "成功");
|
|
|
|
|
this.closeDialog(true);
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
selectProductFunction(event) {
|
|
|
|
|
|
|
|
|
@ -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;
|
|
|
|
@ -446,7 +448,7 @@ export default {
|
|
|
|
|
this.focusNext('iCount');
|
|
|
|
|
},
|
|
|
|
|
tableCountChange(row) {
|
|
|
|
|
this.Receive = row;
|
|
|
|
|
this.Receive = row;
|
|
|
|
|
},
|
|
|
|
|
tableRowClassName({row, rowIndex}) {
|
|
|
|
|
row.index = rowIndex;
|
|
|
|
@ -475,17 +477,17 @@ export default {
|
|
|
|
|
_this.detailLoading = true;
|
|
|
|
|
if (_this.$isNotBlank(row.id)) {
|
|
|
|
|
delReceiveDetail({id: row.id})
|
|
|
|
|
.then(response => {
|
|
|
|
|
_this.detailLoading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
_this.getOrderDetailList();
|
|
|
|
|
} else {
|
|
|
|
|
_this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
_this.detailLoading = false;
|
|
|
|
|
})
|
|
|
|
|
.then(response => {
|
|
|
|
|
_this.detailLoading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
_this.getOrderDetailList();
|
|
|
|
|
} else {
|
|
|
|
|
_this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
_this.detailLoading = false;
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
_this.$message.success('删除成功');
|
|
|
|
|
_this.codeArray.splice(index, 1);
|
|
|
|
@ -499,7 +501,7 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
subStorageChange(item) {
|
|
|
|
|
this.formData.targetInvCode='';
|
|
|
|
|
this.formData.targetInvCode = '';
|
|
|
|
|
this.getBusType();
|
|
|
|
|
this.findFromInv();
|
|
|
|
|
},
|
|
|
|
@ -508,16 +510,16 @@ export default {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.query.orderIdFk = this.formData.billNo;
|
|
|
|
|
getOrderDetail(this.query) //查找该单号下的所有条码
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.codeArray = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.codeArray = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
filters: {},
|
|
|
|
@ -545,8 +547,8 @@ export default {
|
|
|
|
|
billType: "HCLY",
|
|
|
|
|
billNo: null,
|
|
|
|
|
createTime: parseTime(
|
|
|
|
|
date,
|
|
|
|
|
"{y}-{m}-{d} {h}:{i}:{s}"
|
|
|
|
|
date,
|
|
|
|
|
"{y}-{m}-{d} {h}:{i}:{s}"
|
|
|
|
|
),
|
|
|
|
|
};
|
|
|
|
|
this.orderEditor = false;
|
|
|
|
|