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.

456 lines
17 KiB
Vue

<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
<el-form-item label="成品物料编号" prop="materialCode">
<el-input
v-model="queryParams.materialCode"
placeholder="请输入成品物料编号"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="成品物料名称" prop="materialName">
<el-input
v-model="queryParams.materialName"
placeholder="请输入成品物料名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<!-- <el-form-item label="是否可生产" prop="isPlanToStation">-->
<!-- <el-select v-model="queryParams.isPlanToStation" placeholder="请选择是否可生产" clearable>-->
<!-- <el-option-->
<!-- v-for="dict in dict.type.is_release"-->
<!-- :key="dict.value"-->
<!-- :label="dict.label"-->
<!-- :value="dict.value"-->
<!-- />-->
<!-- </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>
<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="['mes/prod:prodBomInfo:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['mes/prod:prodBomInfo:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['mes/prod:prodBomInfo:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['mes/prod:prodBomInfo:export']"
>导出</el-button>
</el-col>
<!-- <el-col :span="1.5">-->
<!-- <el-button-->
<!-- type="primary"-->
<!-- plain-->
<!-- icon="el-icon-plus"-->
<!-- size="mini"-->
<!-- @click="AutomaticSynchronizationBOM"-->
<!-- >自动同步生产BOM</el-button>-->
<!-- </el-col>-->
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="prodBomInfoList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="主键标识" align="center" prop="objId" v-if="columns[0].visible"/>
<el-table-column label="BOM编号" align="center" prop="bomCode" v-if="columns[1].visible"/>
<el-table-column label="成品物料编号" align="center" prop="materialCode" v-if="columns[2].visible">
<template slot-scope="scope">
<router-link :to="'/production/bom-info/index/' + scope.row.objId" class="link-type">
<span>{{ scope.row.materialCode }}</span>
</router-link>
</template>
</el-table-column>
<el-table-column label="成品物料名称" align="center" prop="materialName" v-if="columns[3].visible"/>
<el-table-column label="物料版本" align="center" prop="materialDesc" v-if="columns[15].visible"/>
<el-table-column label="物料小类" align="center" prop="materialType" v-if="columns[4].visible">
<template slot-scope="scope">
<dict-tag :options="dict.type.material_subclass" :value="scope.row.materialType"/>
</template>
</el-table-column>
<el-table-column label="标准数量" align="center" prop="standardAmount" v-if="columns[5].visible"/>
<!-- <el-table-column label="父物料编号" align="center" prop="parentId" v-if="columns[6].visible"/>-->
<el-table-column label="工厂名称" align="center" prop="factoryName" v-if="columns[7].visible"/>
<!-- <el-table-column label="产线/工位" align="center" prop="productLineCode" v-if="columns[8].visible"/>-->
<!-- <el-table-column label="工单编号" align="center" prop="orderCode" v-if="columns[14].visible"/>-->
<el-table-column label="是否可生产" align="center" prop="isPlanToStation" v-if="columns[9].visible">
<!-- <template slot-scope="scope">-->
<!-- <dict-tag :options="dict.type.is_release" :value="scope.row.isPlanToStation"/>-->
<!-- </template>-->
</el-table-column>
<el-table-column label="创建人" align="center" prop="createBy" v-if="columns[10].visible"/>
<el-table-column label="创建时间" align="center" prop="createTime" width="180" v-if="columns[11].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="更新人" align="center" prop="updateBy" v-if="columns[12].visible"/>
<el-table-column label="更新时间" align="center" prop="updateTime" width="180" v-if="columns[13].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="100">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['mes/prod:prodBomInfo:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['mes/prod:prodBomInfo:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改生产BOM对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-form-item label="成品物料编号" prop="materialCode">
<el-input v-model="form.materialCode" placeholder="请输入成品物料编号" disabled/>
</el-form-item>
<el-form-item label="成品物料名称" prop="materialName">
<el-input v-model="form.materialName" placeholder="请输入物料名称" >
<el-button slot="append" icon="el-icon-search" @click="handleMaterialAdd"></el-button>
</el-input>
</el-form-item>
<el-form-item label="物料版本" prop="materialDesc">
<el-input v-model="form.materialDesc" placeholder="请输入物料版本"/>
</el-form-item>
<!-- <el-form-item label="所属工厂">-->
<!-- <el-select v-model="form.plantCode" placeholder="请选择所属工厂">-->
<!-- <el-option-->
<!-- v-for="item in factoryList"-->
<!-- :key="item.factoryCode"-->
<!-- :label="item.factoryName"-->
<!-- :value="item.factoryCode"-->
<!-- ></el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- <el-form-item label="物料小类" prop="materialType">-->
<!-- <el-select v-model="form.materialType" placeholder="请选择物料小类">-->
<!-- <el-option-->
<!-- v-for="dict in dict.type.material_subclass"-->
<!-- :key="dict.value"-->
<!-- :label="dict.label"-->
<!-- :value="dict.value"-->
<!-- ></el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- <el-form-item label="标准数量" prop="standardAmount">-->
<!-- <el-input v-model="form.standardAmount" placeholder="请输入标准数量" />-->
<!-- </el-form-item>-->
<!-- <el-form-item label="父物料编号" prop="parentId">-->
<!-- <el-input v-model="form.parentId" placeholder="请输入父物料编号" />-->
<!-- </el-form-item>-->
<!-- <el-form-item label="产线/工位" prop="productLineCode">-->
<!-- <el-input v-model="form.productLineCode" placeholder="请输入产线/工位" />-->
<!-- </el-form-item>-->
<el-form-item label="启用标识" prop="isFlag">
<el-radio-group v-model="form.isFlag">
<el-radio
v-for="dict in dict.type.is_flag"
:key="dict.value"
:label="dict.value"
>{{dict.label}}</el-radio>
</el-radio-group>
</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>
<!-- 添加物料信息对话框 -->
<el-dialog title="添加成品BOM明细" :visible.sync="materialOpen" width="900px" append-to-body>
<add-bom @selection="handleSelection" ref="materialRef"></add-bom>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitMaterialForm">确 定</el-button>
<el-button @click="materialOpen = false"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
listProdBomInfo,
getProdBomInfo,
delProdBomInfo,
addProdBomInfo,
updateProdBomInfo
} from '@/api/mes/prod/prodBomInfo'
import {getBaseFactoryList} from "@//api/mes/base/baseFactory";
import addBom from '@//views/mes/prod/prodBomInfo/addBom.vue';
export default {
name: 'ProdBomInfo',
dicts: ['is_flag','material_subclass'],
components: {
'add-bom': addBom
},
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 生产BOM表格数据
prodBomInfoList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 是否显示物料弹出层
materialOpen: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
bomCode: null,
materialCode: null,
materialName: null,
materialType: '1',
standardAmount: null,
parentId: null,
plantCode: null,
productLineCode: null,
isPlanToStation: null,
materialDesc: null,
isFlag: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null,
orderCode: null
},
// 表单参数
form: {},
// 表单校验
rules: {
},
columns: [
{ key: 0, label: `主键标识`, visible: false },
{ key: 1, label: `BOM编号`, visible: false },
{ key: 2, label: `成品物料编号`, visible: true },
{ key: 3, label: `成品物料名称`, visible: true },
{ key: 4, label: `物料小类`, visible: true },
{ key: 5, label: `标准数量`, visible: true },
{ key: 6, label: `父物料编号`, visible: true },
{ key: 7, label: `工厂编号`, visible: true },
{ key: 8, label: `产线/工位`, visible: true },
{ key: 9, label: `是否可生产`, visible: true },
{ key: 10, label: `创建人`, visible: false },
{ key: 11, label: `创建时间`, visible: true },
{ key: 12, label: `更新人`, visible: false },
{ key: 13, label: `更新时间`, visible: false },
{ key: 14, label: `工单编号`, visible: true },
{ key: 15, label: `物料版本`, visible: true },
],
// 工厂选项
factoryList: []
};
},
created() {
// getBaseFactoryList().then(response => {
// this.factoryList = response.data;
// });
this.getList();
},
methods: {
/** 查询生产BOM列表 */
getList() {
this.loading = true;
listProdBomInfo(this.queryParams).then(response => {
this.prodBomInfoList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
objId: null,
bomCode: null,
materialCode: null,
materialName: null,
materialDesc: null,
materialType: 1,
standardAmount: 1,
parentId: 0,
plantCode: null,
productLineCode: null,
isPlanToStation: null,
isFlag: '0',
createBy: null,
createTime: null,
updateBy: null,
updateTime: null,
orderCode: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
handleSelection(selection) {
this.ids = selection.map(item => item.objId)
this.single = selection.length!==1
this.multiple = !selection.length
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.objId)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加生产BOM";
},
/** 新增按钮操作 */
handleMaterialAdd() {
this.materialOpen = true;
// this.title = "添加订单BOM";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const objId = row.objId || this.ids
getProdBomInfo(objId).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改生产BOM";
});
},
/** 提交物料信息按钮 */
submitMaterialForm() {
let selectedRow = this.$refs.materialRef.selectedRow;
// this.form.bomCode = selectedRow.bomCode;
this.form.materialCode = selectedRow.materialCode;
this.form.materialName = selectedRow.materialName;
this.form.factoryCode = selectedRow.factoryCode;
this.materialOpen = false;
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.objId != null) {
updateProdBomInfo(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addProdBomInfo(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
// AutomaticSynchronizationBOM(){
// addAutomaticSynchronizationBOM(this.form).then(response => {
// this.$modal.msgSuccess('同步成功')
// this.getList()
// })
// },
/** 删除按钮操作 */
handleDelete(row) {
const objIds = row.objId || this.ids;
this.$modal.confirm('是否确认删除生产BOM编号为"' + objIds + '"的数据项?').then(function() {
return delProdBomInfo(objIds);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('mes/prod/prodBomInfo/export', {
...this.queryParams
}, `prodBomInfo_${new Date().getTime()}.xlsx`)
}
}
};
</script>