You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
443 lines
16 KiB
443 lines
16 KiB
2 years ago
|
|
||
|
<!-- 供应商送货策略弹出层 -->
|
||
2 years ago
|
<template>
|
||
|
<Dialog :title="dialogTitle" v-model="dialogVisible">
|
||
|
<div class="p-20px m--10px" style="max-height: 500px;overflow-y: auto;">
|
||
2 years ago
|
<el-form ref="formRef" :model="formData" :rules="rules" label-width="120px" label-position="left">
|
||
2 years ago
|
<!-- 规则 -->
|
||
|
<div class="item">
|
||
|
<div class="title">规则</div>
|
||
|
<el-row>
|
||
|
<el-col :span="24">
|
||
|
<el-form-item label="代码" prop="strategyCode">
|
||
|
<el-input v-model="formData.strategyCode" placeholder="请输入代码" clearable disabled />
|
||
|
</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="description">
|
||
|
<el-input v-model="formData.description" 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>
|
||
|
</div>
|
||
|
<!-- 规则条件 -->
|
||
|
<div class="item mt-20px">
|
||
|
<div class="title">规则条件</div>
|
||
|
<el-row>
|
||
|
<el-col :span="24" v-for="(item, index) in formData.condition" :key="index">
|
||
|
<!-- 供应商类型 -->
|
||
|
<el-form-item v-if="item.ParamCode == 'SupplierType'" label="供应商类型" class="flex-top err-120">
|
||
|
<el-select v-model="item.Operator" placeholder="请选择范围" style="width: 110px;;margin-right: 10px;">
|
||
|
<el-option :label="cur.label" :value="cur.value" v-for="cur in options.supplierTypeRangeOptions"
|
||
|
:key="cur.value" />
|
||
|
</el-select>
|
||
|
<el-select v-model="item.Value" placeholder="请选择供应商类型" style="flex: 1;" clearable
|
||
|
@change="changeSupplierType">
|
||
|
<el-option v-for="dict in getStrDictOptions(DICT_TYPE.SUPPLIER_TYPE)" :key="dict.value"
|
||
|
:label="dict.label" :value="dict.value" />
|
||
|
</el-select>
|
||
|
</el-form-item>
|
||
|
<!-- 供应商 -->
|
||
|
<el-form-item v-else-if="item.ParamCode == 'SupplierCode'" label="供应商" class="err-120">
|
||
|
<el-select v-model="item.Operator" placeholder="请选择范围" style="width: 110px;margin-right: 10px;">
|
||
|
<el-option :label="cur.label" :value="cur.value" v-for="cur in options.supplierRangeOptions"
|
||
|
:key="cur.value" />
|
||
|
</el-select>
|
||
|
<el-select v-model="item.Value" placeholder="请选择供应商" style="flex: 1;" clearable>
|
||
|
<el-option v-for="cur in options.supplierList" :key="cur.id" :label="cur.name" :value="cur.id" />
|
||
|
</el-select>
|
||
|
</el-form-item>
|
||
|
<!-- 星期几 -->
|
||
|
<el-form-item v-else-if="item.ParamCode == 'Weekday'" label="星期几" class="flex-top err-120">
|
||
|
<el-select v-model="item.Operator" placeholder="请选择范围" style="width: 110px;;margin-right: 10px;">
|
||
|
<el-option :label="cur.label" :value="cur.value" v-for="cur in options.weekRangeOptions"
|
||
|
:key="cur.value" />
|
||
|
</el-select>
|
||
|
<div class="checkbox">
|
||
2 years ago
|
<el-checkbox-group v-model="item.Value">
|
||
2 years ago
|
<el-checkbox :label="cur.label" v-for="cur in options.weekOptions" :key="cur.value" />
|
||
|
</el-checkbox-group>
|
||
|
</div>
|
||
|
</el-form-item>
|
||
|
</el-col>
|
||
|
</el-row>
|
||
|
</div>
|
||
|
<!-- 规则配置 -->
|
||
|
<div class="item mt-20px">
|
||
|
<div class="title">规则配置</div>
|
||
|
<el-row>
|
||
|
<!-- 开始时间 -->
|
||
|
<el-col :span="24" v-for="(item, index) in formData.configuration" :key="index">
|
||
2 years ago
|
<!-- 开始时间 -->
|
||
2 years ago
|
<el-form-item v-if="item.ParamCode == 'BeginTime'" label="开始时间" :prop="'configuration.' + index + '.Value'"
|
||
|
:rules="{
|
||
|
required: true,
|
||
|
message: '请选择开始时间',
|
||
|
trigger: 'change',
|
||
|
}">
|
||
|
<el-time-select v-model="item.Value" start="00:00" end="23:59" step="00:15" placeholder="请选择开始时间"
|
||
|
style="width: 100%;" />
|
||
|
</el-form-item>
|
||
|
<!-- 结束时间 -->
|
||
|
<el-form-item v-else-if="item.ParamCode == 'EndTime'" label="结束时间"
|
||
|
:prop="'configuration.' + index + '.Value'" :rules="{
|
||
|
required: true,
|
||
|
message: '请选择结束时间',
|
||
|
trigger: 'change',
|
||
|
}">
|
||
|
<el-time-select v-model="item.Value" start="00:00" end="23:59" step="00:15" placeholder="请选择结束时间"
|
||
|
style="width: 100%;" />
|
||
|
</el-form-item>
|
||
|
<!-- 仓库 -->
|
||
|
<el-form-item v-else-if="item.ParamCode == 'WarehouseCode'" label="仓库"
|
||
|
:prop="'configuration.' + index + '.Value'" :rules="{
|
||
|
required: true,
|
||
2 years ago
|
message: `请选择${item.ParamCode == 'WarehouseCode' ? '仓库' : item.ParamCode == 'AreaCode' ? '库区' : item.ParamCode == 'LocationGroupCode' ? '库位组' : item.ParamCode == 'LocationCode' ? '库位' : ''}`,
|
||
2 years ago
|
trigger: 'change',
|
||
|
}">
|
||
2 years ago
|
<el-select v-model="item.Value"
|
||
|
:placeholder="`请选择${item.ParamCode == 'WarehouseCode' ? '仓库' : item.ParamCode == 'AreaCode' ? '库区' : item.ParamCode == 'LocationGroupCode' ? '库位组' : item.ParamCode == 'LocationCode' ? '库位' : ''}`"
|
||
|
clearable>
|
||
2 years ago
|
<el-option v-for="cur in options.warehouseList" :key="cur.id" :label="cur.name" :value="cur.id" />
|
||
|
</el-select>
|
||
|
</el-form-item>
|
||
|
<!-- 月台 -->
|
||
|
<el-form-item v-else-if="item.ParamCode == 'DockCode'" label="月台"
|
||
|
:prop="'configuration.' + index + '.Value'" :rules="{
|
||
|
required: true,
|
||
|
message: '请选择月台',
|
||
|
trigger: 'change',
|
||
|
}">
|
||
|
<el-select v-model="item.Value" placeholder="请选择月台" clearable>
|
||
|
<el-option v-for="cur in options.dockList" :key="cur.id" :label="cur.name" :value="cur.id" />
|
||
|
</el-select>
|
||
|
</el-form-item>
|
||
|
<!-- 在途库位 -->
|
||
|
<el-form-item v-else-if="item.ParamCode == 'OnTheWayLocationCode'" label="在途库位"
|
||
|
:prop="'configuration.' + index + '.Value'" :rules="{
|
||
|
required: true,
|
||
|
message: '请选择在途库位',
|
||
|
trigger: 'change',
|
||
|
}">
|
||
|
<el-select v-model="item.Value" placeholder="请选择在途库位" clearable>
|
||
|
<el-option v-for="cur in options.locationList" :key="cur.id" :label="cur.name" :value="cur.id" />
|
||
|
</el-select>
|
||
|
</el-form-item>
|
||
|
</el-col>
|
||
|
</el-row>
|
||
|
</div>
|
||
2 years ago
|
</el-form>
|
||
2 years ago
|
</div>
|
||
|
<template #footer>
|
||
|
<!-- 按钮-->
|
||
|
<TableHead :HeadButttondata="Butttondata" @buttonBaseClick="buttonBaseClick" />
|
||
|
</template>
|
||
|
</Dialog>
|
||
|
</template>
|
||
|
<script setup lang="ts">
|
||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons'
|
||
2 years ago
|
defineOptions({ name: 'SupplieDeliveryStrategyAddForm' })
|
||
2 years ago
|
import { DICT_TYPE, getStrDictOptions } from '@/utils/dict'
|
||
|
import { getSupplierList } from '@/api/wms/supplier'
|
||
|
import { getWarehouseList } from '@/api/wms/warehouse'
|
||
|
import { getDockList } from '@/api/wms/dock'
|
||
|
import { getLocationList } from '@/api/wms/location'
|
||
|
import * as RuleApi from '@/api/wms/rule'
|
||
|
|
||
|
|
||
2 years ago
|
|
||
|
const { t } = useI18n() // 国际化
|
||
|
const message = useMessage() // 消息弹窗
|
||
|
|
||
|
const dialogVisible = ref(false) // 弹窗的是否展示
|
||
|
const dialogTitle = ref('') // 弹窗的标题
|
||
|
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
||
|
const formType = ref('') // 表单的类型:create - 新增;update - 修改
|
||
2 years ago
|
const formRef = ref() // 表单 Ref
|
||
2 years ago
|
|
||
|
const formStrategyCode = ref('')
|
||
2 years ago
|
// form表单数据
|
||
|
const formData = ref({
|
||
2 years ago
|
id: '',
|
||
2 years ago
|
strategyCode: formStrategyCode.value,//策略代码id
|
||
2 years ago
|
name: '',//名称
|
||
2 years ago
|
description: '',//描述
|
||
2 years ago
|
priority: '',//优先级
|
||
2 years ago
|
status: true,//状态
|
||
|
//规则条件集合
|
||
|
condition: [
|
||
|
// 供应商类型
|
||
|
{ ParamCode: 'SupplierType', Operator: "==", Value: "" },
|
||
|
// 供应商
|
||
|
{ ParamCode: 'SupplierCode', Operator: "IN", Value: "" },
|
||
|
// 星期几
|
||
|
{ ParamCode: 'Weekday', Operator: "IN", Value: [] }
|
||
|
],
|
||
|
configuration: [
|
||
|
// 开始时间
|
||
|
{ ParamCode: 'BeginTime', Value: "" },
|
||
|
// 结束时间
|
||
|
{ ParamCode: 'EndTime', Value: "" },
|
||
|
// 仓库代码
|
||
|
{ ParamCode: 'WarehouseCode', Value: '' },
|
||
|
// 月台代码
|
||
|
{ ParamCode: 'DockCode', Value: '' },
|
||
|
// 在途库位代码
|
||
|
{ ParamCode: 'OnTheWayLocationCode', Value: '' },
|
||
|
]
|
||
2 years ago
|
})
|
||
2 years ago
|
|
||
2 years ago
|
// 验证规则
|
||
|
const rules = ref({
|
||
2 years ago
|
strategyCode: [{ required: true, message: '请输入代码', trigger: 'blur' }],
|
||
2 years ago
|
name: [{ required: true, message: '请输入名字', trigger: 'blur' }],
|
||
2 years ago
|
description: [{ required: true, message: '请输入描述', trigger: 'blur' }],
|
||
2 years ago
|
priority: [{ required: true, message: '请输入优先级', trigger: 'blur' }],
|
||
|
})
|
||
2 years ago
|
|
||
|
// 所有的范围类型
|
||
|
const rangeOptions = [
|
||
|
{ value: '==', label: '等于' },
|
||
|
{ value: '!=', label: '不等于' },
|
||
|
{ value: '>', label: '大于' },
|
||
|
{ value: '<', label: '小于' },
|
||
|
{ value: '>=', label: '大于等于' },
|
||
|
{ value: '<=', label: '小于等于' },
|
||
|
{ value: 'IN', label: '包含' },
|
||
|
{ value: 'NOT IN', label: '不包含' },
|
||
|
{ value: 'NULL', label: '为空' },
|
||
|
{ value: 'NOT NULL', label: '不为空' },
|
||
|
]
|
||
|
const formatRangeOptions = (...rest) => {
|
||
|
// 交集
|
||
|
let result = rangeOptions.filter(aItem => rest.some(bItem => aItem.value === bItem));
|
||
|
return result
|
||
|
}
|
||
2 years ago
|
// 下拉框列表集合
|
||
|
const options = reactive({
|
||
2 years ago
|
// 供应商类型范围下拉框列表
|
||
|
supplierTypeRangeOptions: formatRangeOptions('=='),
|
||
|
// 供应商列表
|
||
2 years ago
|
supplierTypeOptions: [],
|
||
2 years ago
|
// 供应商范围下拉框列表
|
||
|
supplierRangeOptions: formatRangeOptions('IN', 'NOT IN'),
|
||
2 years ago
|
//供应商列表
|
||
2 years ago
|
supplierList: [],
|
||
2 years ago
|
// 星期几范围下拉框列表
|
||
|
weekRangeOptions: formatRangeOptions('IN', 'NOT IN'),
|
||
2 years ago
|
//星期几列表
|
||
2 years ago
|
weekOptions: [{ value: 1, label: '星期一' }, { value: 2, label: '星期二' }, { value: 3, label: '星期三' }, { value: 4, label: '星期四' }, { value: 5, label: '星期五' }, { value: 6, label: '星期六' }, { value: 7, label: '星期日' }],
|
||
2 years ago
|
//仓库列表
|
||
2 years ago
|
warehouseList: [],
|
||
2 years ago
|
//月台列表
|
||
2 years ago
|
dockList: [],
|
||
|
//在途库位列表
|
||
|
locationList: [],
|
||
|
})
|
||
|
// 获取供应商列表的参数
|
||
|
const querySupplierParams = ref({
|
||
|
type: ''
|
||
2 years ago
|
})
|
||
2 years ago
|
// 获取供应商列表
|
||
|
const getFormSupplierList = async () => {
|
||
|
options.supplierList = await getSupplierList(querySupplierParams.value);
|
||
|
}
|
||
|
|
||
|
// 选择供应商类型
|
||
|
const changeSupplierType = (e) => {
|
||
|
querySupplierParams.value.type = e
|
||
2 years ago
|
formData.value.condition[1].Value = []
|
||
2 years ago
|
getFormSupplierList()
|
||
|
}
|
||
|
|
||
|
// 获取仓库列表
|
||
|
const getFormWarehouseList = async () => {
|
||
|
options.warehouseList = await getWarehouseList();
|
||
|
}
|
||
|
// 获取月台列表
|
||
|
const getFormDockList = async () => {
|
||
|
options.dockList = await getDockList();
|
||
|
|
||
|
}
|
||
|
// 获取库位列表
|
||
|
const getFormLocationList = async () => {
|
||
|
options.locationList = await getLocationList({ type: 'TRANSPORT' });
|
||
|
}
|
||
|
|
||
|
getFormSupplierList()
|
||
|
getFormWarehouseList()
|
||
|
getFormDockList()
|
||
|
getFormLocationList()
|
||
2 years ago
|
|
||
|
/** 打开弹窗 */
|
||
2 years ago
|
const open = async (type: string, strategyCode: string, id?: number) => {
|
||
|
formStrategyCode.value = strategyCode
|
||
2 years ago
|
dialogVisible.value = true
|
||
|
dialogTitle.value = t('action.' + type)
|
||
|
formType.value = type
|
||
|
resetForm()
|
||
|
// 修改时,设置数据
|
||
2 years ago
|
if (id) {
|
||
|
formLoading.value = true
|
||
|
try {
|
||
|
let data = await RuleApi.getRule(id)
|
||
2 years ago
|
formData.value.id = data.id
|
||
2 years ago
|
formData.value.strategyCode = data.strategyCode
|
||
|
formData.value.name = data.name
|
||
|
formData.value.description = data.description
|
||
|
formData.value.priority = data.priority
|
||
2 years ago
|
formData.value.status = data.status == 0 ? true : false
|
||
2 years ago
|
if (data.condition) {
|
||
2 years ago
|
formData.value.condition = JSON.parse(data.condition)
|
||
|
}
|
||
2 years ago
|
if (data.configuration) {
|
||
2 years ago
|
formData.value.configuration = JSON.parse(data.configuration)
|
||
|
}
|
||
2 years ago
|
|
||
2 years ago
|
querySupplierParams.value.type = formData.value?.condition[0]?.Value || ''
|
||
|
getFormSupplierList()
|
||
2 years ago
|
|
||
2 years ago
|
} finally {
|
||
|
formLoading.value = false
|
||
|
}
|
||
|
}
|
||
2 years ago
|
}
|
||
|
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
||
|
|
||
|
/** 提交表单 */
|
||
|
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
|
||
|
const submitForm = async () => {
|
||
|
// 校验表单
|
||
2 years ago
|
if (!formRef) return
|
||
|
const valid = await formRef.value.validate()
|
||
|
if (!valid) return
|
||
2 years ago
|
// 提交请求
|
||
|
formLoading.value = true
|
||
2 years ago
|
try {
|
||
2 years ago
|
let data = {
|
||
2 years ago
|
id: formData.value.id,
|
||
2 years ago
|
strategyCode: formData.value.strategyCode,//策略代码
|
||
|
name: formData.value.name,//名称
|
||
|
description: formData.value.description,//描述
|
||
|
priority: formData.value.priority,//优先级
|
||
2 years ago
|
status: formData.value.status ? 0 : 1,//状态
|
||
2 years ago
|
//规则条件集合
|
||
|
condition: JSON.stringify(formData.value.condition),
|
||
|
configuration: JSON.stringify(formData.value.configuration)
|
||
|
}
|
||
|
if (formType.value === 'create') {
|
||
|
await RuleApi.createRule(data)
|
||
|
message.success(t('common.createSuccess'))
|
||
|
} else {
|
||
|
await RuleApi.updateRule(data)
|
||
|
message.success(t('common.updateSuccess'))
|
||
|
}
|
||
|
dialogVisible.value = false
|
||
|
// 发送操作成功的事件
|
||
|
emit('success')
|
||
|
} finally {
|
||
|
formLoading.value = false
|
||
|
}
|
||
2 years ago
|
}
|
||
|
|
||
|
/** 重置表单 */
|
||
|
const resetForm = () => {
|
||
|
formData.value = {
|
||
2 years ago
|
id: '',
|
||
2 years ago
|
strategyCode: formStrategyCode.value,//策略代码
|
||
|
name: '',//名称
|
||
|
description: '',//描述
|
||
|
priority: '',//优先级
|
||
|
status: true,//状态
|
||
|
//规则条件集合
|
||
|
condition: [
|
||
|
// 供应商类型
|
||
|
{ ParamCode: 'SupplierType', Operator: "==", Value: "" },
|
||
|
// 供应商
|
||
|
{ ParamCode: 'SupplierCode', Operator: "IN", Value: "" },
|
||
|
// 星期几
|
||
|
{ ParamCode: 'Weekday', Operator: "IN", Value: [] }
|
||
|
],
|
||
|
configuration: [
|
||
|
// 开始时间
|
||
|
{ ParamCode: 'BeginTime', Value: "" },
|
||
|
// 结束时间
|
||
|
{ ParamCode: 'EndTime', Value: "" },
|
||
|
// 仓库代码
|
||
|
{ ParamCode: 'WarehouseCode', Value: '' },
|
||
|
// 月台代码
|
||
|
{ ParamCode: 'DockCode', Value: '' },
|
||
|
// 在途库位代码
|
||
|
{ ParamCode: 'OnTheWayLocationCode', Value: '' },
|
||
|
]
|
||
2 years ago
|
}
|
||
|
}
|
||
|
|
||
|
// 弹窗按钮
|
||
|
const Butttondata = [
|
||
|
defaultButtons.formSaveBtn(null), // 保存
|
||
|
defaultButtons.formCloseBtn(null), // 关闭
|
||
|
]
|
||
|
// 按钮事件
|
||
|
const buttonBaseClick = (val, item) => {
|
||
|
// 保存
|
||
|
if (val == 'save') {
|
||
|
submitForm()
|
||
|
}
|
||
|
// 关闭
|
||
|
else if (val == 'close') {
|
||
|
dialogVisible.value = false
|
||
|
}
|
||
|
}
|
||
|
|
||
|
</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;
|
||
|
}
|
||
2 years ago
|
|
||
2 years ago
|
::v-deep .err-120 .el-form-item__error {
|
||
|
padding-left: 120px !important;
|
||
|
}
|
||
2 years ago
|
</style>
|