You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udiwms-vue-frame/src/views/inventory/InvPlaceChangeModify.vue

455 lines
12 KiB
Vue

<template>
<el-form :model="formData" label-width="100px">
<el-button-group
style="display: flex; margin: 0px 0 10px 80%; height: 35px"
>
<el-button size="mini" type="primary" @click.native="saveData()"
>提交</el-button
>
<el-button size="mini" type="primary" @click.native="closePlaceDialog(1)"
>关闭</el-button
>
</el-button-group>
<el-row>
<el-col :span="10">
<el-form-item prop="invWarehouseCode" label="当前仓库:">
<el-select
v-model="formData.invCode"
placeholder="当前仓库信息"
:disabled="list.length > 0"
@change="invChange"
style="width: 90%"
clearable
>
<el-option
v-for="item in invList"
:key="item.name"
:label="item.name"
:value="item.code"
>
<span style="float: left">{{ item.name }}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item class="query-form-item" label="当前货位:">
<el-autocomplete
v-model="formData.invSpaceName"
:fetch-suggestions="querySearchAsync"
placeholder="请输入内容"
ref="spaceInputRef"
:disabled="list.length > 0"
@select="handleSelect"
@keypress.enter.native="spaceEnterKey($event)"
@clear="clearFormData"
clearable
style="width: 90%"
></el-autocomplete>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="10">
<el-form-item class="query-form-item" label="变更后货位:">
<el-autocomplete
v-model="formData.changeSpaceName"
:fetch-suggestions="queryChangeSearchAsync"
placeholder="请输入内容"
ref="spaceChangeInputRef"
:disabled="list.length > 0"
@select="handleChangeSelect"
@keypress.enter.native="spaceChangeEnterKey($event)"
clearable
style="width: 90%"
></el-autocomplete>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="18">
<el-form-item class="query-form-item" label="扫码录入:">
<el-input
id="inputer"
@focus="getInputFocus($event)"
@keypress.enter.native="enterKey($event)"
ref="inputRef"
style="ime-mode: disabled"
type="tel"
v-model="formData.code"
></el-input>
</el-form-item>
</el-col>
<el-col :span="2">
<el-button
type="primary"
size="mini"
@click.native.stop="addCode()"
style="margin-left: 15px"
>添加
</el-button>
</el-col>
</el-row>
<el-table
v-loading="loading"
:data="list"
style="width: 100%; margin-top: 20px"
highlight-current-row
border
max-height="300"
height="300"
>
<el-table-column label="序号" type="index" width="50"></el-table-column>
<el-table-column
label="DI/物资编码"
prop="nameCode"
width="150"
></el-table-column>
<el-table-column
label="物资名称"
prop="productName"
width="150"
show-tooltip-when-overflow
></el-table-column>
<el-table-column
label="规格型号"
prop="ggxh"
width="150"
></el-table-column>
<el-table-column
label="批次号"
prop="batchNo"
width="150"
></el-table-column>
<el-table-column
label="序列号"
prop="serialNo"
width="150"
></el-table-column>
<el-table-column
label="计量单位"
prop="measname"
width="150"
></el-table-column>
<el-table-column
label="货位"
prop="invSpaceName"
width="150"
></el-table-column>
<el-table-column label="数量" prop="count" width="150"></el-table-column>
<el-table-column
label="注册备案号"
prop="zczbhhzbapzbh"
width="150"
show-tooltip-when-overflow
></el-table-column>
<el-table-column
label="生产厂家"
prop="manufactory"
width="150"
></el-table-column>
<el-table-column
label="供应商"
prop="supName"
width="150"
></el-table-column>
</el-table>
</el-form>
</template>
<script>
import { getInvListByUser } from "@/api/system/invWarehouse";
import { getInvSpaceList } from "@/api/inventory/invSpace";
import { isBlank } from "@/utils/strUtil";
import {
bindInvSpace,
getInvPlaceOrderDetailList,
getCheckInvProductInfo,
} from "@/api/inventory/invPlace";
export default {
props: {
closePlaceDialog: {
type: Function,
required: true,
},
},
name: "InvProductPlaceModify",
data() {
return {
formData: {
invCode: this.$store.getters.locInvCode,
invSpaceCode: null,
invSpaceName: null,
changeSpaceName: null,
changeSpaceCode: null,
code: null,
},
list: [],
orderId: null,
codeArray: [],
invList: [],
spaceList: [],
changeSpaceList: [],
loading: false,
spaceSearchResult: [],
spaceChangeSearchResult: [],
};
},
methods: {
saveData() {
if (isBlank(this.formData.invCode)) {
this.$message.error("请选择当前仓库");
return;
}
if (isBlank(this.formData.invSpaceCode)) {
this.$message.error("请选择当前货位");
return;
}
if (this.list.length === 0) {
this.$message.error("请录入需要上架的物资数据");
return;
}
this.$confirm("是否确认保存当前数据?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
let params = {
invCode: this.formData.invCode,
invSpaceCode: this.formData.invSpaceCode,
changeSpaceCode: this.formData.changeSpaceCode,
type: 3, //按物资上架
orderId: this.orderId,
};
bindInvSpace(params)
.then((res) => {
if (res.code === 20000) {
this.$message.success("变更成功");
this.clearFormData();
this.$nextTick(() => {
this.$refs.spaceInputRef.focus();
});
} else {
this.$message.error(res.message);
}
})
.catch((error) => {
this.$message.error(error.message);
});
})
.catch(() => {});
},
clearFormData() {
//清空表单数据
this.formData = {
invCode: this.$store.getters.locInvCode,
invSpaceCode: null,
invSpaceName: null,
code: null,
};
this.codeArray = [];
this.list = [];
this.orderId=null;
//光标切回货位框
this.$refs.spaceInputRef.focus();
},
invChange() {
this.formData.invSpaceCode = null;
this.formData.invSpaceName = null;
this.list.forEach((item) => {
item.invSpaceCode = null;
item.invSpaceName = null;
});
this.getSpaceList();
this.$nextTick(() => {
this.$refs.spaceInputRef.focus();
});
},
//查询当前货位
querySearchAsync(queryString, cb) {
let restaurants = this.spaceList;
restaurants.forEach((item) => {
item.value = item.name;
});
let results = queryString
? restaurants.filter(this.createStateFilter(queryString))
: restaurants;
if (!isBlank(queryString)) {
this.spaceSearchResult = results;
}
cb(results);
},
//查询变更后货位
queryChangeSearchAsync(queryString, cb) {
let restaurants = this.changeSpaceList;
restaurants.forEach((item) => {
item.value = item.name;
});
let results = queryString
? restaurants.filter(this.createStateFilter(queryString))
: restaurants;
if (!isBlank(queryString)) {
this.spaceChangeSearchResult = results;
}
cb(results);
},
createStateFilter(queryString) {
return (state) => {
const { value, code } = state;
return (
value === queryString.toLowerCase() ||
code === queryString.toLowerCase()
);
};
},
handleSelect(item) {
this.formData.invSpaceCode = item.code;
this.formData.invSpaceName = item.name;
this.list.forEach((invProduct) => {
invProduct.invSpaceCode = item.code;
invProduct.invSpaceName = item.name;
});
this.getChangeSpaceList();
},
handleChangeSelect(item) {
this.formData.changeSpaceCode = item.code;
this.formData.changeSpaceName = item.name;
this.list.forEach((invProduct) => {
invProduct.changeSpaceCode = item.code;
invProduct.changeSpaceName = item.name;
});
},
getInvList() {
getInvListByUser()
.then((response) => {
this.invList = response.data || [];
this.getSpaceList();
this.getList();
})
.catch(() => {});
},
getSpaceList() {
let params = {
invWarehouseCode: this.formData.invCode,
status: 1,
};
getInvSpaceList(params).then((res) => {
this.spaceList = res.data.list || [];
});
},
getChangeSpaceList() {
let params = {
invWarehouseCode: this.formData.invCode,
status: 1,
};
getInvSpaceList(params).then((res) => {
var list = [];
console.log(this.formData.invSpaceName);
for (var i = 0; i < res.data.list.length; i++) {
if (res.data.list[i].name != this.formData.invSpaceName) {
list.push(res.data.list[i]);
}
}
this.changeSpaceList = list || [];
});
},
addCode(event) {
if (event != null) {
event.target.select();
}
this.$refs.inputRef.select();
if (isBlank(this.formData.invCode)) {
this.$message.error("当前仓库不能为空");
return;
}
if (isBlank(this.formData.invSpaceCode)) {
this.$message.error("当前货位不能为空");
return;
}
if (isBlank(this.formData.changeSpaceName)) {
this.$message.error("变更后货位不能为空");
return;
}
this.formData.code = this.formData.code.trim();
if (this.$isBlank(this.formData.code)) return;
this.getInvProductInfo(this.formData.code);
this.$refs.inputRef.select();
},
getInvProductInfo(code) {
let params = {
orderId: this.orderId,
invCode: this.formData.invCode,
invSpaceCode: this.formData.invSpaceCode,
changeSpaceCode: this.formData.changeSpaceCode,
code: this.formData.code,
type: 3,
};
getCheckInvProductInfo(params).then((res) => {
if (res.code == 20000) {
this.orderId = res.data;
getInvPlaceOrderDetailList({ orderId: this.orderId }).then((res) => {
this.list = res.data.list;
});
} else {
this.$message.warning(res.message);
}
});
},
getInputFocus(event) {
event.currentTarget.select();
},
enterKey(event) {
this.checkSuccess = true;
this.addCode(event);
this.$refs.inputRef.focus();
this.$refs.inputRef.select();
},
spaceEnterKey(event) {
if (this.spaceSearchResult.length > 0) {
this.handleSelect(this.spaceSearchResult[0]);
this.$refs.spaceInputRef.close();
this.$refs.spaceChangeInputRef.focus();
this.$refs.spaceChangeInputRef.select();
} else {
event.target.select();
}
},
spaceChangeEnterKey(event) {
if (this.spaceChangeSearchResult.length > 0) {
this.handleChangeSelect(this.spaceChangeSearchResult[0]);
this.$refs.spaceChangeInputRef.close();
this.$refs.inputRef.focus();
this.$refs.inputRef.select();
} else {
event.target.select();
}
},
},
created() {
this.getInvList();
},
mounted() {
//默认获取上架货物光标
this.$refs.spaceInputRef.focus();
},
};
</script>
<style scoped></style>