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.
392 lines
8.3 KiB
392 lines
8.3 KiB
import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
|
|
import { dateFormatter } from '@/utils/formatTime'
|
|
|
|
import * as CustomerApi from '@/api/wms/customer'
|
|
import { Customer } from '../customer/customer.data'
|
|
|
|
import * as ItembasicApi from '@/api/wms/itembasic'
|
|
import { Itembasic } from '../../itemManage/itembasic/itembasic.data'
|
|
|
|
import {validateYS} from '@/utils/validator'
|
|
|
|
const { t } = useI18n() // 国际化
|
|
|
|
/**
|
|
* @returns {Array} 客户物料
|
|
*/
|
|
export const Customeritem = useCrudSchemas(reactive<CrudSchema[]>([
|
|
{
|
|
label: '客户代码',
|
|
field: 'customerCode',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150,
|
|
fixed: 'left'
|
|
},
|
|
form: {
|
|
// labelMessage: '信息提示说明!!!',
|
|
componentProps: {
|
|
enterSearch:true,
|
|
isSearchList: true, // 开启查询弹窗
|
|
searchListPlaceholder: '请选择客户代码', // 输入框占位文本
|
|
searchField: 'code', // 查询弹窗赋值字段
|
|
searchTitle: '客户信息', // 查询弹窗标题
|
|
searchAllSchemas: Customer.allSchemas, // 查询弹窗所需类
|
|
searchPage: CustomerApi.getCustomerPage, // 查询弹窗所需分页方法
|
|
searchCondition: [{
|
|
key: 'available',
|
|
value: 'TRUE',
|
|
isMainValue: false
|
|
}],
|
|
// verificationPage: CustomerApi.getCustomerPage, // tableForm下方输入框校验失去焦点之后是否正确的方法
|
|
// 失去焦点校验参数
|
|
verificationParams: [{
|
|
key: 'code',
|
|
action: '==',
|
|
value: '',
|
|
isMainValue: false,
|
|
isSearch: 'true',
|
|
isFormModel: true,
|
|
}]
|
|
},
|
|
|
|
},
|
|
isSearch: true
|
|
},
|
|
{
|
|
label: '物料代码',
|
|
field: 'itemCode',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
form: {
|
|
// labelMessage: '信息提示说明!!!',
|
|
componentProps: {
|
|
enterSearch: true,
|
|
isSearchList: true, // 开启查询弹窗
|
|
searchListPlaceholder: '请选择物料代码', // 输入框占位文本
|
|
searchField: 'code', // 查询弹窗赋值字段
|
|
searchTitle: '物料基础信息', // 查询弹窗标题
|
|
searchAllSchemas: Itembasic.allSchemas, // 查询弹窗所需类
|
|
searchPage: ItembasicApi.getItembasicPage, // 查询弹窗所需分页方法
|
|
searchCondition: [{
|
|
key: 'available',
|
|
value: 'TRUE',
|
|
isMainValue: false
|
|
}],
|
|
// 失去焦点校验参数
|
|
verificationParams: [{
|
|
key: 'code',
|
|
action: '==',
|
|
value: '',
|
|
isMainValue: false,
|
|
isSearch: 'true',
|
|
isFormModel: true,
|
|
}]
|
|
}
|
|
},
|
|
isSearch: true
|
|
},
|
|
{
|
|
label: '背番',
|
|
field: 'itemDesc1',
|
|
sort: 'custom',
|
|
isSearch: true,
|
|
isForm:false,
|
|
hiddenSearchHigh:true,
|
|
table: {
|
|
width: 150
|
|
},
|
|
form:{
|
|
componentProps:{
|
|
disabled: true,
|
|
}
|
|
}
|
|
},
|
|
{
|
|
label: '客户物料代码',
|
|
field: 'customerItemCode',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
isSearch: true
|
|
},
|
|
{
|
|
label: '客户计量单位',
|
|
field: 'customerUom',
|
|
dictType: DICT_TYPE.UOM,
|
|
dictClass: 'string',
|
|
isTable: true,
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
form: {
|
|
componentProps:{
|
|
disabled: true
|
|
}
|
|
}
|
|
},
|
|
{
|
|
label: '转换率',
|
|
field: 'convertRate',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
form: {
|
|
component: 'InputNumber',
|
|
componentProps: {
|
|
min: 0,
|
|
precision: 6
|
|
}
|
|
},
|
|
},
|
|
{
|
|
label: '客户包装单位',
|
|
field: 'packUnit',
|
|
dictType: DICT_TYPE.PACK_UNIT,
|
|
dictClass: 'string',
|
|
isTable: true,
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
},
|
|
{
|
|
label: '客户包装量',
|
|
field: 'packQty',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
form: {
|
|
component: 'InputNumber',
|
|
componentProps: {
|
|
min: 1,
|
|
precision: 6
|
|
}
|
|
},
|
|
},
|
|
{
|
|
label: '客户替代包装单位',
|
|
field: 'altPackUnit',
|
|
dictType: DICT_TYPE.PACK_UNIT,
|
|
dictClass: 'string',
|
|
isTable: true,
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
},
|
|
{
|
|
label: '客户替代包装量',
|
|
field: 'altPackQty',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
form: {
|
|
component: 'InputNumber',
|
|
componentProps: {
|
|
min: 0,
|
|
precision: 6
|
|
}
|
|
},
|
|
},
|
|
{
|
|
label: '每器具包装数',
|
|
field: 'packQtyOfContainer',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
form: {
|
|
component: 'InputNumber',
|
|
componentProps: {
|
|
min: 1,
|
|
precision: 6
|
|
}
|
|
},
|
|
},
|
|
{
|
|
label: '是否可用',
|
|
field: 'available',
|
|
sort: 'custom',
|
|
isSearch:true,
|
|
isForm: false,
|
|
dictType: DICT_TYPE.TRUE_FALSE,
|
|
dictClass: 'string', // 默认都是字符串类型其他暂不考虑
|
|
search: {
|
|
value: 'TRUE',
|
|
},
|
|
form: {
|
|
component: 'Switch',
|
|
value: 'TRUE',
|
|
componentProps: {
|
|
inactiveValue: 'FALSE',
|
|
activeValue: 'TRUE'
|
|
}
|
|
},
|
|
table: {
|
|
width: 110
|
|
}
|
|
},
|
|
{
|
|
label: '生效时间',
|
|
field: 'activeTime',
|
|
isTable: true,
|
|
formatter: dateFormatter,
|
|
detail: {
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss'
|
|
},
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
form: {
|
|
component: 'DatePicker',
|
|
componentProps: {
|
|
style: {width:'100%'},
|
|
type: 'datetime',
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss',
|
|
valueFormat: 'x',
|
|
}
|
|
},
|
|
},
|
|
{
|
|
label: '失效时间',
|
|
field: 'expireTime',
|
|
isTable: true,
|
|
formatter: dateFormatter,
|
|
detail: {
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss'
|
|
},
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
form: {
|
|
component: 'DatePicker',
|
|
componentProps: {
|
|
style: {width:'100%'},
|
|
type: 'datetime',
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss',
|
|
valueFormat: 'x',
|
|
}
|
|
},
|
|
},
|
|
{
|
|
label: '备注',
|
|
field: 'remark',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
},
|
|
{
|
|
label: '创建时间',
|
|
field: 'createTime',
|
|
isForm: false,
|
|
table: {
|
|
width: 180
|
|
},
|
|
formatter: dateFormatter,
|
|
detail: {
|
|
dateFormat : 'YYYY-MM-DD HH:mm:ss'
|
|
},
|
|
form: {
|
|
component: 'DatePicker',
|
|
componentProps: {
|
|
style: {width:'100%'},
|
|
type: 'datetime',
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss',
|
|
valueFormat: 'x',
|
|
}
|
|
}
|
|
},
|
|
{
|
|
label: '创建者',
|
|
field: 'creator',
|
|
table: {
|
|
width: 130
|
|
},
|
|
isForm: false,
|
|
isTable: true
|
|
},
|
|
{
|
|
label: '最后更新时间',
|
|
field: 'updateTime',
|
|
sort: 'custom',
|
|
isDetail: true,
|
|
isForm: false,
|
|
isTable: true,
|
|
formatter: dateFormatter,
|
|
detail: {
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss'
|
|
},
|
|
table: {
|
|
width: 180
|
|
},
|
|
form: {
|
|
component: 'DatePicker',
|
|
componentProps: {
|
|
style: {width:'100%'},
|
|
type: 'datetime',
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss',
|
|
valueFormat: 'x',
|
|
}
|
|
}
|
|
},
|
|
{
|
|
label: '最后更新者',
|
|
field: 'updater',
|
|
isDetail: true,
|
|
isForm: false,
|
|
isTable: true,
|
|
table: {
|
|
width: 150
|
|
}
|
|
},
|
|
{
|
|
label: '操作',
|
|
field: 'action',
|
|
isDetail: false,
|
|
isForm: false ,
|
|
table: {
|
|
width: 150,
|
|
fixed: 'right'
|
|
}
|
|
}
|
|
]))
|
|
|
|
//表单校验
|
|
export const CustomeritemRules = reactive({
|
|
customerCode: [
|
|
{ required: true, message: '请输入客户代码', trigger: 'blur' }
|
|
],
|
|
itemCode: [
|
|
{ required: true, message: '请输入物料代码', trigger: 'blur' }
|
|
],
|
|
packUnit: [
|
|
{ required: true, message: '请选择客户包装单位', trigger: 'change' }
|
|
],
|
|
packQty: [
|
|
{ required: true, message: '请输入客户包装量', trigger: 'blur' }
|
|
],
|
|
packQtyOfContainer: [
|
|
{ required: true, message: '请输入每器具包装数', trigger: 'blur' }
|
|
],
|
|
available: [
|
|
{ required: true, message: '请选择是否可用', trigger: 'change' }
|
|
],
|
|
customerItemCode: [
|
|
{ max: 50, message: '不得超过50个字符', trigger: 'blur' },
|
|
{ validate: validateYS, message: '请输入正确的客户物料代码', trigger: 'blur' }
|
|
],
|
|
remark: [
|
|
{ max: 50, message: '不得超过50个字符', trigger: 'blur' }
|
|
],
|
|
})
|
|
|