|
|
|
<!-- 补料策略弹窗 -->
|
|
|
|
<template>
|
|
|
|
<Dialog :title="dialogTitle" v-model="dialogVisible">
|
|
|
|
<div class="p-20px m--10px" style="max-height: 500px;overflow-y: auto;">
|
|
|
|
<!-- 规则 -->
|
|
|
|
<div class="item">
|
|
|
|
<div class="title">规则</div>
|
|
|
|
<el-form ref="formRef1" :model="formData" :rules="rules" label-width="120px" label-position="left">
|
|
|
|
<el-row>
|
|
|
|
<el-col :span="24">
|
|
|
|
<el-form-item label="代码" prop="code">
|
|
|
|
<el-input v-model="formData.code" placeholder="请输入代码" clearable />
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="24">
|
|
|
|
<el-form-item label="名称" prop="name">
|
|
|
|
<el-input v-model="formData.name" placeholder="请输入名称" clearable />
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="24">
|
|
|
|
<el-form-item label="描述" prop="describe">
|
|
|
|
<el-input v-model="formData.describe" placeholder="请输入描述" clearable />
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="12">
|
|
|
|
<el-form-item label="优先级" prop="priority">
|
|
|
|
<el-input-number v-model="formData.priority" :min="1" />
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="12">
|
|
|
|
<el-form-item label="状态" prop="status">
|
|
|
|
<el-switch v-model="formData.status" />
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</el-form>
|
|
|
|
</div>
|
|
|
|
<!-- 规则条件 -->
|
|
|
|
<div class="item mt-20px">
|
|
|
|
<div class="title">规则条件</div>
|
|
|
|
<el-form ref="formRef2" :model="formData" :rules="rules" label-width="120px" label-position="left">
|
|
|
|
<el-row>
|
|
|
|
<!-- 选择物品类型 -->
|
|
|
|
<el-col :span="24">
|
|
|
|
<el-form-item label="" label-width="0" prop="item" class="err-240">
|
|
|
|
<el-select v-model="formData.itemType" placeholder="" style="width: 110px;margin-right: 10px;">
|
|
|
|
<el-option :label="item.label" :value="item.value" v-for="item in options.itemTypeOptions"
|
|
|
|
:key="item.value" />
|
|
|
|
</el-select>
|
|
|
|
<el-select v-model="formData.itemTypeRange" placeholder="请选择范围" style="width: 110px;;margin-right: 10px;">
|
|
|
|
<el-option :label="item.label" :value="item.value" v-for="item in options.rangeOptions"
|
|
|
|
:key="item.value" />
|
|
|
|
</el-select>
|
|
|
|
<el-select v-model="formData.item" placeholder="请选择物品" style="flex: 1;" clearable>
|
|
|
|
<el-option v-for="item in options.itemList" :key="item.value" :label="item.label" :value="item.value" />
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
<!-- 仓库 库区 库位组 库位 -->
|
|
|
|
<el-col :span="24">
|
|
|
|
<el-form-item label="" label-width="0" prop="warehouse" class="err-240">
|
|
|
|
<el-select v-model="formData.warehouseType" style="width: 110px;;margin-right: 10px;">
|
|
|
|
<el-option :label="item.label" :value="item.value" v-for="item in options.warehouseTypeOptions"
|
|
|
|
:key="item.value" />
|
|
|
|
</el-select>
|
|
|
|
|
|
|
|
<el-select v-model="formData.warehouseTypeRange" placeholder="请选择范围"
|
|
|
|
style="width: 110px;;margin-right: 10px;">
|
|
|
|
<el-option :label="item.label" :value="item.value" v-for="item in options.rangeOptions"
|
|
|
|
:key="item.value" />
|
|
|
|
</el-select>
|
|
|
|
<el-select v-model="formData.warehouse" placeholder="请选择库位" style="flex: 1;" clearable>
|
|
|
|
<el-option v-for="item in options.warehouseTypeList" :key="item.value" :label="item.label"
|
|
|
|
:value="item.value" />
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</el-form>
|
|
|
|
</div>
|
|
|
|
<!-- 规则配置 -->
|
|
|
|
<div class="item mt-20px">
|
|
|
|
<div class="title">规则配置</div>
|
|
|
|
<el-form ref="formRef3" :model="formData" :rules="rules" label-width="120px" label-position="left">
|
|
|
|
<el-row>
|
|
|
|
<!-- 最大库存 -->
|
|
|
|
<el-col :span="24">
|
|
|
|
<el-form-item label="最大库存" prop="maxInventory">
|
|
|
|
<el-input-number v-model="formData.maxInventory" :min="0" controls-position="right" />
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
<!-- 最小库存 -->
|
|
|
|
<el-col :span="24">
|
|
|
|
<el-form-item label="最小库存" prop="minInventory">
|
|
|
|
<el-input-number v-model="formData.minInventory" :min="0" controls-position="right" />
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
<!-- 安全库存 -->
|
|
|
|
<el-col :span="24">
|
|
|
|
<el-form-item label="安全库存" prop="safeInventory">
|
|
|
|
<el-input-number v-model="formData.safeInventory" :min="0" controls-position="right" />
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
<!-- 补料数量 -->
|
|
|
|
<el-col :span="24">
|
|
|
|
<el-form-item label="补料数量" prop="number">
|
|
|
|
<el-input-number v-model="formData.number" :min="0" controls-position="right" />
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</el-form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<template #footer>
|
|
|
|
<!-- 按钮-->
|
|
|
|
<TableHead :HeadButttondata="Butttondata" @buttonBaseClick="buttonBaseClick" />
|
|
|
|
</template>
|
|
|
|
</Dialog>
|
|
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
import * as defaultButtons from '@/utils/disposition/defaultButtons'
|
|
|
|
defineOptions({ name: 'RepairMaterialStrategyAddForm' })
|
|
|
|
|
|
|
|
const { t } = useI18n() // 国际化
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
|
|
|
|
|
|
const dialogVisible = ref(false) // 弹窗的是否展示
|
|
|
|
const dialogTitle = ref('') // 弹窗的标题
|
|
|
|
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
|
|
|
const formType = ref('') // 表单的类型:create - 新增;update - 修改
|
|
|
|
const formRef1 = ref() // 表单 Ref
|
|
|
|
const formRef2 = ref() // 表单 Ref
|
|
|
|
const formRef3 = ref() // 表单 Ref
|
|
|
|
// form表单数据
|
|
|
|
const formData = ref({
|
|
|
|
code: '',//代码
|
|
|
|
name: '',//名称
|
|
|
|
describe: '',//描述
|
|
|
|
priority: '',//优先级
|
|
|
|
status: false,//状态
|
|
|
|
|
|
|
|
// 物品类型
|
|
|
|
itemType: 1,//选择的物品类型
|
|
|
|
itemTypeRange: 1, //物品类型范围
|
|
|
|
item: '',//选择的物品
|
|
|
|
|
|
|
|
// 仓库 库位
|
|
|
|
warehouseType: 1,//选择的是仓库/库区/库位组/库位类型
|
|
|
|
warehouseTypeRange: 1, //物品类型范围
|
|
|
|
warehouse: '',//选择的仓库/库区/库位组/库位
|
|
|
|
|
|
|
|
maxInventory: 0,//最大库存
|
|
|
|
minInventory: 0,//最小库存
|
|
|
|
safeInventory: 0,//安全库存
|
|
|
|
number: 0,//补料数量
|
|
|
|
|
|
|
|
})
|
|
|
|
// 验证规则
|
|
|
|
const rules = ref({
|
|
|
|
code: [{ required: true, message: '请输入代码', trigger: 'blur' }],
|
|
|
|
name: [{ required: true, message: '请输入名字', trigger: 'blur' }],
|
|
|
|
describe: [{ required: true, message: '请输入描述', trigger: 'blur' }],
|
|
|
|
priority: [{ required: true, message: '请输入优先级', trigger: 'blur' }],
|
|
|
|
item: [{ required: true, message: '请选择物品', trigger: 'change' }],
|
|
|
|
warehouse: [{ required: true, message: '请选择仓库', trigger: 'change' }],
|
|
|
|
maxInventory: [{ required: true, message: '请输入最大库存', trigger: 'change' }],
|
|
|
|
minInventory: [{ required: true, message: '请输入最小库存', trigger: 'change' }],
|
|
|
|
safeInventory: [{ required: true, message: '请输入安全库存', trigger: 'change' }],
|
|
|
|
number: [{ required: true, message: '请输入补料数量', trigger: ['change', 'blur'] }],
|
|
|
|
})
|
|
|
|
// 下拉框列表集合
|
|
|
|
const options = reactive({
|
|
|
|
// 范围下拉框列表
|
|
|
|
rangeOptions: [{ value: 1, label: '包含' }, { value: 2, label: '大于', }],
|
|
|
|
|
|
|
|
// 物品类型列表
|
|
|
|
itemTypeOptions: [{ value: 1, label: '物品分类' }, { value: 2, label: '物品分组' }, { value: 3, label: '物品' }, { value: 4, label: '项目' }, { value: 5, label: 'ABC类' }],
|
|
|
|
// 物品列表
|
|
|
|
itemList: [{ value: 1, label: '物品1' }, { value: 2, label: '物品2' }, { value: 3, label: '物品3' }],
|
|
|
|
// 仓库类型
|
|
|
|
warehouseTypeOptions: [{ value: 1, label: '仓库' }, { value: 2, label: '库区' }, { value: 3, label: '库位组' }, { value: 4, label: '库位' }],
|
|
|
|
// 仓库列表
|
|
|
|
warehouseTypeList: [{ value: 1, label: '仓库1' }, { value: 2, label: '仓库2' }, { value: 3, label: '仓库3' }],
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
/** 打开弹窗 */
|
|
|
|
const open = async (type: string, id?: number) => {
|
|
|
|
dialogVisible.value = true
|
|
|
|
dialogTitle.value = t('action.' + type)
|
|
|
|
formType.value = type
|
|
|
|
resetForm()
|
|
|
|
// 修改时,设置数据
|
|
|
|
|
|
|
|
}
|
|
|
|
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
|
|
|
|
|
|
|
/** 提交表单 */
|
|
|
|
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
|
|
|
|
const submitForm = async () => {
|
|
|
|
// 校验表单
|
|
|
|
if (!formRef1 || !formRef2 || !formRef3) return
|
|
|
|
const valid2 = formRef2.value.validate()
|
|
|
|
const valid1 = formRef1.value.validate()
|
|
|
|
const valid3 = await formRef3.value.validate()
|
|
|
|
if (!valid1 || !valid2 || !valid3) return
|
|
|
|
// 提交请求
|
|
|
|
formLoading.value = true
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 重置表单 */
|
|
|
|
const resetForm = () => {
|
|
|
|
formData.value = {
|
|
|
|
code: '',
|
|
|
|
name: '',
|
|
|
|
describe: '',
|
|
|
|
priority: '',
|
|
|
|
status: false,
|
|
|
|
// 物品类型
|
|
|
|
itemType: 1,//选择的物品类型
|
|
|
|
itemTypeRange: 1, //物品类型范围
|
|
|
|
item: '',//选择的物品
|
|
|
|
|
|
|
|
// 仓库 库位
|
|
|
|
warehouseType: 1,//选择的是仓库/库区/库位组/库位类型
|
|
|
|
warehouseTypeRange: 1, //物品类型范围
|
|
|
|
warehouse: '',//选择的仓库/库区/库位组/库位
|
|
|
|
|
|
|
|
maxInventory: 0,//最大库存
|
|
|
|
minInventory: 0,//最小库存
|
|
|
|
safeInventory: 0,//安全库存
|
|
|
|
number: 0,//补料数量
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 弹窗按钮
|
|
|
|
const Butttondata = [
|
|
|
|
defaultButtons.formSaveBtn(null), // 保存
|
|
|
|
defaultButtons.formCloseBtn(null), // 关闭
|
|
|
|
]
|
|
|
|
// 按钮事件
|
|
|
|
const buttonBaseClick = (val, item) => {
|
|
|
|
// 保存
|
|
|
|
if (val == 'save') {
|
|
|
|
submitForm()
|
|
|
|
}
|
|
|
|
// 关闭
|
|
|
|
else if (val == 'close') {
|
|
|
|
dialogVisible.value = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 存储类型全选
|
|
|
|
const checkAll = ref(false)
|
|
|
|
const isIndeterminate = ref(false)
|
|
|
|
const handleCheckAllChange = (val: boolean) => {
|
|
|
|
console.log(formData.value.storageType);
|
|
|
|
formData.value.storageType = val ? options.storageTypeOptions : []
|
|
|
|
console.log(formData.value.storageType);
|
|
|
|
|
|
|
|
isIndeterminate.value = false
|
|
|
|
}
|
|
|
|
const handleCheckedCitiesChange = (value: string[]) => {
|
|
|
|
const checkedCount = value.length
|
|
|
|
checkAll.value = checkedCount === options.storageTypeOptions.length
|
|
|
|
isIndeterminate.value = checkedCount > 0 && checkedCount < options.storageTypeOptions.length
|
|
|
|
}
|
|
|
|
|
|
|
|
// 替代存储类型全选
|
|
|
|
const replaceCheckAll = ref(false)
|
|
|
|
const replaceIsIndeterminate = ref(false)
|
|
|
|
const replaceHandleCheckAllChange = (val: boolean) => {
|
|
|
|
console.log(formData.value.storageType);
|
|
|
|
formData.value.replaceStorageType = val ? options.storageTypeOptions : []
|
|
|
|
console.log(formData.value.storageType);
|
|
|
|
|
|
|
|
replaceIsIndeterminate.value = false
|
|
|
|
}
|
|
|
|
const replaceHandleCheckedCitiesChange = (value: string[]) => {
|
|
|
|
const checkedCount = value.length
|
|
|
|
replaceCheckAll.value = checkedCount === options.storageTypeOptions.length
|
|
|
|
replaceIsIndeterminate.value = checkedCount > 0 && checkedCount < options.storageTypeOptions.length
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
.item {
|
|
|
|
border: 1px solid #dedede;
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 30px 30px 5px;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.title {
|
|
|
|
position: absolute;
|
|
|
|
background: white;
|
|
|
|
padding: 0px 10px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
height: 30px;
|
|
|
|
line-height: 30px;
|
|
|
|
margin-top: -15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkbox {
|
|
|
|
background: #f5f5f5;
|
|
|
|
flex: 1;
|
|
|
|
padding: 0px 15px;
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
::v-deep .flex-top .el-form-item__content {
|
|
|
|
align-items: flex-start !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
::v-deep .err-240 .el-form-item__error {
|
|
|
|
padding-left: 240px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
::v-deep .err-120 .el-form-item__error {
|
|
|
|
padding-left: 120px !important;
|
|
|
|
}
|
|
|
|
</style>
|