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.
806 lines
29 KiB
806 lines
29 KiB
<!-- 批次策略弹窗 -->
|
|
<template>
|
|
<Dialog :title="dialogTitle" v-model="dialogVisible" width="800px">
|
|
<div class="p-20px m--10px" style="max-height: 80vh; overflow-y: auto">
|
|
<el-form
|
|
ref="formRef"
|
|
:model="formData"
|
|
:rules="rules"
|
|
label-width="120px"
|
|
label-position="left"
|
|
>
|
|
<!-- 规则 -->
|
|
<div class="item">
|
|
<div class="title">规则</div>
|
|
<el-row key="规则row">
|
|
<el-col :span="24" key="代码col">
|
|
<el-form-item key="代码formItem" label="代码" prop="strategyCode">
|
|
<el-input key="代码input"
|
|
v-model="formData.strategyCode"
|
|
placeholder="请输入代码"
|
|
clearable
|
|
disabled
|
|
/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="24" key="名称col">
|
|
<el-form-item label="名称" prop="name" key="名称formItem">
|
|
<el-input key="名称input" v-model="formData.name" placeholder="请输入名称" clearable :disabled="formData.priority==0&&formType=='update'"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="24" key="描述col">
|
|
<el-form-item label="描述" prop="description" key="描述formItem">
|
|
<el-input key="描述input" v-model="formData.description" placeholder="请输入描述" clearable :disabled="formData.priority==0&&formType=='update'"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12" key="优先级col">
|
|
<el-form-item label="优先级" prop="priority" key="优先级formItem">
|
|
<el-input-number key="优先级input" v-model="formData.priority" :min="formData.priority==0&&formType=='update'?0:1" :disabled="formData.priority==0&&formType=='update'"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12" key="状态col">
|
|
<el-form-item label="状态" prop="status" key="状态formItem">
|
|
<el-switch key="状态input" v-model="formData.status" :disabled="formData.priority==0&&formType=='update'"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</div>
|
|
|
|
<!-- 规则条件 -->
|
|
<div class="item mt-20px">
|
|
<div class="title">规则条件</div>
|
|
<el-row key="规则条件row">
|
|
<el-col :span="24" v-for="(item, index) in formData.condition" :key="'规则条件col'+index">
|
|
<!-- 选择供应商和客户 -->
|
|
<el-form-item :key="'供应商formItem'+index" label="" label-width="0" class="err-240" v-if="index == 0">
|
|
<el-select :key="'供应商title'+index"
|
|
v-model="item.ParamCode"
|
|
placeholder=""
|
|
style="width: 110px; margin-right: 10px"
|
|
@change="changeSupplierCustomer"
|
|
:disabled="formData.priority==0&&formType=='update'"
|
|
>
|
|
<el-option
|
|
:label="cur.label"
|
|
:value="cur.value"
|
|
v-for="(cur, index) in options.typeOptions"
|
|
:key="'供应商titleOption'+index+cur.value"
|
|
/>
|
|
</el-select>
|
|
<el-select :key="'供应商Operator'+index"
|
|
v-model="item.Operator"
|
|
placeholder="请选择范围"
|
|
style="width: 110px; margin-right: 10px"
|
|
:disabled="formData.priority==0&&formType=='update'"
|
|
>
|
|
<el-option
|
|
:label="cur.label"
|
|
:value="cur.value"
|
|
v-for="cur in options.rangeOptions1"
|
|
:key="'供应商OperatorOption'+index+cur.value"
|
|
/>
|
|
</el-select>
|
|
<el-input key="客户Value" style="flex:1" placeholder="请选择客户" v-model="item.Value" @blur="blurWarehouse({module:'condition',type:'CustomerCode'})" v-if="item.ParamCode == 'CustomerCode'" :disabled="formData.priority==0&&formType=='update'">
|
|
<template #suffix>
|
|
<el-button :disabled="formData.priority==0&&formType=='update'" type="text" plain style="color:var(--el-button-text-color)" @click.stop="searchWarehouse({ module: 'condition', type: 'CustomerCode' })">
|
|
<Icon icon="ep:search" class="mr-5px" />
|
|
</el-button>
|
|
</template>
|
|
</el-input>
|
|
<el-input key="供应商Value" style="flex:1" placeholder="请选择供应商" v-model="item.Value" @blur="blurWarehouse({module:'condition',type:'SupplierCode'})" v-if="item.ParamCode == 'SupplierCode'" :disabled="formData.priority==0&&formType=='update'">
|
|
<template #suffix>
|
|
<el-button :disabled="formData.priority==0&&formType=='update'" type="text" plain style="color:var(--el-button-text-color)" @click.stop="searchWarehouse({ module: 'condition', type: 'SupplierCode' })">
|
|
<Icon icon="ep:search" class="mr-5px" />
|
|
</el-button>
|
|
</template>
|
|
</el-input>
|
|
</el-form-item>
|
|
<!-- 选择物料类型 -->
|
|
<el-form-item :key="'物料类型formItem'+index" label="" label-width="0" class="err-240" v-if="index == 1">
|
|
<el-select :key="'物料类型title'+index"
|
|
v-model="item.ParamCode"
|
|
placeholder=""
|
|
@change="changeItemsType"
|
|
style="width: 110px; margin-right: 10px"
|
|
:disabled="formData.priority==0&&formType=='update'"
|
|
>
|
|
<el-option
|
|
:label="item.label"
|
|
:value="item.value"
|
|
v-for="item in options.itemTypeOptions"
|
|
:key="'物料类型title'+index+item.value"
|
|
/>
|
|
</el-select>
|
|
<el-select :key="'物料类型Operator'+index"
|
|
v-model="item.Operator"
|
|
placeholder="请选择范围"
|
|
style="width: 110px; margin-right: 10px"
|
|
:disabled="formData.priority==0&&formType=='update'"
|
|
>
|
|
<el-option
|
|
:label="cur.label"
|
|
:value="cur.value"
|
|
v-for="cur in options.rangeOptions1"
|
|
:key="'物料类型Operator'+index+cur.value"
|
|
/>
|
|
</el-select>
|
|
<el-select :key="'物料类型Value'+index"
|
|
v-model="item.Value"
|
|
placeholder="请选择物料类型"
|
|
style="flex: 1"
|
|
clearable
|
|
multiple
|
|
collapse-tags
|
|
v-if="item.ParamCode == 'ItemType'"
|
|
:disabled="formData.priority==0&&formType=='update'"
|
|
>
|
|
<el-option
|
|
v-for="cur in getStrDictOptions(DICT_TYPE.ITEM_TYPE)"
|
|
:key="'物料类型Value'+index+cur.value"
|
|
:label="cur.label"
|
|
:value="cur.value"
|
|
/>
|
|
</el-select>
|
|
<el-select :key="'ABC类Value'+index"
|
|
v-model="item.Value"
|
|
placeholder="请选择ABC类"
|
|
style="flex: 1"
|
|
clearable
|
|
multiple
|
|
collapse-tags
|
|
v-else-if="item.ParamCode == 'AbcClass'"
|
|
:disabled="formData.priority==0&&formType=='update'"
|
|
>
|
|
<el-option
|
|
v-for="cur in getStrDictOptions(DICT_TYPE.ABC_CLASS)"
|
|
:key="'ABC类Value'+index+cur.value"
|
|
:label="cur.label"
|
|
:value="cur.value"
|
|
/>
|
|
</el-select>
|
|
<el-input :key="'物料分组Value'+index"
|
|
v-model="item.Value"
|
|
placeholder="请输入物料分组,多个物料分组以逗号分隔"
|
|
clearable
|
|
style="flex: 1"
|
|
v-else-if="item.ParamCode == 'ItemGroup'"
|
|
:disabled="formData.priority==0&&formType=='update'"
|
|
/>
|
|
<el-input :key="'项目Value'+index"
|
|
v-model="item.Value"
|
|
placeholder="请输入项目,多个项目以逗号分隔"
|
|
clearable
|
|
style="flex: 1"
|
|
v-else-if="item.ParamCode == 'Project'"
|
|
:disabled="formData.priority==0&&formType=='update'"
|
|
/>
|
|
<el-input key="物料Value" style="flex:1" placeholder="请选择物料" v-model="item.Value" @blur="blurWarehouse({module:'condition',type:'ItemCode'})" v-else-if="item.ParamCode == 'ItemCode'">
|
|
<template #suffix>
|
|
<el-button :disabled="formData.priority==0&&formType=='update'" type="text" plain style="color:var(--el-button-text-color)" @click.stop="searchWarehouse({ module: 'condition', type: 'ItemCode' })"
|
|
>
|
|
<Icon icon="ep:search" class="mr-5px" />
|
|
</el-button>
|
|
</template>
|
|
</el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</div>
|
|
<!-- 规则配置 -->
|
|
<div class="item mt-20px">
|
|
<div class="title">规则配置</div>
|
|
<el-row gutter="10" key="规则配置row">
|
|
<el-col :span="24" key="规则配置col">
|
|
<!-- 存储类型 -->
|
|
<el-form-item key="存储类型formItem" label="" label-width="0" class="flex-top" prop="configurationRules">
|
|
<div
|
|
style="width: 100%; display: flex; align-items: center; margin-bottom: 10px"
|
|
v-for="(cur, key) in formData.configuration.ManagementPrecision"
|
|
:key="'存储类型div'+key"
|
|
>
|
|
<div style="width: 26px; display: flex">
|
|
<Icon :key="'存储类型icon'+key"
|
|
icon="ep:remove"
|
|
color="#757575"
|
|
size="26"
|
|
style="cursor: pointer"
|
|
@click="
|
|
handleDeleteTable(formData.configuration.ManagementPrecision, cur, key)
|
|
"
|
|
v-if="formData?.configuration?.ManagementPrecision?.length > 1"
|
|
/>
|
|
</div>
|
|
<div class="flex w-[28%]">
|
|
<div class="ml-10px mr-10px">批次类型</div>
|
|
<el-select :key="'批次类型'+key" v-model="cur.BatchType" placeholder="请选择批次类型" style="flex: 1">
|
|
<el-option
|
|
v-for="it in getStrDictOptions(DICT_TYPE.BATCH_TYPE)"
|
|
:key="'批次类型'+key+it.value"
|
|
:label="it.label"
|
|
:value="it.value"
|
|
/>
|
|
</el-select>
|
|
</div>
|
|
<div class="flex w-[28%]">
|
|
<div class="ml-10px mr-10px">批次格式</div>
|
|
<el-input :key="'批次格式'+key"
|
|
v-model="cur.BatchFormat"
|
|
placeholder="yyyyMMDD"
|
|
clearable
|
|
style="flex: 1"
|
|
@blur="inputBlur"
|
|
/>
|
|
</div>
|
|
<div class="flex" style="flex: 1">
|
|
<div class="ml-10px mr-10px">批次方向</div>
|
|
<div class="checkbox">
|
|
<el-radio-group :key="'批次方向'+key" v-model="cur.BatchDirection">
|
|
<el-radio
|
|
:label="cur.value"
|
|
v-for="cur in getStrDictOptions(DICT_TYPE.BATCH_DIRECTION)"
|
|
:key="'批次方向'+key+cur.value"
|
|
>{{ cur.label }}</el-radio
|
|
>
|
|
</el-radio-group>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="button flex">
|
|
<div @click="handleAddTable(formData.configuration.ManagementPrecision)">
|
|
<Icon icon="ep:circle-plus" color="#409eff" size="26" style="cursor: pointer" />
|
|
<div>添加条件</div>
|
|
</div>
|
|
</div>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</div>
|
|
</el-form>
|
|
</div>
|
|
<template #footer>
|
|
<!-- 按钮-->
|
|
<TableHead :HeadButttondata="Butttondata" @buttonBaseClick="buttonBaseClick" />
|
|
</template>
|
|
</Dialog>
|
|
<SearchTable
|
|
ref="searchTableRef"
|
|
@searchTableSuccess="searchTableSuccess"
|
|
/>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import * as defaultButtons from '@/utils/disposition/defaultButtons'
|
|
defineOptions({ name: 'UpShelfStrategyAddForm' })
|
|
import { getSupplierList } from '@/api/wms/supplier'
|
|
import { getCustomerList } from '@/api/wms/customer'
|
|
import * as RuleApi from '@/api/wms/rule'
|
|
import { isString } from '@/utils/is'
|
|
|
|
import * as ItembasicApi from '@/api/wms/itembasic'
|
|
import { Itembasic } from '@/views/wms/basicDataManage/itemManage/itembasic/itembasic.data'
|
|
|
|
import * as SupplierApi from '@/api/wms/supplier'
|
|
import { Supplier } from '@/views/wms/basicDataManage/supplierManage/supplier/supplier.data'
|
|
import { Customer, CustomerRules } from '@/views/wms/basicDataManage/customerManage/customer/customer.data'
|
|
import * as CustomerApi from '@/api/wms/customer'
|
|
import { DICT_TYPE, getStrDictOptions } from '@/utils/dict'
|
|
import { json } from 'stream/consumers'
|
|
|
|
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 formRef = ref() // 表单 Ref
|
|
|
|
const formStrategyCode = ref('')
|
|
// form表单数据
|
|
const formData = ref({
|
|
id: '',
|
|
strategyCode: formStrategyCode.value, //策略代码id
|
|
name: '', //名称
|
|
description: '', //描述
|
|
priority: '', //优先级
|
|
status: true, //状态
|
|
//规则条件集合
|
|
condition: [
|
|
// 供应商
|
|
{ ParamCode: 'SupplierCode', Operator: 'IN', Value: '' },
|
|
// 物料类型/物料分组/物料/abc类/项目/
|
|
{ ParamCode: 'ItemType', Operator: 'IN', Value: '' }
|
|
],
|
|
configuration: {
|
|
// 管理精度
|
|
ManagementPrecision: [
|
|
{
|
|
BatchType: 'ARRIVE_TIME',
|
|
BatchFormat: '',
|
|
BatchDirection: 'ASC'
|
|
}
|
|
]
|
|
},
|
|
configurationRules: '1' //规则配置验证
|
|
})
|
|
// 验证规则
|
|
const rules = ref({
|
|
strategyCode: [{ required: true, message: '请输入代码', trigger: 'blur' },{ max: 50, message: '不得超过50个字符', trigger: 'blur' }],
|
|
name: [{ required: true, message: '请输入名字', trigger: 'blur' },{ max: 50, message: '不得超过50个字符', trigger: 'blur' }],
|
|
description: [{ required: true, message: '请输入描述', trigger: 'blur' },{ max: 50, message: '不得超过50个字符', trigger: 'blur' }],
|
|
priority: [{ required: true, message: '请输入优先级', trigger: 'blur' }],
|
|
configurationRules: [{ required: true, message: '规则配置请填写完全', trigger: 'blur' }]
|
|
})
|
|
|
|
// 所有的范围类型
|
|
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
|
|
}
|
|
|
|
// 下拉框列表集合
|
|
const options = reactive({
|
|
//范围下拉框列表
|
|
rangeOptions1: formatRangeOptions('IN', 'NOT IN'),
|
|
rangeOptions2: formatRangeOptions('IN'),
|
|
// 供应商客户下拉框列表
|
|
typeOptions: [
|
|
{ value: 'SupplierCode', label: '供应商' },
|
|
{ value: 'CustomerCode', label: '客户' }
|
|
],
|
|
//供应商列表
|
|
supplierList: [],
|
|
// 物料类型列表
|
|
itemTypeOptions: [
|
|
{ value: 'ItemType', label: '物料类型' },
|
|
{ value: 'ItemGroup', label: '物料分组' },
|
|
{ value: 'ItemCode', label: '物料' },
|
|
{ value: 'Project', label: '项目' },
|
|
{ value: 'AbcClass', label: 'ABC类' }
|
|
]
|
|
})
|
|
// 弹窗按钮
|
|
const Butttondata = ref([
|
|
defaultButtons.formSaveBtn(null), // 保存
|
|
defaultButtons.formCloseBtn(null) // 关闭
|
|
])
|
|
// 按钮事件
|
|
const buttonBaseClick = (val, item) => {
|
|
// 保存
|
|
if (val == 'save') {
|
|
submitForm()
|
|
}
|
|
// 关闭
|
|
else if (val == 'close') {
|
|
dialogVisible.value = false
|
|
}
|
|
}
|
|
// 获取供应商列表
|
|
const getFormSupplierList = async () => {
|
|
options.supplierList = await getSupplierList()
|
|
}
|
|
// 获取客户列表
|
|
const getFormCustomerList = async () => {
|
|
options.supplierList = await getCustomerList()
|
|
}
|
|
// 选择客户还是承运商
|
|
const changeSupplierCustomer = (e) => {
|
|
formData.value.condition[0].Value = ''
|
|
if (e == 'CustomerCode') {
|
|
getFormCustomerList()
|
|
} else if (e == 'SupplierCode') {
|
|
getFormSupplierList()
|
|
}
|
|
}
|
|
getFormSupplierList()
|
|
// 选择物料类型/物料分组/abc类/物料/项目
|
|
const changeItemsType = () => {
|
|
formData.value.condition[1].Value = ''
|
|
}
|
|
|
|
/** 打开弹窗 */
|
|
const open = async (type: string, strategyCode: string, id?: number) => {
|
|
formStrategyCode.value = strategyCode
|
|
dialogVisible.value = true
|
|
dialogTitle.value = t('action.' + type)
|
|
formType.value = type
|
|
resetForm()
|
|
// 修改时,设置数据
|
|
if (id) {
|
|
formLoading.value = true
|
|
try {
|
|
let data = await RuleApi.getRule(id)
|
|
formData.value.id = data.id
|
|
formData.value.strategyCode = data.strategyCode
|
|
formData.value.name = data.name
|
|
formData.value.description = data.description
|
|
formData.value.priority = data.priority
|
|
formData.value.status = data.status == 0 ? true : false
|
|
// if (formData.value.priority == 0) {
|
|
// Butttondata.value = [
|
|
// defaultButtons.formSaveBtn({ disabled: true }), // 保存
|
|
// defaultButtons.formCloseBtn(null) // 关闭
|
|
// ]
|
|
// } else {
|
|
Butttondata.value = [
|
|
defaultButtons.formSaveBtn(null), // 保存
|
|
defaultButtons.formCloseBtn(null) // 关闭
|
|
]
|
|
// }
|
|
if (data.condition) {
|
|
formData.value.condition = JSON.parse(data.condition)
|
|
formData.value.condition.forEach((item, index) => {
|
|
if (item.Operator == 'IN' || item.Operator == 'NOT IN') {
|
|
item.Value = item.Value.split(',')
|
|
}
|
|
})
|
|
}
|
|
if (data.configuration) {
|
|
formData.value.configuration = JSON.parse(data.configuration)
|
|
if(!formData.value.configuration.ManagementPrecision){
|
|
formData.value.configuration.ManagementPrecision = []
|
|
}
|
|
}
|
|
// 判断是获取客户列表还是供应上列表
|
|
if (formData.value.condition[0].ParamCode == 'SupplierCode') {
|
|
getFormSupplierList()
|
|
} else {
|
|
getFormCustomerList()
|
|
}
|
|
} finally {
|
|
formLoading.value = false
|
|
}
|
|
} else {
|
|
Butttondata.value = [
|
|
defaultButtons.formSaveBtn(null), // 保存
|
|
defaultButtons.formCloseBtn(null) // 关闭
|
|
]
|
|
}
|
|
}
|
|
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
|
|
|
/** 提交表单 */
|
|
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
|
|
const hasSameData = (array)=>{
|
|
const set = new Set(array.map(JSON.stringify))
|
|
return set.size !== array.length
|
|
}
|
|
const submitForm = async () => {
|
|
// 校验表单
|
|
inputBlur()
|
|
if (!formRef) return
|
|
const valid = await formRef.value.validate()
|
|
if (!valid) return
|
|
// if (formData.value.priority == 0) {
|
|
// message.error('优先级不可以为0')
|
|
// return
|
|
// }
|
|
if (hasSameData( formData.value.configuration.ManagementPrecision)) {
|
|
message.error('规则配置数据重复,请重新填写')
|
|
return;
|
|
}
|
|
// 提交请求
|
|
formLoading.value = true
|
|
try {
|
|
const arr = formData.value.condition.map(item=> {
|
|
let str = item.Value
|
|
if(isString(item.Value)){
|
|
if(item.Value.indexOf(','>-1)){
|
|
str = item.Value.split(',').join(',')
|
|
}
|
|
}
|
|
if ((item.Operator == 'IN' || item.Operator == 'NOT IN')&& Array.isArray(item.Value)) {
|
|
str = item.Value.join(',')
|
|
}
|
|
|
|
return {
|
|
ParamCode:item.ParamCode,
|
|
Operator:item.Operator,
|
|
Value:str
|
|
}
|
|
})
|
|
|
|
let data = {
|
|
id: formData.value.id,
|
|
strategyCode: formData.value.strategyCode, //策略代码
|
|
name: formData.value.name, //名称
|
|
description: formData.value.description, //描述
|
|
priority: formData.value.priority, //优先级
|
|
status: formData.value.status ? 0 : 1, //状态
|
|
//规则条件集合
|
|
condition: JSON.stringify(arr),
|
|
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
|
|
}
|
|
}
|
|
|
|
/** 重置表单 */
|
|
const resetForm = () => {
|
|
formData.value = {
|
|
id: '',
|
|
strategyCode: formStrategyCode.value, //策略代码id
|
|
name: '', //名称
|
|
description: '', //描述
|
|
priority: '', //优先级
|
|
status: true, //状态
|
|
//规则条件集合
|
|
condition: [
|
|
// 供应商
|
|
{ ParamCode: 'SupplierCode', Operator: 'IN', Value: '' },
|
|
// 物料类型/物料分组/物料/abc类/项目/
|
|
{ ParamCode: 'ItemType', Operator: 'IN', Value: '' }
|
|
],
|
|
configuration: {
|
|
// 管理精度
|
|
ManagementPrecision: [
|
|
{
|
|
BatchType: 'ARRIVE_TIME',
|
|
BatchFormat: '',
|
|
BatchDirection: 'ASC'
|
|
}
|
|
]
|
|
},
|
|
configurationRules: '1' //规则配置验证
|
|
}
|
|
}
|
|
|
|
// 添加规则配置
|
|
const handleAddTable = (item) => {
|
|
item.push({
|
|
BatchType: 'ARRIVE_TIME',
|
|
BatchFormat: '',
|
|
BatchDirection: 'ASC'
|
|
})
|
|
}
|
|
// 删除规则配置
|
|
const handleDeleteTable = (item, cur, key) => {
|
|
item.splice(key, 1)
|
|
}
|
|
//失去焦点的时候验证
|
|
const inputBlur = () => {
|
|
let arr = []
|
|
formData.value.configuration.ManagementPrecision.forEach((item) => {
|
|
let bol = false
|
|
if (!item.BatchFormat) {
|
|
bol = false
|
|
} else {
|
|
bol = true
|
|
}
|
|
arr.push(bol)
|
|
})
|
|
const isEmpty = arr.some((cur) => {
|
|
return !cur
|
|
})
|
|
if (isEmpty) {
|
|
formData.value.configurationRules = ''
|
|
return
|
|
} else {
|
|
formData.value.configurationRules = '1'
|
|
}
|
|
}
|
|
const searchTableRef = ref()
|
|
const searchTableModule = ref('') // 条件 / 配置
|
|
const searchWarehouse = ({module='config',type})=>{
|
|
searchTableModule.value = module
|
|
// module: config 配置 condition 条件
|
|
if(module=='condition'&&type=='CustomerCode' || module=='config'&&warehouseType.value == 'CustomerCode'){
|
|
// 客户
|
|
searchTableRef.value.open(
|
|
'请选择客户',
|
|
Customer.allSchemas,
|
|
CustomerApi.getCustomerPage,
|
|
'CustomerCode',
|
|
'code',
|
|
true,
|
|
undefined,
|
|
undefined,
|
|
undefined
|
|
)
|
|
}else if(module=='condition'&&type=='SupplierCode' || module=='config'&&warehouseType.value == 'SupplierCode'){
|
|
// 供应商
|
|
searchTableRef.value.open(
|
|
'请选择供应商',
|
|
Supplier.allSchemas,
|
|
SupplierApi.getSupplierPage,
|
|
'SupplierCode',
|
|
'code',
|
|
true,
|
|
undefined,
|
|
undefined,
|
|
undefined
|
|
)
|
|
}else if(module=='condition'&&type=='ItemCode' || module=='config'&&warehouseType.value == 'ItemCode'){
|
|
searchTableRef.value.open(
|
|
'请选择物料',
|
|
Itembasic.allSchemas,
|
|
ItembasicApi.getItembasicPage,
|
|
'ItemCode',
|
|
'code',
|
|
true,
|
|
undefined,
|
|
undefined,
|
|
undefined
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
const warehouseType = ref('')
|
|
const blurWarehouse = async ({module='config',type})=>{
|
|
|
|
// 校验的值
|
|
let warehouseValue = formData.value.configuration[warehouseType.value]
|
|
let conditionObj = null
|
|
if(module=='condition'){
|
|
// 规则条件
|
|
conditionObj = formData.value.condition.find(item=>item['ParamCode']==type)
|
|
if(conditionObj){
|
|
warehouseValue = conditionObj['Value']
|
|
}
|
|
// { value: 'WarehouseCode', label: '仓库' },
|
|
// { value: 'AreaCode', label: '库区' },
|
|
// { value: 'LocationGroupCode', label: '库位组' },
|
|
// { value: 'LocationCode', label: '库位' }
|
|
}
|
|
if(!warehouseValue){
|
|
return
|
|
}
|
|
let verifyRes = []
|
|
if(module=='condition'&&type=='CustomerCode' || module=='config'&&warehouseType.value == 'CustomerCode'){
|
|
// 客户
|
|
verifyRes = await CustomerApi.getCustomerByCodes({
|
|
codes:warehouseValue
|
|
})
|
|
console.log('客户verifyRes',verifyRes)
|
|
}else if(module=='condition'&&type=='SupplierCode' || module=='config'&&warehouseType.value == 'SupplierCode'){
|
|
// 供应商
|
|
verifyRes = await SupplierApi.getSupplierListByCodes({
|
|
codes:warehouseValue
|
|
})
|
|
console.log('供应商verifyRes',verifyRes)
|
|
}else if(module=='condition'&&type=='ItemCode' || module=='config'&&warehouseType.value == 'ItemCode'){
|
|
// 物料
|
|
verifyRes = await ItembasicApi.getItemListByCodes({
|
|
codes:warehouseValue
|
|
})
|
|
console.log('物料verifyRes',verifyRes)
|
|
}
|
|
if(verifyRes&&verifyRes.length>0){
|
|
let verifyList = verifyRes.map(item=>(item['code']))
|
|
if(module=='condition'){
|
|
// 条件
|
|
let codeList = warehouseValue.split(',')
|
|
conditionObj['Value'] = codeList.filter(item=>verifyList.indexOf(item)>-1).join(',')
|
|
const str = codeList.filter(item => verifyList.indexOf(item) == -1).join(',')
|
|
if (str) {
|
|
message.alert('代码' + str + '没有找到对应数据')
|
|
}
|
|
}else{
|
|
// 配置
|
|
let codeList = formData.value.configuration[warehouseType.value].split(',')
|
|
formData.value.configuration[warehouseType.value] = codeList.filter(item=>verifyList.indexOf(item)>-1).join(',')
|
|
const str = codeList.filter(item => verifyList.indexOf(item) == -1).join(',')
|
|
if (str) {
|
|
message.alert('代码' + str + '没有找到对应数据')
|
|
}
|
|
}
|
|
|
|
|
|
}else{
|
|
if(module=='condition'){
|
|
message.alert('代码' + conditionObj['Value'] + '没有找到对应数据')
|
|
// 条件
|
|
conditionObj['Value'] = ''
|
|
}else{
|
|
message.alert('代码' + formData.value.configuration[warehouseType.value] + '没有找到对应数据')
|
|
formData.value.configuration[warehouseType.value] = ''
|
|
}
|
|
}
|
|
if(module!='condition'){
|
|
let fields = ['WarehouseCode','AreaCode','LocationGroupCode','LocationCode']
|
|
fields.forEach(item=>{
|
|
if(item!=warehouseType.value){
|
|
formData.value.configuration[item] = ''
|
|
}
|
|
})
|
|
}
|
|
}
|
|
const searchTableSuccess = (formField, searchField, val, type, row) => {
|
|
|
|
if(searchTableModule.value == 'condition'){
|
|
// module: config 配置 condition 条件
|
|
// 仓库 库区 库位 库位组
|
|
let conditionObj = formData.value.condition.find(item=>['ItemCode','WarehouseCode','AreaCode','LocationGroupCode','LocationCode'].includes(item['ParamCode']))
|
|
conditionObj['Value'] = val.map(item=>(item['code'])).join(',')
|
|
}else{
|
|
// 配置
|
|
// 仓库 库区 库位 库位组
|
|
formData.value.configuration[warehouseType.value] = val.map(item=>(item['code'])).join(',')
|
|
let fields = ['WarehouseCode','AreaCode','LocationGroupCode','LocationCode']
|
|
fields.forEach(item=>{
|
|
if(item!=warehouseType.value){
|
|
formData.value.configuration[item] = ''
|
|
}
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
</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;
|
|
}
|
|
|
|
.button {
|
|
> div {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
|
|
> div {
|
|
margin-left: 6px;
|
|
text-decoration: underline;
|
|
color: #409eff;
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|