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.
343 lines
9.7 KiB
Vue
343 lines
9.7 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="108px">
|
|
<el-form-item label="物料BOM名称" prop="bomItemDesc">
|
|
<el-input
|
|
v-model="queryParams.bomItemDesc"
|
|
placeholder="请输入物料BOM名称"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</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>
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="primary"
|
|
plain
|
|
icon="el-icon-plus"
|
|
size="mini"
|
|
@click="handleAdd"
|
|
v-hasPermi="['wms:bom:add']"
|
|
>新增</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="info"
|
|
plain
|
|
icon="el-icon-sort"
|
|
size="mini"
|
|
@click="toggleExpandAll"
|
|
>展开/折叠</el-button>
|
|
</el-col>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table
|
|
v-if="refreshTable"
|
|
v-loading="loading"
|
|
:data="bomList"
|
|
row-key="bomItemId"
|
|
:default-expand-all="isExpandAll"
|
|
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
|
|
>
|
|
<el-table-column label="物料BOM名称" prop="bomItemDesc" />
|
|
<el-table-column label="物料BOM编码" prop="" />
|
|
<el-table-column label="物料类别" prop="" />
|
|
<el-table-column label="创建人" prop="createBy" />
|
|
<el-table-column label="创建时间" prop="createTime" />
|
|
<el-table-column prop="Active" label="是否启用" align="center">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.Active == 1 ? "是" : "否" }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-edit"
|
|
@click="handleUpdate(scope.row)"
|
|
v-hasPermi="['wms:bom:edit']"
|
|
>修改</el-button>
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-plus"
|
|
@click="handleAdd(scope.row)"
|
|
v-hasPermi="['wms:bom:add']"
|
|
>新增</el-button>
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-delete"
|
|
@click="handleDelete(scope.row)"
|
|
v-hasPermi="['wms:bom:remove']"
|
|
>删除</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<!-- 添加或修改物料BOM管理对话框 -->
|
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="110px">
|
|
<el-form-item label="物料BOM名称" prop="bomItemDesc">
|
|
<el-input v-model="form.bomItemDesc" placeholder="请输入物料BOM名称" />
|
|
</el-form-item>
|
|
<el-form-item label="BOM配方主键" prop="bomFormulationId">
|
|
<treeselect v-model="form.bomFormulationId" :options="bomOptions" :normalizer="normalizer" placeholder="请选择BOM配方主键" />
|
|
</el-form-item>
|
|
<el-form-item label="数量" prop="Quantity">
|
|
<el-input v-model="form.Quantity" placeholder="请输入数量" />
|
|
</el-form-item>
|
|
<el-form-item label="精度" prop="Precision">
|
|
<el-input v-model="form.Precision" placeholder="请输入精度" />
|
|
</el-form-item>
|
|
<el-form-item label="计量单位主键" prop="euId">
|
|
<el-input v-model="form.euId" placeholder="请输入计量单位主键" />
|
|
</el-form-item>
|
|
<el-form-item label="最低偏差" prop="lowerTolerance">
|
|
<el-input v-model="form.lowerTolerance" placeholder="请输入最低偏差" />
|
|
</el-form-item>
|
|
<el-form-item label="最低偏差精度" prop="lowerTolerancePrecision">
|
|
<el-input v-model="form.lowerTolerancePrecision" placeholder="请输入最低偏差精度" />
|
|
</el-form-item>
|
|
<el-form-item label="最高偏差" prop="upperTolerance">
|
|
<el-input v-model="form.upperTolerance" placeholder="请输入最高偏差" />
|
|
</el-form-item>
|
|
<el-form-item label="最高偏差精度" prop="upperTolerancePrecision">
|
|
<el-input v-model="form.upperTolerancePrecision" placeholder="请输入最高偏差精度" />
|
|
</el-form-item>
|
|
<el-form-item label="是否启用" prop="Active">
|
|
<el-select v-model="form.Active" placeholder="请选择是否启用" @change="$forceUpdate()" clearable>
|
|
<el-option v-for="item in options" :key="item.Active" :label="item.label" :value="item.Active"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="采购类型" prop="BESKZ">
|
|
<el-input v-model="form.BESKZ" placeholder="请输入采购类型" />
|
|
</el-form-item>
|
|
<el-form-item label="特殊采购类型" prop="SOBSL">
|
|
<el-input v-model="form.SOBSL" placeholder="请输入特殊采购类型" />
|
|
</el-form-item>
|
|
</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 { listBom, getBom, delBom, addBom, updateBom } from "@/api/wms/bom";
|
|
import Treeselect from "@riophae/vue-treeselect";
|
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
|
|
export default {
|
|
name: "Bom",
|
|
components: {
|
|
Treeselect
|
|
},
|
|
data() {
|
|
return {
|
|
// 遮罩层
|
|
loading: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 物料BOM管理表格数据
|
|
bomList: [],
|
|
// 物料BOM管理树选项
|
|
bomOptions: [],
|
|
// 弹出层标题
|
|
title: "",
|
|
// 是否显示弹出层
|
|
open: false,
|
|
// 是否展开,默认全部展开
|
|
isExpandAll: true,
|
|
// 重新渲染表格状态
|
|
refreshTable: true,
|
|
// 查询参数
|
|
queryParams: {
|
|
bomItemDesc: null,
|
|
bomFormulationOrder: null,
|
|
bomFormulationId: null,
|
|
prodId: null,
|
|
Quantity: null,
|
|
Precision: null,
|
|
euId: null,
|
|
lowerTolerance: null,
|
|
lowerTolerancePrecision: null,
|
|
upperTolerance: null,
|
|
upperTolerancePrecision: null,
|
|
Active: null,
|
|
siteId: null,
|
|
siteCode: null,
|
|
enterpriseId: null,
|
|
enterpriseCode: null,
|
|
FactoryNo: null,
|
|
BESKZ: null,
|
|
SOBSL: null,
|
|
STUFE: null
|
|
},
|
|
options: [{
|
|
Active: "1",
|
|
label: '是'
|
|
}, {
|
|
Active: "0",
|
|
label: '否'
|
|
}],
|
|
// 表单参数
|
|
form: {},
|
|
// 表单校验
|
|
rules: {
|
|
}
|
|
};
|
|
},
|
|
created() {
|
|
this.getList();
|
|
},
|
|
methods: {
|
|
/** 查询物料BOM管理列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
listBom(this.queryParams).then(response => {
|
|
this.bomList = this.handleTree(response.data, "bomItemId", "bomFormulationId");
|
|
this.loading = false;
|
|
});
|
|
},
|
|
/** 转换物料BOM管理数据结构 */
|
|
normalizer(node) {
|
|
if (node.children && !node.children.length) {
|
|
delete node.children;
|
|
}
|
|
return {
|
|
id: node.bomItemId,
|
|
label: node.bomItemDesc,
|
|
children: node.children
|
|
};
|
|
},
|
|
/** 查询物料BOM管理下拉树结构 */
|
|
getTreeselect() {
|
|
listBom().then(response => {
|
|
this.bomOptions = [];
|
|
const data = { bomItemId: 0, bomItemDesc: '顶级节点', children: [] };
|
|
data.children = this.handleTree(response.data, "bomItemId", "bomFormulationId");
|
|
this.bomOptions.push(data);
|
|
});
|
|
},
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false;
|
|
this.reset();
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
bomItemId: null,
|
|
bomItemDesc: null,
|
|
bomFormulationOrder: null,
|
|
bomFormulationId: null,
|
|
prodId: null,
|
|
Quantity: null,
|
|
Precision: null,
|
|
euId: null,
|
|
lowerTolerance: null,
|
|
lowerTolerancePrecision: null,
|
|
upperTolerance: null,
|
|
upperTolerancePrecision: null,
|
|
createBy: null,
|
|
createTime: null,
|
|
updateBy: null,
|
|
updateTime: null,
|
|
Active: null,
|
|
siteId: null,
|
|
siteCode: null,
|
|
enterpriseId: null,
|
|
enterpriseCode: null,
|
|
FactoryNo: null,
|
|
BESKZ: null,
|
|
SOBSL: null,
|
|
STUFE: null
|
|
};
|
|
this.resetForm("form");
|
|
},
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.getList();
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.resetForm("queryForm");
|
|
this.handleQuery();
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd(row) {
|
|
this.reset();
|
|
this.getTreeselect();
|
|
if (row != null && row.bomItemId) {
|
|
this.form.bomFormulationId = row.bomItemId;
|
|
} else {
|
|
this.form.bomFormulationId = 0;
|
|
}
|
|
this.open = true;
|
|
this.title = "添加物料BOM管理";
|
|
},
|
|
/** 展开/折叠操作 */
|
|
toggleExpandAll() {
|
|
this.refreshTable = false;
|
|
this.isExpandAll = !this.isExpandAll;
|
|
this.$nextTick(() => {
|
|
this.refreshTable = true;
|
|
});
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.reset();
|
|
this.getTreeselect();
|
|
if (row != null) {
|
|
this.form.bomFormulationId = row.bomItemId;
|
|
}
|
|
getBom(row.bomItemId).then(response => {
|
|
this.form = response.data;
|
|
this.open = true;
|
|
this.title = "修改物料BOM管理";
|
|
});
|
|
},
|
|
/** 提交按钮 */
|
|
submitForm() {
|
|
this.$refs["form"].validate(valid => {
|
|
if (valid) {
|
|
if (this.form.bomItemId != null) {
|
|
updateBom(this.form).then(response => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
} else {
|
|
addBom(this.form).then(response => {
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
this.$modal.confirm('是否确认删除物料BOM管理编号为"' + row.bomItemId + '"的数据项?').then(function() {
|
|
return delBom(row.bomItemId);
|
|
}).then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess("删除成功");
|
|
}).catch(() => {});
|
|
}
|
|
}
|
|
};
|
|
</script>
|