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.

318 lines
11 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="factoryCode">-->
<!-- <el-input-->
<!-- v-model="queryParams.factoryCode"-->
<!-- placeholder="请输入工厂编号"-->
<!-- clearable-->
<!-- @keyup.enter.native="handleQuery"-->
<!-- />-->
<!-- </el-form-item>-->
<!-- <el-form-item label="生产工位" prop="productLineCode">-->
<!-- <el-input-->
<!-- v-model="queryParams.productLineCode"-->
<!-- placeholder="请输入生产工位"-->
<!-- 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="['mes/base:baseMaterialInfo: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/base:baseMaterialInfo: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/base:baseMaterialInfo: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/base:baseMaterialInfo:export']"-->
<!-- >导出-->
<!-- </el-button>-->
<!-- </el-col>-->
<!-- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>-->
<!-- </el-row>-->
<el-table v-loading="loading" :data="baseMaterialInfoList" @selection-change="handleSelectionChange"
@row-click="handleRowClick"
highlight-current-row
>
<!-- <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="物料编码" align="center" prop="materialCode" v-if="columns[1].visible" width="100"/>
<el-table-column label="物料名称" align="center" prop="materialName" v-if="columns[2].visible" width="180"/>
<el-table-column label="物料大类" align="center" prop="materialCategories" v-if="columns[3].visible"/>
<el-table-column label="物料小类" align="center" prop="materialSubclass" v-if="columns[4].visible">
<template slot-scope="scope">
<dict-tag :options="dict.type.material_subclass" :value="scope.row.materialSubclass"/>
</template>
</el-table-column>
<el-table-column label="SAP物料类型" align="center" prop="materialType" v-if="columns[5].visible"/>
<el-table-column label="计量单位" align="center" prop="materialUnit" v-if="columns[6].visible">
<template slot-scope="scope">
<dict-tag :options="dict.type.material_unit" :value="scope.row.materialUnit"/>
</template>
</el-table-column>
<el-table-column label="单位工资(元)" align="center" prop="unitPrice" v-if="columns[7].visible" width="100"/>
<el-table-column label="生产工位" align="center" prop="productLineName" v-if="columns[10].visible"/>
<el-table-column label="物料型号" align="center" prop="materialSpecifications" v-if="columns[8].visible"/>
<el-table-column label="工厂编号" align="center" prop="factoryCode" v-if="columns[9].visible"/>
<el-table-column label="是否标识" align="center" prop="isFlag" v-if="columns[11].visible">
<template slot-scope="scope">
<dict-tag :options="dict.type.is_flag" :value="scope.row.isFlag"/>
</template>
</el-table-column>
<el-table-column label="增量日期" align="center" prop="incrementDate" width="180" v-if="columns[16].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.incrementDate, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="商品编码" align="center" prop="productCode" v-if="columns[17].visible"/>
<el-table-column label="商品名称" align="center" prop="productName" v-if="columns[18].visible"/>
<!-- <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="['mes/base:baseMaterialInfo:edit']"-->
<!-- >修改-->
<!-- </el-button>-->
<!-- <el-button-->
<!-- size="mini"-->
<!-- type="text"-->
<!-- icon="el-icon-delete"-->
<!-- @click="handleDelete(scope.row)"-->
<!-- v-hasPermi="['mes/base:baseMaterialInfo: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"
/>
</div>
</template>
<script>
import {
listBaseMaterialInfo,
getBaseMaterialInfo,
delBaseMaterialInfo,
addBaseMaterialInfo,
updateBaseMaterialInfo
} from '@/api/mes/base/baseMaterialInfo'
import { getBaseProductLineList } from '@/api/mes/base/baseProductLine'
export default {
name: 'BaseMaterialInfo',
dicts: ['material_subclass', 'is_flag', 'material_unit'],
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 物料信息表格数据
baseMaterialInfoList: [],
// 弹出层标题
title: '',
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
materialCode: null,
materialName: null,
materialCategories: null,
materialSubclass: null,
materialType: null,
materialUnit: null,
unitPrice: null,
materialSpecifications: null,
factoryCode: null,
productLineCode: null,
isFlag: null,
incrementDate: null,
productCode: null,
productName: null
},
// 表单参数
form: {},
// 表单校验
rules: {
objId: [
{ required: true, message: '主键标识不能为空', trigger: 'blur' }
],
materialCode: [
{ required: true, message: '物料编码不能为空', trigger: 'blur' }
]
},
columns: [
{ key: 0, label: `主键标识`, visible: false },
{ key: 1, label: `物料编码`, visible: true },
{ key: 2, label: `物料名称`, visible: true },
{ key: 3, label: `物料大类`, visible: false },
{ key: 4, label: `物料小类`, visible: true },
{ key: 5, label: `SAP物料类型`, visible: false },
{ key: 6, label: `计量单位`, visible: true },
{ key: 7, label: `单位工资(元)`, visible: true },
{ key: 8, label: `物料型号`, visible: true },
{ key: 9, label: `工厂编号`, visible: false },
{ key: 10, label: `生产工位`, visible: true },
{ key: 11, label: `是否标识`, visible: true },
{ key: 12, label: `创建人`, visible: false },
{ key: 13, label: `创建时间`, visible: false },
{ key: 14, label: `更新人`, visible: false },
{ key: 15, label: `更新时间`, visible: false },
{ key: 16, label: `增量日期`, visible: true },
{ key: 17, label: `商品编码`, visible: false },
{ key: 18, label: `商品名称`, visible: false }
],
// 产线选项
productLineList: []
}
},
created() {
getBaseProductLineList({ productLineType: 2 }).then(response => {
this.productLineList = response.data
})
this.getList()
},
methods: {
/** 查询物料信息列表 */
getList() {
this.loading = true
listBaseMaterialInfo(this.queryParams).then(response => {
this.baseMaterialInfoList = response.rows
this.total = response.total
this.loading = false
})
},
// 取消按钮
cancel() {
this.open = false
this.reset()
},
handleRowClick(row) {
this.selectedRow = row
},
// 表单重置
reset() {
this.form = {
objId: null,
materialCode: null,
materialName: null,
materialCategories: null,
materialSubclass: '1',
materialType: null,
materialUnit: '1',
unitPrice: null,
materialSpecifications: null,
factoryCode: null,
productLineCode: null,
isFlag: '0',
createBy: null,
createTime: null,
updateBy: null,
updateTime: null,
incrementDate: null,
productCode: null,
productName: 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.objId)
this.single = selection.length !== 1
this.multiple = !selection.length
},
}
}
</script>