<template>
|
<div class="wmsMaterial-container">
|
<el-dialog v-model="isShowDialog" :width="800" draggable="true" :close-on-click-modal="false" >
|
<template #header>
|
<div style="color: #fff">
|
<!--<el-icon size="16" style="margin-right: 3px; display: inline; vertical-align: middle"> <ele-Edit /> </el-icon>-->
|
<span>{{ props.title }}</span>
|
</div>
|
</template>
|
<el-form :model="ruleForm" ref="ruleFormRef" label-width="auto" :rules="rules">
|
<el-row :gutter="35">
|
<el-form-item v-show="false">
|
<el-input v-model="ruleForm.id" />
|
</el-form-item>
|
<el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
|
<el-form-item label="物料编号" prop="materialCode">
|
<el-input v-model="ruleForm.materialCode" placeholder="请输入物料编号" maxlength="50" show-word-limit clearable />
|
|
</el-form-item>
|
|
</el-col>
|
<el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
|
<el-form-item label="物料名称" prop="materialName">
|
<el-input v-model="ruleForm.materialName" placeholder="请输入物料名称" maxlength="50" show-word-limit clearable />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
|
<el-form-item label="ERP编号" prop="erpCode">
|
<el-input v-model="ruleForm.erpCode" placeholder="请输入ERP编号" maxlength="255" show-word-limit clearable />
|
|
</el-form-item>
|
|
</el-col>
|
<el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
|
<el-form-item label="物料类型" prop="materialType">
|
<el-select clearable v-model="ruleForm.materialType" placeholder="请选择物料类型">
|
<el-option v-for="(item,index) in dl('MaterialTypeEnum')" :key="index" :value="item.code" :label="`[${item.code}] ${item.value}`"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
<!-- <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
|
<el-form-item label="物料组" prop="materialGroup">
|
<el-input v-model="ruleForm.materialGroup" placeholder="请输入物料组" maxlength="50" show-word-limit clearable />
|
|
</el-form-item>
|
|
</el-col> -->
|
<el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
|
<el-form-item label="ABC分类" prop="aBCClass">
|
<el-select clearable v-model="ruleForm.aBCClass" placeholder="请选择ABC分类">
|
<el-option v-for="(item,index) in dl('ABCClassEnum')" :key="index" :value="item.code" :label="`${item.describe}`"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
<!-- <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
|
<el-form-item label="物料规格" prop="materialSpec">
|
<el-input v-model="ruleForm.materialSpec" placeholder="请输入物料规格" maxlength="255" show-word-limit clearable />
|
|
</el-form-item>
|
|
</el-col> -->
|
<!-- <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
|
<el-form-item label="默认入库库位" prop="inPlaceCode">
|
<el-input v-model="ruleForm.inPlaceCode" placeholder="请输入默认入库库位" maxlength="50" show-word-limit clearable />
|
|
</el-form-item>
|
|
</el-col> -->
|
<el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
|
<el-form-item label="库存单位" prop="materialUnit">
|
<el-input v-model="ruleForm.materialUnit" placeholder="请输入库存单位" maxlength="50" show-word-limit clearable />
|
|
</el-form-item>
|
|
</el-col>
|
<el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
|
<el-form-item label="采购单位" prop="pOUnit">
|
<el-input v-model="ruleForm.pOUnit" placeholder="请输入采购单位" maxlength="50" show-word-limit clearable />
|
|
</el-form-item>
|
|
</el-col>
|
<el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
|
<el-form-item label="颜色" prop="color">
|
<el-input v-model="ruleForm.color" placeholder="请输入颜色" maxlength="50" show-word-limit clearable />
|
|
</el-form-item>
|
|
</el-col>
|
<!-- <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
|
<el-form-item label="重量" prop="weight">
|
<el-input v-model="ruleForm.weight" placeholder="请输入重量" maxlength="50" show-word-limit clearable />
|
|
</el-form-item>
|
|
</el-col> -->
|
<el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
|
<el-form-item label="标包数量" prop="snp">
|
<el-input v-model="ruleForm.snp" placeholder="请输入标包数量" maxlength="10" show-word-limit clearable />
|
|
</el-form-item>
|
|
</el-col>
|
<el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
|
<el-form-item label="换算率" prop="translateRate">
|
<el-input v-model="ruleForm.translateRate" placeholder="请输入换算率" maxlength="10" show-word-limit clearable />
|
|
</el-form-item>
|
|
</el-col>
|
<el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
|
<el-form-item label="是否禁用" prop="isDisabled">
|
<el-switch v-model="ruleForm.isDisabled" active-text="是" inactive-text="否" />
|
|
</el-form-item>
|
|
</el-col>
|
<el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
|
<el-form-item label="是否质检" prop="isCheck">
|
<el-switch v-model="ruleForm.isCheck" active-text="是" inactive-text="否" />
|
|
</el-form-item>
|
|
</el-col>
|
<el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" class="mb20">
|
<el-form-item label="描述" prop="materialDesc">
|
<el-input v-model="ruleForm.materialDesc" placeholder="请输入描述" type="textarea" maxlength="255" show-word-limit clearable />
|
|
</el-form-item>
|
|
</el-col>
|
</el-row>
|
</el-form>
|
<template #footer>
|
<span class="dialog-footer">
|
<el-button @click="cancel">取 消</el-button>
|
<el-button type="primary" @click="submit">确 定</el-button>
|
</span>
|
</template>
|
</el-dialog>
|
</div>
|
</template>
|
<style scoped>
|
:deep(.el-select),
|
:deep(.el-input-number) {
|
width: 100%;
|
}
|
</style>
|
<script lang="ts" setup>
|
import { ref,onMounted } from "vue";
|
import { getDictDataItem as di, getDictDataList as dl } from '/@/utils/dict-utils';
|
import { ElMessage } from "element-plus";
|
import type { FormRules } from "element-plus";
|
import { addWmsMaterial, updateWmsMaterial, detailWmsMaterial } from "/@/api/main/WmsBase/wmsMaterial";
|
|
//父级传递来的参数
|
var props = defineProps({
|
title: {
|
type: String,
|
default: "",
|
},
|
});
|
//父级传递来的函数,用于回调
|
const emit = defineEmits(["reloadTable"]);
|
const ruleFormRef = ref();
|
const isShowDialog = ref(false);
|
const ruleForm = ref<any>({});
|
//自行添加其他规则
|
const rules = ref<FormRules>({
|
materialName: [{required: true, message: '请输入物料名称!', trigger: 'blur',},],
|
materialCode: [{required: true, message: '请输入物料编号!', trigger: 'blur',},],
|
materialType: [{required: true, message: '请选择物料类型!', trigger: 'change',},],
|
materialUnit: [{required: true, message: '请输入库存单位!', trigger: 'blur',},],
|
pOUnit: [{required: true, message: '请输入采购单位!', trigger: 'blur',},],
|
});
|
|
// 打开弹窗
|
const openDialog = async (row: any) => {
|
// ruleForm.value = JSON.parse(JSON.stringify(row));
|
// 改用detail获取最新数据来编辑
|
let rowData = JSON.parse(JSON.stringify(row));
|
if (rowData.id)
|
ruleForm.value = (await detailWmsMaterial(rowData.id)).data.result;
|
else
|
ruleForm.value = rowData;
|
isShowDialog.value = true;
|
};
|
|
// 关闭弹窗
|
const closeDialog = () => {
|
emit("reloadTable");
|
isShowDialog.value = false;
|
};
|
|
// 取消
|
const cancel = () => {
|
isShowDialog.value = false;
|
};
|
|
// 提交
|
const submit = async () => {
|
ruleFormRef.value.validate(async (isValid: boolean, fields?: any) => {
|
if (isValid) {
|
let values = ruleForm.value;
|
if (ruleForm.value.id == undefined || ruleForm.value.id == null || ruleForm.value.id == "" || ruleForm.value.id == 0) {
|
await addWmsMaterial(values);
|
} else {
|
await updateWmsMaterial(values);
|
}
|
closeDialog();
|
} else {
|
ElMessage({
|
message: `表单有${Object.keys(fields).length}处验证失败,请修改后再提交`,
|
type: "error",
|
});
|
}
|
});
|
};
|
|
|
|
|
|
|
|
// 页面加载时
|
onMounted(async () => {
|
});
|
|
//将属性或者函数暴露给父组件
|
defineExpose({ openDialog });
|
</script>
|