change - 添加生产BOM页面逻辑
parent
f77ba5e9d0
commit
63ae8da92d
@ -0,0 +1,287 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
||||
<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>
|
||||
<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-table v-loading="loading" :data="orderBomInfoList" @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="BOM编号" align="center" prop="bomCode" v-if="columns[1].visible"/>
|
||||
<el-table-column label="物料编码" align="center" prop="materialCode" v-if="columns[2].visible"/>
|
||||
<el-table-column label="物料名称" align="center" prop="materialName" v-if="columns[3].visible"/>
|
||||
<el-table-column label="物料类别" align="center" prop="materialType" v-if="columns[4].visible">
|
||||
<template slot-scope="scope">
|
||||
<dict-tag :options="dict.type.material_type" :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="isFlag" v-if="columns[7].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="createdBy" v-if="columns[8].visible"/>
|
||||
<el-table-column label="创建时间" align="center" prop="createdTime" width="180" v-if="columns[9].visible">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.createdTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="更新人" align="center" prop="updatedBy" v-if="columns[10].visible"/>
|
||||
<el-table-column label="更新时间" align="center" prop="updatedTime" width="180" v-if="columns[11].visible">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.updatedTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="工厂编号" align="center" prop="factoryCode" v-if="columns[12].visible"/>
|
||||
<el-table-column label="排序" align="center" prop="sort" v-if="columns[13].visible"/>
|
||||
<el-table-column label="销售凭证" align="center" prop="vbeln" v-if="columns[14].visible"/>
|
||||
<el-table-column label="销售单据项目" align="center" prop="vbpos" v-if="columns[15].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="['base:orderBomInfo:edit']"-->
|
||||
<!-- >修改</el-button>-->
|
||||
<!-- <el-button-->
|
||||
<!-- size="mini"-->
|
||||
<!-- type="text"-->
|
||||
<!-- icon="el-icon-delete"-->
|
||||
<!-- @click="handleDelete(scope.row)"-->
|
||||
<!-- v-hasPermi="['base:orderBomInfo: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 {
|
||||
listOrderBomInfo,
|
||||
getOrderBomInfo,
|
||||
delOrderBomInfo,
|
||||
addOrderBomInfo,
|
||||
updateOrderBomInfo
|
||||
} from '@/api/base/orderBomInfo'
|
||||
|
||||
export default {
|
||||
name: 'OrderBomInfo',
|
||||
dicts: ['material_type', 'is_flag'],
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 订单BOM表格数据
|
||||
orderBomInfoList: [],
|
||||
// 弹出层标题
|
||||
title: '',
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
bomCode: null,
|
||||
materialCode: null,
|
||||
materialName: null,
|
||||
materialType: null,
|
||||
standardAmount: null,
|
||||
parentId: null,
|
||||
isFlag: null,
|
||||
createdBy: null,
|
||||
createdTime: null,
|
||||
updatedBy: null,
|
||||
updatedTime: null,
|
||||
factoryCode: null,
|
||||
sort: null,
|
||||
vbeln: null,
|
||||
vbpos: null
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
//选中列
|
||||
selectedRow: {},
|
||||
// 表单校验
|
||||
rules: {},
|
||||
columns: [
|
||||
{ key: 0, label: `主键标识`, visible: false },
|
||||
{ key: 1, label: `BOM编号`, visible: true },
|
||||
{ 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: false },
|
||||
{ key: 8, label: `创建人`, visible: false },
|
||||
{ key: 9, label: `创建时间`, visible: false },
|
||||
{ key: 10, label: `更新人`, visible: false },
|
||||
{ key: 11, label: `更新时间`, visible: false },
|
||||
{ key: 12, label: `工厂编号`, visible: false },
|
||||
{ key: 13, label: `排序`, visible: false },
|
||||
{ key: 14, label: `销售凭证`, visible: false },
|
||||
{ key: 15, label: `销售单据项目`, visible: false }
|
||||
]
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.getList()
|
||||
},
|
||||
methods: {
|
||||
/** 查询订单BOM列表 */
|
||||
getList() {
|
||||
this.loading = true
|
||||
listOrderBomInfo(this.queryParams).then(response => {
|
||||
this.orderBomInfoList = 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,
|
||||
materialType: null,
|
||||
standardAmount: null,
|
||||
parentId: null,
|
||||
isFlag: null,
|
||||
createdBy: null,
|
||||
createdTime: null,
|
||||
updatedBy: null,
|
||||
updatedTime: null,
|
||||
factoryCode: null,
|
||||
sort: null,
|
||||
vbeln: null,
|
||||
vbpos: null
|
||||
}
|
||||
this.resetForm('form')
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1
|
||||
this.getList()
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm('queryForm')
|
||||
this.handleQuery()
|
||||
},
|
||||
//选中列赋值
|
||||
handleRowClick(row) {
|
||||
this.selectedRow = row
|
||||
},
|
||||
// 多选框选中数据
|
||||
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'
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset()
|
||||
const objId = row.objId || this.ids
|
||||
getOrderBomInfo(objId).then(response => {
|
||||
this.form = response.data
|
||||
this.open = true
|
||||
this.title = '修改订单BOM'
|
||||
})
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs['form'].validate(valid => {
|
||||
if (valid) {
|
||||
if (this.form.objId != null) {
|
||||
updateOrderBomInfo(this.form).then(response => {
|
||||
this.$modal.msgSuccess('修改成功')
|
||||
this.open = false
|
||||
this.getList()
|
||||
})
|
||||
} else {
|
||||
addOrderBomInfo(this.form).then(response => {
|
||||
this.$modal.msgSuccess('新增成功')
|
||||
this.open = false
|
||||
this.getList()
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const objIds = row.objId || this.ids
|
||||
this.$modal.confirm('是否确认删除订单BOM编号为"' + objIds + '"的数据项?').then(function() {
|
||||
return delOrderBomInfo(objIds)
|
||||
}).then(() => {
|
||||
this.getList()
|
||||
this.$modal.msgSuccess('删除成功')
|
||||
}).catch(() => {
|
||||
})
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('base/orderBomInfo/export', {
|
||||
...this.queryParams
|
||||
}, `orderBomInfo_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
Loading…
Reference in New Issue