设备代码-格式优化
parent
5309d502f6
commit
5bc949bd1b
@ -1,280 +1,358 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="primary"
|
||||
plain
|
||||
icon="el-icon-plus"
|
||||
size="mini"
|
||||
@click="handleSelectSparePartsLedger"
|
||||
v-hasPermi="['device:sparePartsApplicationRecord:add']"
|
||||
>新增</el-button>
|
||||
<ItemSelectSparePartsLedger ref="itemSelectSparePartsLedger" @onSelected="selectSparePartsLedger"></ItemSelectSparePartsLedger>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="danger"
|
||||
plain
|
||||
icon="el-icon-delete"
|
||||
size="mini"
|
||||
:disabled="multiple"
|
||||
@click="handleDelete"
|
||||
v-hasPermi="['device:sparePartsApplicationRecord:remove']"
|
||||
>删除</el-button>
|
||||
</el-col>
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
<div class="app-container">
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="primary"
|
||||
plain
|
||||
icon="el-icon-plus"
|
||||
size="mini"
|
||||
@click="handleSelectSparePartsLedger"
|
||||
v-hasPermi="['device:sparePartsApplicationRecord:add']"
|
||||
>新增</el-button
|
||||
>
|
||||
<ItemSelectSparePartsLedger
|
||||
ref="itemSelectSparePartsLedger"
|
||||
@onSelected="selectSparePartsLedger"
|
||||
></ItemSelectSparePartsLedger>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="danger"
|
||||
plain
|
||||
icon="el-icon-delete"
|
||||
size="mini"
|
||||
:disabled="multiple"
|
||||
@click="handleDelete"
|
||||
v-hasPermi="['device:sparePartsApplicationRecord:remove']"
|
||||
>删除</el-button
|
||||
>
|
||||
</el-col>
|
||||
<right-toolbar
|
||||
:showSearch.sync="showSearch"
|
||||
@queryTable="getList"
|
||||
></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="sparePartsApplicationRecordList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<!-- 序号 -->
|
||||
<el-table-column type="index" width="90" align="center" :index="indexMethod" label="序号" fixed/>
|
||||
<el-table-column label="维修单号" align="center" prop="workCode" width="200" fixed/>
|
||||
<el-table-column label="使用设备" align="center" prop="spareUseEquipment" />
|
||||
<el-table-column label="备品备件编码" align="center" prop="spareCode" width="120"/>
|
||||
<el-table-column label="备品备件名称" align="center" prop="spareName" width="120"/>
|
||||
<el-table-column label="规格型号" align="center" prop="spareModel" width="150"/>
|
||||
<el-table-column label="数量" align="center" prop="spareQuantity" />
|
||||
<el-table-column label="领用时间" align="center" prop="applyTime" width="180">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.applyTime) }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="申领人" align="center" prop="applyPeople" width="80"/>
|
||||
<el-table-column label="批准人" align="center" prop="applyApprovePeople" width="80"/>
|
||||
</el-table>
|
||||
<el-table
|
||||
v-loading="loading"
|
||||
:data="sparePartsApplicationRecordList"
|
||||
@selection-change="handleSelectionChange"
|
||||
>
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<!-- 序号 -->
|
||||
<el-table-column
|
||||
type="index"
|
||||
width="90"
|
||||
align="center"
|
||||
:index="indexMethod"
|
||||
label="序号"
|
||||
fixed
|
||||
/>
|
||||
<el-table-column
|
||||
label="维修单号"
|
||||
align="center"
|
||||
prop="workCode"
|
||||
width="200"
|
||||
fixed
|
||||
/>
|
||||
<el-table-column
|
||||
label="使用设备"
|
||||
align="center"
|
||||
prop="spareUseEquipment"
|
||||
/>
|
||||
<el-table-column
|
||||
label="备品备件编码"
|
||||
align="center"
|
||||
prop="spareCode"
|
||||
width="120"
|
||||
/>
|
||||
<el-table-column
|
||||
label="备品备件名称"
|
||||
align="center"
|
||||
prop="spareName"
|
||||
width="120"
|
||||
/>
|
||||
<el-table-column
|
||||
label="规格型号"
|
||||
align="center"
|
||||
prop="spareModel"
|
||||
width="150"
|
||||
/>
|
||||
<el-table-column label="数量" align="center" prop="spareQuantity" />
|
||||
<el-table-column
|
||||
label="领用时间"
|
||||
align="center"
|
||||
prop="applyTime"
|
||||
width="180"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.applyTime) }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
label="申领人"
|
||||
align="center"
|
||||
prop="applyPeople"
|
||||
width="80"
|
||||
/>
|
||||
<el-table-column
|
||||
label="批准人"
|
||||
align="center"
|
||||
prop="applyApprovePeople"
|
||||
width="80"
|
||||
/>
|
||||
</el-table>
|
||||
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
<pagination
|
||||
v-show="total > 0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
|
||||
<!-- 添加或修改申领记录对话框 -->
|
||||
<el-dialog :title="title" :visible.sync="open" width="1000px" append-to-body>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</div>
|
||||
<!-- 添加或修改申领记录对话框 -->
|
||||
<el-dialog
|
||||
:title="title"
|
||||
:visible.sync="open"
|
||||
width="1000px"
|
||||
append-to-body
|
||||
>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { listSparePartsApplicationRecord, getSparePartsApplicationRecord, delSparePartsApplicationRecord, addSparePartsApplicationRecord, updateSparePartsApplicationRecord , listRepairSparePartsRecord } from "@/api/device/sparePartsApplicationRecord";
|
||||
import {
|
||||
listSparePartsApplicationRecord,
|
||||
getSparePartsApplicationRecord,
|
||||
delSparePartsApplicationRecord,
|
||||
addSparePartsApplicationRecord,
|
||||
updateSparePartsApplicationRecord,
|
||||
listRepairSparePartsRecord,
|
||||
} from "@/api/device/sparePartsApplicationRecord";
|
||||
import ItemSelectSparePartsLedger from "./selectSparePartsLedger.vue";
|
||||
|
||||
export default {
|
||||
name: "SelectSpareParts",
|
||||
components: { ItemSelectSparePartsLedger },
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 申领记录表格数据
|
||||
sparePartsApplicationRecordList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
workCode: this.workCode,
|
||||
equipmentCode: this.equipmentCode,
|
||||
applyType: null,
|
||||
applyCode: null,
|
||||
spareCode: null,
|
||||
spareName: null,
|
||||
spareModel: null,
|
||||
spareQuantity: null,
|
||||
spareGroupLine: null,
|
||||
spareUseEquipment: null,
|
||||
applyTime: null,
|
||||
applyPeople: null,
|
||||
applyApprovePeople: null,
|
||||
attr1: null,
|
||||
attr2: null,
|
||||
attr3: null,
|
||||
factoryCode: null
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
},
|
||||
componentKey:0
|
||||
};
|
||||
},
|
||||
name: "SelectSpareParts",
|
||||
components: { ItemSelectSparePartsLedger },
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 申领记录表格数据
|
||||
sparePartsApplicationRecordList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
workCode: this.workCode,
|
||||
equipmentCode: this.equipmentCode,
|
||||
applyType: null,
|
||||
applyCode: null,
|
||||
spareCode: null,
|
||||
spareName: null,
|
||||
spareModel: null,
|
||||
spareQuantity: null,
|
||||
spareGroupLine: null,
|
||||
spareUseEquipment: null,
|
||||
applyTime: null,
|
||||
applyPeople: null,
|
||||
applyApprovePeople: null,
|
||||
attr1: null,
|
||||
attr2: null,
|
||||
attr3: null,
|
||||
factoryCode: null,
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {},
|
||||
componentKey: 0,
|
||||
};
|
||||
},
|
||||
props: {
|
||||
equipmentCode: undefined,
|
||||
workCode: undefined,
|
||||
optType: undefined,
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
//设备选择弹出框
|
||||
handleSelectSparePartsLedger() {
|
||||
this.$forceUpdate();
|
||||
this.$refs.itemSelectSparePartsLedger.showFlag = true;
|
||||
},
|
||||
// 生成表头序号
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
//设备选择弹出框
|
||||
handleSelectSparePartsLedger() {
|
||||
this.$forceUpdate();
|
||||
this.$refs.itemSelectSparePartsLedger.showFlag = true;
|
||||
},
|
||||
// 生成表头序号
|
||||
indexMethod(index) {
|
||||
return index + 1;
|
||||
},
|
||||
/** 查询申领记录列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listRepairSparePartsRecord(this.queryParams).then(response => {
|
||||
this.sparePartsApplicationRecordList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
workCode: this.workCode,
|
||||
equipmentCode: this.equipmentCode,
|
||||
applyType: null,
|
||||
applyId: null,
|
||||
applyCode: null,
|
||||
spareCode: null,
|
||||
spareName: null,
|
||||
spareModel: null,
|
||||
spareQuantity: null,
|
||||
spareGroupLine: null,
|
||||
spareUseEquipment: null,
|
||||
applyTime: null,
|
||||
applyPeople: null,
|
||||
applyApprovePeople: null,
|
||||
attr1: null,
|
||||
attr2: null,
|
||||
attr3: null,
|
||||
delFlag: null,
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
updateTime: null,
|
||||
factoryCode: null,
|
||||
spareApplyLists : []
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map(item => item.applyId)
|
||||
this.single = selection.length!==1
|
||||
this.multiple = !selection.length
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加申领记录";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
const applyId = row.applyId || this.ids
|
||||
getSparePartsApplicationRecord(applyId).then(response => {
|
||||
this.form = response.data;
|
||||
this.open = true;
|
||||
this.title = "修改申领记录";
|
||||
});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
if (this.form.applyId != null) {
|
||||
updateSparePartsApplicationRecord(this.form).then(response => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addSparePartsApplicationRecord(this.form).then(response => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 查询申领记录列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listRepairSparePartsRecord(this.queryParams).then((response) => {
|
||||
this.sparePartsApplicationRecordList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
workCode: this.workCode,
|
||||
equipmentCode: this.equipmentCode,
|
||||
applyType: null,
|
||||
applyId: null,
|
||||
applyCode: null,
|
||||
spareCode: null,
|
||||
spareName: null,
|
||||
spareModel: null,
|
||||
spareQuantity: null,
|
||||
spareGroupLine: null,
|
||||
spareUseEquipment: null,
|
||||
applyTime: null,
|
||||
applyPeople: null,
|
||||
applyApprovePeople: null,
|
||||
attr1: null,
|
||||
attr2: null,
|
||||
attr3: null,
|
||||
delFlag: null,
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
updateTime: null,
|
||||
factoryCode: null,
|
||||
spareApplyLists: [],
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map((item) => item.applyId);
|
||||
this.single = selection.length !== 1;
|
||||
this.multiple = !selection.length;
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加申领记录";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
const applyId = row.applyId || this.ids;
|
||||
getSparePartsApplicationRecord(applyId).then((response) => {
|
||||
this.form = response.data;
|
||||
this.open = true;
|
||||
this.title = "修改申领记录";
|
||||
});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate((valid) => {
|
||||
if (valid) {
|
||||
if (this.form.applyId != null) {
|
||||
updateSparePartsApplicationRecord(this.form).then((response) => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addSparePartsApplicationRecord(this.form).then((response) => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
//接收参数
|
||||
selectSparePartsLedger(obj){
|
||||
console.log("接收参数",obj);
|
||||
selectSparePartsLedger(obj) {
|
||||
console.log("接收参数", obj);
|
||||
//备件编号、备件名称、备件规格型号、备件使用设备、备件申请数量、备件关联工单号
|
||||
var spareApplyLists = [];
|
||||
obj.forEach(item => {
|
||||
obj.forEach((item) => {
|
||||
var spareApplyList = {};
|
||||
spareApplyList.spareCode = item.materialCode;
|
||||
spareApplyList.spareName = item.materialDesc;
|
||||
spareApplyList.spareModel = item.spareMode;
|
||||
spareApplyList.spareUseEquipment = this.queryParams.equipmentCode;
|
||||
spareApplyList.spareQuantity = item.spareQuantity;
|
||||
spareApplyList.workCode = this.queryParams.workCode;
|
||||
spareApplyList.storageId = item.storageId;
|
||||
spareApplyList.amount = item.amount;
|
||||
spareApplyLists.push(spareApplyList);
|
||||
spareApplyList.spareCode = item.materialCode;
|
||||
spareApplyList.spareName = item.materialDesc;
|
||||
spareApplyList.spareModel = item.spareMode;
|
||||
spareApplyList.spareUseEquipment = this.queryParams.equipmentCode;
|
||||
spareApplyList.spareQuantity = item.spareQuantity;
|
||||
spareApplyList.workCode = this.queryParams.workCode;
|
||||
spareApplyList.storageId = item.storageId;
|
||||
spareApplyList.amount = item.amount;
|
||||
spareApplyLists.push(spareApplyList);
|
||||
});
|
||||
this.form.spareApplyLists = spareApplyLists;
|
||||
addSparePartsApplicationRecord(this.form).then(response => {
|
||||
this.open = false;
|
||||
this.getList();
|
||||
addSparePartsApplicationRecord(this.form).then((response) => {
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const applyIds = row.applyId || this.ids;
|
||||
this.$modal.confirm('是否确认删除申领记录编号为"' + applyIds + '"的数据项?').then(function() {
|
||||
return delSparePartsApplicationRecord(applyIds);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('device/sparePartsApplicationRecord/export', {
|
||||
...this.queryParams
|
||||
}, `sparePartsApplicationRecord_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
}
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const applyIds = row.applyId || this.ids;
|
||||
this.$modal
|
||||
.confirm('是否确认删除申领记录编号为"' + applyIds + '"的数据项?')
|
||||
.then(function () {
|
||||
return delSparePartsApplicationRecord(applyIds);
|
||||
})
|
||||
.then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
})
|
||||
.catch(() => {});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download(
|
||||
"device/sparePartsApplicationRecord/export",
|
||||
{
|
||||
...this.queryParams,
|
||||
},
|
||||
`sparePartsApplicationRecord_${new Date().getTime()}.xlsx`
|
||||
);
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
@ -1,275 +1,358 @@
|
||||
<template>
|
||||
<el-dialog title="备品备件选择"
|
||||
<el-dialog
|
||||
title="备品备件选择"
|
||||
v-if="showFlag"
|
||||
:visible.sync="showFlag"
|
||||
:modal= false
|
||||
:modal="false"
|
||||
width="1100px"
|
||||
center
|
||||
:before-close="cancel"
|
||||
>
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="98px">
|
||||
<el-form-item label="备品备件号" prop="materialCode">
|
||||
<el-input
|
||||
v-model="queryParams.materialCode"
|
||||
placeholder="请输入备品备件号"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
style="width:150px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="备件类型" prop="spareType">
|
||||
<el-select v-model="queryParams.spareType" placeholder="请选择备件类型" @keyup.enter.native="handleQuery" @change="$forceUpdate()" clearable style="width:150px">
|
||||
<el-option v-for="item in options" :key="item.spareType" :label="item.label" :value="item.spareType"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||
</el-form-item>
|
||||
<el-form
|
||||
:model="queryParams"
|
||||
ref="queryForm"
|
||||
size="small"
|
||||
:inline="true"
|
||||
v-show="showSearch"
|
||||
label-width="98px"
|
||||
>
|
||||
<el-form-item label="备品备件号" prop="materialCode">
|
||||
<el-input
|
||||
v-model="queryParams.materialCode"
|
||||
placeholder="请输入备品备件号"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
style="width: 150px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="备件类型" prop="spareType">
|
||||
<el-select
|
||||
v-model="queryParams.spareType"
|
||||
placeholder="请选择备件类型"
|
||||
@keyup.enter.native="handleQuery"
|
||||
@change="$forceUpdate()"
|
||||
clearable
|
||||
style="width: 150px"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in options"
|
||||
:key="item.spareType"
|
||||
:label="item.label"
|
||||
:value="item.spareType"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button
|
||||
type="primary"
|
||||
icon="el-icon-search"
|
||||
size="mini"
|
||||
@click="handleQuery"
|
||||
>搜索</el-button
|
||||
>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
|
||||
>重置</el-button
|
||||
>
|
||||
</el-form-item>
|
||||
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<right-toolbar
|
||||
:showSearch.sync="showSearch"
|
||||
@queryTable="getList"
|
||||
></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
<el-table
|
||||
v-loading="loading"
|
||||
:data="sparePartsLedgerList"
|
||||
@selection-change="handleSelectionChange"
|
||||
ref="multipleTable"
|
||||
>
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<!-- 序号 -->
|
||||
<el-table-column
|
||||
type="index"
|
||||
width="90"
|
||||
align="center"
|
||||
:index="indexMethod"
|
||||
label="序号"
|
||||
/>
|
||||
<el-table-column
|
||||
label="备品备件号"
|
||||
align="center"
|
||||
prop="materialCode"
|
||||
width="120"
|
||||
/>
|
||||
<el-table-column
|
||||
label="备品备件描述"
|
||||
align="center"
|
||||
prop="materialDesc"
|
||||
width="120"
|
||||
/>
|
||||
<el-table-column
|
||||
label="备品备件类型"
|
||||
align="center"
|
||||
prop="spareType"
|
||||
width="120"
|
||||
/>
|
||||
<el-table-column label="规格型号" align="center" prop="spareMode" />
|
||||
<el-table-column label="库存总数量" align="center" prop="amount" />
|
||||
<el-table-column
|
||||
label="库存冻结数量"
|
||||
align="center"
|
||||
prop="storageAmount"
|
||||
/>
|
||||
<el-table-column
|
||||
label="库存可用数量"
|
||||
align="center"
|
||||
prop="availableQuantity"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<span>{{ scope.row.amount - scope.row.storageAmount }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="领用数量" align="center" prop="spareQuantity">
|
||||
<template slot-scope="scope">
|
||||
<el-input
|
||||
size="small"
|
||||
v-model="scope.row.spareQuantity"
|
||||
@change="handleEdit(scope.$index, scope.row)"
|
||||
></el-input>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<el-table v-loading="loading" :data="sparePartsLedgerList" @selection-change="handleSelectionChange" ref="multipleTable" >
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<!-- 序号 -->
|
||||
<el-table-column type="index" width="90" align="center" :index="indexMethod" label="序号"/>
|
||||
<el-table-column label="备品备件号" align="center" prop="materialCode" width="120"/>
|
||||
<el-table-column label="备品备件描述" align="center" prop="materialDesc" width="120"/>
|
||||
<el-table-column label="备品备件类型" align="center" prop="spareType" width="120"/>
|
||||
<el-table-column label="规格型号" align="center" prop="spareMode" />
|
||||
<el-table-column label="库存总数量" align="center" prop="amount" />
|
||||
<el-table-column label="库存冻结数量" align="center" prop="storageAmount" />
|
||||
<el-table-column label="库存可用数量" align="center" prop="availableQuantity" >
|
||||
<template slot-scope="scope">
|
||||
<span>{{ scope.row.amount-scope.row.storageAmount}}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="领用数量" align="center" prop="spareQuantity">
|
||||
<template slot-scope="scope">
|
||||
<el-input size="small" v-model="scope.row.spareQuantity" @change="handleEdit(scope.$index,scope.row)"></el-input>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
</el-form>
|
||||
<pagination
|
||||
v-show="total > 0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="submitForm" :disabled="multiple">确 定</el-button>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
<el-button type="primary" @click="submitForm" :disabled="multiple"
|
||||
>确 定</el-button
|
||||
>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { listSparePartsLedger, getSparePartsLedger, delSparePartsLedger, addSparePartsLedger, updateSparePartsLedger } from "@/api/device/sparePartsLedger";
|
||||
<script>
|
||||
import {
|
||||
listSparePartsLedger,
|
||||
getSparePartsLedger,
|
||||
delSparePartsLedger,
|
||||
addSparePartsLedger,
|
||||
updateSparePartsLedger,
|
||||
} from "@/api/device/sparePartsLedger";
|
||||
import { Message } from "element-ui";
|
||||
|
||||
export default {
|
||||
name: "SparePartsLedger",
|
||||
data() {
|
||||
return {
|
||||
//展示
|
||||
showFlag:false,
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 备品备件台账管理表格数据
|
||||
sparePartsLedgerList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
storageId: null,
|
||||
whCode: null,
|
||||
regionCode: null,
|
||||
waCode: null,
|
||||
storageType: null,
|
||||
wlCode: null,
|
||||
materialCode: null,
|
||||
materialDesc: null,
|
||||
amount: null,
|
||||
storageAmount: null,
|
||||
occupyAmount: null,
|
||||
lpn: null,
|
||||
productBatch: null,
|
||||
receiveDate: null,
|
||||
productDate: null,
|
||||
userDefined1: null,
|
||||
userDefined2: null,
|
||||
userDefined3: null,
|
||||
userDefined4: null,
|
||||
userDefined5: null,
|
||||
userDefined6: null,
|
||||
userDefined7: null,
|
||||
userDefined8: null,
|
||||
userDefined9: null,
|
||||
userDefined10: null,
|
||||
gmtCreate: null,
|
||||
lastModifiedBy: null,
|
||||
gmtModified: null,
|
||||
activeFlag: null,
|
||||
factoryCode: null,
|
||||
sapFactoryCode: null,
|
||||
wlName: null,
|
||||
spareUseLife: null,
|
||||
spareName: null,
|
||||
spareMode: null,
|
||||
spareManufacturer: null,
|
||||
spareSupplier: null,
|
||||
spareReplacementCycle: null,
|
||||
spareMeasurementUnit: null,
|
||||
spareConversionUnit: null,
|
||||
spareConversionRatio: null,
|
||||
spareInventoryFloor: null,
|
||||
spareInventoryUpper: null
|
||||
},
|
||||
options: [{
|
||||
spareType: "专用",
|
||||
label: '专用'
|
||||
}, {
|
||||
spareType: "通用",
|
||||
label: '通用'
|
||||
}],
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
storageId: [
|
||||
{ required: true, message: "唯一序列不能为空", trigger: "blur" }
|
||||
],
|
||||
}
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
name: "SparePartsLedger",
|
||||
data() {
|
||||
return {
|
||||
//展示
|
||||
showFlag: false,
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 备品备件台账管理表格数据
|
||||
sparePartsLedgerList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
storageId: null,
|
||||
whCode: null,
|
||||
regionCode: null,
|
||||
waCode: null,
|
||||
storageType: null,
|
||||
wlCode: null,
|
||||
materialCode: null,
|
||||
materialDesc: null,
|
||||
amount: null,
|
||||
storageAmount: null,
|
||||
occupyAmount: null,
|
||||
lpn: null,
|
||||
productBatch: null,
|
||||
receiveDate: null,
|
||||
productDate: null,
|
||||
userDefined1: null,
|
||||
userDefined2: null,
|
||||
userDefined3: null,
|
||||
userDefined4: null,
|
||||
userDefined5: null,
|
||||
userDefined6: null,
|
||||
userDefined7: null,
|
||||
userDefined8: null,
|
||||
userDefined9: null,
|
||||
userDefined10: null,
|
||||
gmtCreate: null,
|
||||
lastModifiedBy: null,
|
||||
gmtModified: null,
|
||||
activeFlag: null,
|
||||
factoryCode: null,
|
||||
sapFactoryCode: null,
|
||||
wlName: null,
|
||||
spareUseLife: null,
|
||||
spareName: null,
|
||||
spareMode: null,
|
||||
spareManufacturer: null,
|
||||
spareSupplier: null,
|
||||
spareReplacementCycle: null,
|
||||
spareMeasurementUnit: null,
|
||||
spareConversionUnit: null,
|
||||
spareConversionRatio: null,
|
||||
spareInventoryFloor: null,
|
||||
spareInventoryUpper: null,
|
||||
},
|
||||
options: [
|
||||
{
|
||||
spareType: "专用",
|
||||
label: "专用",
|
||||
},
|
||||
{
|
||||
spareType: "通用",
|
||||
label: "通用",
|
||||
},
|
||||
],
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
storageId: [
|
||||
{ required: true, message: "唯一序列不能为空", trigger: "blur" },
|
||||
],
|
||||
},
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
handleEdit(index, row) {
|
||||
console.log('row:',index, row);
|
||||
console.log("row:", index, row);
|
||||
},
|
||||
// 生成表头序号
|
||||
// 生成表头序号
|
||||
indexMethod(index) {
|
||||
return index + 1;
|
||||
},
|
||||
/** 查询备品备件台账管理列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listSparePartsLedger(this.queryParams).then(response => {
|
||||
this.sparePartsLedgerList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.showFlag = false;
|
||||
this.reset();
|
||||
this.getList();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
storageId: null,
|
||||
whCode: null,
|
||||
regionCode: null,
|
||||
waCode: null,
|
||||
storageType: null,
|
||||
wlCode: null,
|
||||
materialCode: null,
|
||||
materialDesc: null,
|
||||
amount: null,
|
||||
storageAmount: null,
|
||||
occupyAmount: null,
|
||||
lpn: null,
|
||||
productBatch: null,
|
||||
receiveDate: null,
|
||||
productDate: null,
|
||||
userDefined1: null,
|
||||
userDefined2: null,
|
||||
userDefined3: null,
|
||||
userDefined4: null,
|
||||
userDefined5: null,
|
||||
userDefined6: null,
|
||||
userDefined7: null,
|
||||
userDefined8: null,
|
||||
userDefined9: null,
|
||||
userDefined10: null,
|
||||
createBy: null,
|
||||
gmtCreate: null,
|
||||
lastModifiedBy: null,
|
||||
gmtModified: null,
|
||||
activeFlag: null,
|
||||
factoryCode: null,
|
||||
sapFactoryCode: null,
|
||||
wlName: null,
|
||||
delFlag: null,
|
||||
spareUseLife: null,
|
||||
spareName: null,
|
||||
spareMode: null,
|
||||
spareManufacturer: null,
|
||||
spareSupplier: null,
|
||||
spareReplacementCycle: null,
|
||||
spareMeasurementUnit: null,
|
||||
spareConversionUnit: null,
|
||||
spareConversionRatio: null,
|
||||
spareInventoryFloor: null,
|
||||
spareInventoryUpper: null
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map(item => item.storageId);
|
||||
this.codes = selection.map(item => item.materialCode);
|
||||
this.single = selection.length!==1
|
||||
this.multiple = !selection.length
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm(){
|
||||
console.log('data:',this.sparePartsLedgerList);
|
||||
console.log("选择的数据",this.$refs.multipleTable.selection);
|
||||
this.$refs.multipleTable.selection.forEach(item => {
|
||||
if(item.spareQuantity >(item.amount - item.storageAmount)){
|
||||
Message.warning('备件编码"' + item.materialCode + '"的申领数量大于可用数量,请重新填写!');
|
||||
this.$refs.multipleTable.clearSelection();
|
||||
}
|
||||
/** 查询备品备件台账管理列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listSparePartsLedger(this.queryParams).then((response) => {
|
||||
this.sparePartsLedgerList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.showFlag = false;
|
||||
this.reset();
|
||||
this.getList();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
storageId: null,
|
||||
whCode: null,
|
||||
regionCode: null,
|
||||
waCode: null,
|
||||
storageType: null,
|
||||
wlCode: null,
|
||||
materialCode: null,
|
||||
materialDesc: null,
|
||||
amount: null,
|
||||
storageAmount: null,
|
||||
occupyAmount: null,
|
||||
lpn: null,
|
||||
productBatch: null,
|
||||
receiveDate: null,
|
||||
productDate: null,
|
||||
userDefined1: null,
|
||||
userDefined2: null,
|
||||
userDefined3: null,
|
||||
userDefined4: null,
|
||||
userDefined5: null,
|
||||
userDefined6: null,
|
||||
userDefined7: null,
|
||||
userDefined8: null,
|
||||
userDefined9: null,
|
||||
userDefined10: null,
|
||||
createBy: null,
|
||||
gmtCreate: null,
|
||||
lastModifiedBy: null,
|
||||
gmtModified: null,
|
||||
activeFlag: null,
|
||||
factoryCode: null,
|
||||
sapFactoryCode: null,
|
||||
wlName: null,
|
||||
delFlag: null,
|
||||
spareUseLife: null,
|
||||
spareName: null,
|
||||
spareMode: null,
|
||||
spareManufacturer: null,
|
||||
spareSupplier: null,
|
||||
spareReplacementCycle: null,
|
||||
spareMeasurementUnit: null,
|
||||
spareConversionUnit: null,
|
||||
spareConversionRatio: null,
|
||||
spareInventoryFloor: null,
|
||||
spareInventoryUpper: null,
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map((item) => item.storageId);
|
||||
this.codes = selection.map((item) => item.materialCode);
|
||||
this.single = selection.length !== 1;
|
||||
this.multiple = !selection.length;
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
console.log("data:", this.sparePartsLedgerList);
|
||||
console.log("选择的数据", this.$refs.multipleTable.selection);
|
||||
this.$refs.multipleTable.selection.forEach((item) => {
|
||||
if (item.spareQuantity > item.amount - item.storageAmount) {
|
||||
Message.warning(
|
||||
'备件编码"' +
|
||||
item.materialCode +
|
||||
'"的申领数量大于可用数量,请重新填写!'
|
||||
);
|
||||
this.$refs.multipleTable.clearSelection();
|
||||
}
|
||||
});
|
||||
this.$emit('onSelected',this.$refs.multipleTable.selection);
|
||||
this.$emit("onSelected", this.$refs.multipleTable.selection);
|
||||
this.showFlag = false;
|
||||
this.getList();
|
||||
},
|
||||
}
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue