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