修复delivery.vue导出时缺少状态参数的问题 修正product/index.vue和rawMaterial/index.vue中productCode生成逻辑 放宽ship.vue中钢卷质量状态的校验范围 为ActualWarehouseSelect组件添加空库位筛选功能
424 lines
14 KiB
Vue
424 lines
14 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="80px">
|
|
<el-form-item label="原材料编号" prop="rawMaterialCode">
|
|
<el-input
|
|
v-model="queryParams.rawMaterialCode"
|
|
placeholder="请输入原材料编号"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="原材料名称" prop="rawMaterialName">
|
|
<el-input
|
|
v-model="queryParams.rawMaterialName"
|
|
placeholder="请输入原材料名称"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="规格" prop="specification">
|
|
<el-input v-model="queryParams.specification" placeholder="请输入规格" clearable />
|
|
</el-form-item>
|
|
<el-form-item label="材质" prop="material">
|
|
<el-input v-model="queryParams.material" placeholder="请输入材质" clearable />
|
|
</el-form-item>
|
|
<el-form-item label="厂家" prop="manufacturer">
|
|
<el-input v-model="queryParams.manufacturer" placeholder="请输入厂家" clearable />
|
|
</el-form-item>
|
|
<el-form-item label="表面处理" prop="surfaceTreatmentDesc">
|
|
<el-input v-model="queryParams.surfaceTreatmentDesc" placeholder="请输入表面处理" clearable />
|
|
</el-form-item>
|
|
<el-form-item label="锌层" prop="zincLayer">
|
|
<el-input v-model="queryParams.zincLayer" placeholder="请输入锌层" clearable />
|
|
</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"
|
|
|
|
>新增</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="success"
|
|
plain
|
|
icon="el-icon-edit"
|
|
size="mini"
|
|
:disabled="single"
|
|
@click="handleUpdate"
|
|
|
|
>修改</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="danger"
|
|
plain
|
|
icon="el-icon-delete"
|
|
size="mini"
|
|
:disabled="multiple"
|
|
@click="handleDelete"
|
|
>删除</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="warning"
|
|
plain
|
|
icon="el-icon-download"
|
|
size="mini"
|
|
@click="handleExport"
|
|
>导出</el-button>
|
|
</el-col>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
</el-row>
|
|
|
|
<KLPTable v-loading="loading" :data="rawMaterialList" @selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<el-table-column label="原材料类型编号" align="center" prop="rawMaterialCode" />
|
|
<el-table-column label="原材料类型名称" align="center" prop="rawMaterialName" />
|
|
<el-table-column label="规格" align="center" prop="specification" />
|
|
<el-table-column label="计量单位" align="center" prop="unit" />
|
|
<el-table-column label="材质" align="center" prop="material" />
|
|
<el-table-column label="厂家" align="center" prop="manufacturer" />
|
|
<el-table-column label="表面处理" align="center" prop="surfaceTreatmentDesc" />
|
|
<el-table-column label="锌层" align="center" prop="zincLayer" />
|
|
<!-- <el-table-column label="参数" align="center">
|
|
<template slot-scope="scope">
|
|
<BomInfoMini :bomId="scope.row.bomId" />
|
|
</template>
|
|
</el-table-column> -->
|
|
<el-table-column label="备注" align="center" prop="remark" />
|
|
<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-plus" @click="handleBom(scope.row)">参数</el-button> -->
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-edit"
|
|
@click="handleUpdate(scope.row)"
|
|
>修改</el-button>
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-delete"
|
|
@click="handleDelete(scope.row)"
|
|
>删除</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</KLPTable>
|
|
|
|
<pagination
|
|
v-show="total>0"
|
|
:total="total"
|
|
:page.sync="queryParams.pageNum"
|
|
:limit.sync="queryParams.pageSize"
|
|
@pagination="getList"
|
|
/>
|
|
|
|
<!-- 添加或修改原材料对话框 -->
|
|
<el-dialog :title="title" :visible.sync="open" width="400px" append-to-body>
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
|
|
<!-- <el-form-item label="原材料编号" prop="rawMaterialCode">
|
|
<el-input v-model="form.rawMaterialCode" placeholder="请输入原材料编号" />
|
|
</el-form-item> -->
|
|
<el-form-item label="原材料名称" prop="rawMaterialName">
|
|
<el-input v-model="form.rawMaterialName" placeholder="请输入原材料名称" />
|
|
</el-form-item>
|
|
<el-form-item label="规格" prop="specification">
|
|
<el-input v-model="form.specification" placeholder="请输入规格" />
|
|
</el-form-item>
|
|
<el-form-item label="计量单位" prop="unit">
|
|
<el-input v-model="form.unit" placeholder="请输入计量单位" />
|
|
</el-form-item>
|
|
<el-form-item label="材质" prop="material">
|
|
<el-input v-model="form.material" placeholder="请输入材质" />
|
|
</el-form-item>
|
|
|
|
<el-form-item label="厂家" prop="manufacturer">
|
|
<el-input v-model="form.manufacturer" placeholder="请输入厂家" />
|
|
</el-form-item>
|
|
|
|
<el-form-item label="表面处理" prop="surfaceTreatmentDesc">
|
|
<el-input v-model="form.surfaceTreatmentDesc" placeholder="请输入表面处理" />
|
|
</el-form-item>
|
|
|
|
<el-form-item label="锌层" prop="zincLayer">
|
|
<el-input v-model="form.zincLayer" placeholder="请输入锌层" />
|
|
</el-form-item>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
|
<el-button @click="cancel">取 消</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { listRawMaterial, getRawMaterial, delRawMaterial, updateRawMaterial, addRawMaterialWithBom } from "@/api/wms/rawMaterial";
|
|
import CategoryRenderer from '@/components/KLPService/Renderer/CategoryRenderer.vue';
|
|
|
|
export default {
|
|
name: "RawMaterial",
|
|
components: {
|
|
CategoryRenderer,
|
|
},
|
|
dicts: ['common_swicth'],
|
|
data() {
|
|
return {
|
|
// 按钮loading
|
|
buttonLoading: false,
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 原材料表格数据
|
|
rawMaterialList: [],
|
|
// 弹出层标题
|
|
title: "",
|
|
// 是否显示弹出层
|
|
open: false,
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 20,
|
|
rawMaterialCode: undefined,
|
|
rawMaterialName: undefined,
|
|
steelGrade: undefined,
|
|
targetColdGrade: undefined,
|
|
baseMaterialId: undefined,
|
|
surfaceTreatmentId: undefined,
|
|
thickness: undefined,
|
|
thicknessDeviation: undefined,
|
|
width: undefined,
|
|
targetColdWidth: undefined,
|
|
targetColdThickness: undefined,
|
|
crown: undefined,
|
|
coilWeight: undefined,
|
|
surfaceQuality: undefined,
|
|
hardnessHv5: undefined,
|
|
hardnessDiff: undefined,
|
|
compositionMn: undefined,
|
|
compositionP: undefined,
|
|
grainSize: undefined,
|
|
headTailCutFlag: undefined,
|
|
inspectionResult: undefined,
|
|
isEnabled: undefined,
|
|
unit: undefined,
|
|
specification: undefined,
|
|
material: undefined,
|
|
manufacturer: undefined,
|
|
surfaceTreatmentDesc: undefined,
|
|
zincLayer: undefined,
|
|
},
|
|
// 表单参数
|
|
form: {},
|
|
// 表单校验
|
|
rules: {
|
|
// rawMaterialCode: [
|
|
// { required: true, message: "原材料编号不能为空", trigger: "blur" }
|
|
// ],
|
|
rawMaterialName: [
|
|
{ required: true, message: "原材料名称不能为空", trigger: "blur" }
|
|
],
|
|
unit: [
|
|
{ required: true, message: "计量单位不能为空", trigger: "blur" }
|
|
],
|
|
},
|
|
paramDialogVisible: false,
|
|
paramRow: null,
|
|
bomDialogVisible: false,
|
|
bomId: undefined,
|
|
itemId: undefined,
|
|
};
|
|
},
|
|
created() {
|
|
this.getList();
|
|
},
|
|
methods: {
|
|
/** 查询原材料列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
listRawMaterial(this.queryParams).then(response => {
|
|
this.rawMaterialList = response.rows;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
goLedger(row) {
|
|
this.$router.push({
|
|
path: '/wms/ledger',
|
|
query: {
|
|
itemId: row.rawMaterialId,
|
|
itemType: 'raw_material'
|
|
}
|
|
})
|
|
},
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false;
|
|
this.reset();
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
rawMaterialId: undefined,
|
|
rawMaterialCode: undefined,
|
|
rawMaterialName: undefined,
|
|
steelGrade: undefined,
|
|
targetColdGrade: undefined,
|
|
baseMaterialId: undefined,
|
|
surfaceTreatmentId: undefined,
|
|
thickness: undefined,
|
|
thicknessDeviation: undefined,
|
|
width: undefined,
|
|
targetColdWidth: undefined,
|
|
targetColdThickness: undefined,
|
|
crown: undefined,
|
|
coilWeight: undefined,
|
|
surfaceQuality: undefined,
|
|
hardnessHv5: undefined,
|
|
hardnessDiff: undefined,
|
|
compositionMn: undefined,
|
|
compositionP: undefined,
|
|
grainSize: undefined,
|
|
headTailCutFlag: undefined,
|
|
inspectionResult: undefined,
|
|
isEnabled: undefined,
|
|
delFlag: undefined,
|
|
remark: undefined,
|
|
createTime: undefined,
|
|
createBy: undefined,
|
|
updateTime: undefined,
|
|
updateBy: undefined,
|
|
specification: undefined,
|
|
unit: '卷',
|
|
material: undefined,
|
|
manufacturer: undefined,
|
|
surfaceTreatmentDesc: undefined,
|
|
zincLayer: undefined,
|
|
};
|
|
this.resetForm("form");
|
|
},
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.pageNum = 1;
|
|
this.getList();
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.resetForm("queryForm");
|
|
this.handleQuery();
|
|
},
|
|
// 多选框选中数据
|
|
handleSelectionChange(selection) {
|
|
this.ids = selection.map(item => item.rawMaterialId)
|
|
this.single = selection.length!==1
|
|
this.multiple = !selection.length
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
this.reset();
|
|
this.open = true;
|
|
this.title = "添加原材料";
|
|
},
|
|
handleBom(row) {
|
|
this.bomDialogVisible = true;
|
|
this.bomId = row.bomId;
|
|
this.itemId = row.rawMaterialId;
|
|
},
|
|
handleAddBom(bom) {
|
|
this.bomId = bom.bomId;
|
|
this.getList();
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.loading = true;
|
|
this.reset();
|
|
const rawMaterialId = row.rawMaterialId || this.ids
|
|
getRawMaterial(rawMaterialId).then(response => {
|
|
this.loading = false;
|
|
this.form = response.data;
|
|
this.open = true;
|
|
this.title = "修改原材料";
|
|
});
|
|
},
|
|
/** 提交按钮 */
|
|
submitForm() {
|
|
this.$refs["form"].validate(valid => {
|
|
if (valid) {
|
|
this.buttonLoading = true;
|
|
if (this.form.rawMaterialId != null) {
|
|
updateRawMaterial({
|
|
...this.form,
|
|
}).then(response => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.open = false;
|
|
this.getList();
|
|
this.$store.dispatch('category/getRawMaterialMap');
|
|
}).finally(() => {
|
|
this.buttonLoading = false;
|
|
});
|
|
} else {
|
|
addRawMaterialWithBom({
|
|
...this.form,
|
|
rawMaterialCode: this.form.material + (this.form.zincLayer || '') + new Date().getTime(),
|
|
}).then(response => {
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.open = false;
|
|
this.getList();
|
|
this.$store.dispatch('category/getRawMaterialMap');
|
|
}).finally(() => {
|
|
this.buttonLoading = false;
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const rawMaterialIds = row.rawMaterialId || this.ids;
|
|
this.$modal.confirm('是否确认删除原材料编号为"' + rawMaterialIds + '"的数据项?').then(() => {
|
|
this.loading = true;
|
|
return delRawMaterial(rawMaterialIds);
|
|
}).then(() => {
|
|
this.loading = false;
|
|
this.getList();
|
|
this.$modal.msgSuccess("删除成功");
|
|
this.$store.dispatch('category/getRawMaterialMap');
|
|
}).finally(() => {
|
|
this.loading = false;
|
|
});
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
this.download('wms/rawMaterial/export', {
|
|
...this.queryParams
|
|
}, `rawMaterial_${new Date().getTime()}.xlsx`)
|
|
},
|
|
showParamDetail(row) {
|
|
this.paramRow = row;
|
|
this.paramDialogVisible = true;
|
|
}
|
|
}
|
|
};
|
|
</script>
|