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.
833 lines
18 KiB
833 lines
18 KiB
import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
|
|
import { dateFormatter,dateFormatter2 } from '@/utils/formatTime'
|
|
|
|
import * as CustomerApi from '@/api/wms/customer'
|
|
import { Customer } from '@/views/wms/basicDataManage/customerManage/customer/customer.data'
|
|
|
|
import * as CustomerDockApi from '@/api/wms/customerdock'
|
|
import { Customerdock } from '@/views/wms/basicDataManage/customerManage/customerdock/customerdock.data'
|
|
|
|
import * as CustomerItemApi from '@/api/wms/customeritem'
|
|
import { Customeritem } from '@/views/wms/basicDataManage/customerManage/customeritem/customeritem.data'
|
|
|
|
|
|
import { Location } from '@/views/wms/basicDataManage/factoryModeling/location/location.data'
|
|
|
|
import * as WorkstationApi from '@/api/wms/workstation'
|
|
|
|
import * as getPlansettingApi from '@/api/wms/plansetting/index'
|
|
|
|
import * as getBusinessTypeApi from '@/api/wms/businesstype/index'
|
|
|
|
const { t } = useI18n() // 国际化
|
|
|
|
// 获取自动提交自动通过自动执行,跳过任务直接删生成记录的默认值
|
|
const queryParams = {
|
|
pageSize:10,
|
|
pageNo:1,
|
|
code:'DeliverPlan'
|
|
}
|
|
const data = await getPlansettingApi.getPlansettingPage(queryParams)
|
|
const plansettingData =data?.list[0]||{}
|
|
|
|
const businessTypeQueryParams = {
|
|
pageSize:10,
|
|
pageNo:1,
|
|
code:'Deliver'
|
|
}
|
|
const data1 = await getBusinessTypeApi.getBusinesstypePage(businessTypeQueryParams)
|
|
const businessTypeData =data1?.list[0]||{}
|
|
/**
|
|
* @returns {Array} 发货计划主表
|
|
*/
|
|
export const DeliverPlanMain = useCrudSchemas(reactive<CrudSchema[]>([
|
|
{
|
|
label: '单据号',
|
|
field: 'number',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 180,
|
|
fixed: 'left'
|
|
},
|
|
isForm: false,
|
|
isSearch: true
|
|
},
|
|
{
|
|
label: '状态',
|
|
field: 'status',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
dictType: DICT_TYPE.PLAN_STATUS,
|
|
dictClass: 'string',
|
|
isSearch: true,
|
|
isForm:false,
|
|
},
|
|
{
|
|
label: '客户代码',
|
|
field: 'customerCode',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
isSearch: true,
|
|
form: {
|
|
// labelMessage: '信息提示说明!!!',
|
|
componentProps: {
|
|
enterSearch: true,
|
|
isSearchList: true, // 开启查询弹窗
|
|
searchListPlaceholder: '请选择客户代码', // 输入框占位文本
|
|
searchField: 'code', // 查询弹窗赋值字段
|
|
searchTitle: '客户信息', // 查询弹窗标题
|
|
searchAllSchemas: Customer.allSchemas, // 查询弹窗所需类
|
|
searchPage: CustomerApi.getCustomerPage, // 查询弹窗所需分页方法
|
|
searchCondition: [{
|
|
key: 'available',
|
|
value: 'TRUE',
|
|
isMainValue: false
|
|
}]
|
|
}
|
|
}
|
|
},
|
|
{
|
|
label: '客户月台',
|
|
field: 'customerDockCode',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
isTableForm: false,
|
|
isForm: true,
|
|
// tableForm:{
|
|
// isInpuFocusShow: true, // 开启查询弹窗
|
|
// searchListPlaceholder: '请选择客户月台代码',
|
|
// searchField: 'code',
|
|
// searchTitle: '客户月台基础信息',
|
|
// searchAllSchemas: Customerdock.allSchemas,
|
|
// searchPage: CustomerDockApi.pageCustomerCodeToCustomerDock,
|
|
// searchCondition: [{
|
|
// key: 'available',
|
|
// value: 'TRUE',
|
|
// },{
|
|
// key: 'customerCode',
|
|
// value: 'customerCode',
|
|
// isMainValue: true
|
|
// }]
|
|
// },
|
|
form: {
|
|
componentProps: {
|
|
isSearchList: true,
|
|
searchListPlaceholder: '请选择客户月台代码',
|
|
searchField: 'code',
|
|
searchTitle: '客户月台基础信息',
|
|
searchAllSchemas: Customerdock.allSchemas,
|
|
searchPage: CustomerDockApi.pageCustomerCodeToCustomerDock,
|
|
searchCondition: [{
|
|
key: 'available',
|
|
value: 'TRUE',
|
|
isMainValue: false
|
|
},{
|
|
key: 'customerCode',
|
|
value: 'customerCode',
|
|
isMainValue: true
|
|
}]
|
|
}
|
|
},
|
|
},
|
|
{
|
|
label: '发货类型',
|
|
field: 'deliverType',
|
|
sort: 'custom',
|
|
dictType: DICT_TYPE.DELIVER_TYPE,
|
|
dictClass: 'string',
|
|
table: {
|
|
width: 150
|
|
},
|
|
},
|
|
{
|
|
label: '计划日期',
|
|
field: 'planDate',
|
|
formatter: dateFormatter2,
|
|
detail: {
|
|
dateFormat: 'YYYY-MM-DD'
|
|
},
|
|
sort: 'custom',
|
|
table: {
|
|
width: 180
|
|
},
|
|
form: {
|
|
component: 'DatePicker',
|
|
componentProps: {
|
|
style: {width: '100%'},
|
|
type: 'date',
|
|
dateFormat: 'YYYY-MM-DD',
|
|
valueFormat: 'x',
|
|
}
|
|
},
|
|
},
|
|
{
|
|
label: '业务类型',
|
|
field: 'businessType',
|
|
sort: 'custom',
|
|
isForm: false,
|
|
table: {
|
|
width: 150
|
|
},
|
|
isTable: false,
|
|
},
|
|
|
|
{
|
|
label: '创建时间',
|
|
field: 'createTime',
|
|
formatter: dateFormatter,
|
|
detail: {
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss'
|
|
},
|
|
sort: 'custom',
|
|
table: {
|
|
width: 180
|
|
},
|
|
isTable: false,
|
|
form: {
|
|
component: 'DatePicker',
|
|
componentProps: {
|
|
type: 'datetime',
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss',
|
|
valueFormat: 'x',
|
|
}
|
|
},
|
|
isForm: false,
|
|
},
|
|
{
|
|
label: '创建者',
|
|
field: 'creator',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
isTable: false,
|
|
isForm: false,
|
|
},
|
|
{
|
|
label: '开始时间',
|
|
field: 'beginTime',
|
|
formatter: dateFormatter,
|
|
detail: {
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss'
|
|
},
|
|
sort: 'custom',
|
|
table: {
|
|
width: 180
|
|
},
|
|
isTable: false,
|
|
form: {
|
|
component: 'DatePicker',
|
|
componentProps: {
|
|
type: 'datetime',
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss',
|
|
valueFormat: 'x',
|
|
}
|
|
},
|
|
},
|
|
{
|
|
label: '结束时间',
|
|
field: 'endTime',
|
|
formatter: dateFormatter,
|
|
detail: {
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss'
|
|
},
|
|
sort: 'custom',
|
|
table: {
|
|
width: 180
|
|
},
|
|
isTable: false,
|
|
form: {
|
|
component: 'DatePicker',
|
|
componentProps: {
|
|
type: 'datetime',
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss',
|
|
valueFormat: 'x',
|
|
}
|
|
},
|
|
},
|
|
{
|
|
label: '是否可用',
|
|
field: 'available',
|
|
dictType: DICT_TYPE.TRUE_FALSE,
|
|
dictClass: 'string',
|
|
isSearch: true,
|
|
isTable: false,
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
form: {
|
|
component: 'Switch',
|
|
value: 'TRUE',
|
|
componentProps: {
|
|
inactiveValue: 'FALSE',
|
|
activeValue: 'TRUE',
|
|
disabled: true
|
|
}
|
|
}
|
|
},
|
|
{
|
|
label: '备注',
|
|
field: 'remark',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
isTable: false,
|
|
},
|
|
{
|
|
label: '自动提交',
|
|
field: 'autoCommit',
|
|
dictType: DICT_TYPE.TRUE_FALSE,
|
|
dictClass: 'string',
|
|
isTable: false,
|
|
isForm: false,
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
form: {
|
|
component: 'Switch',
|
|
value: plansettingData.autoCommit,
|
|
componentProps: {
|
|
inactiveValue: 'FALSE',
|
|
activeValue: 'TRUE',
|
|
disabled: true
|
|
}
|
|
}
|
|
},
|
|
{
|
|
label: '自动通过',
|
|
field: 'autoAgree',
|
|
dictType: DICT_TYPE.TRUE_FALSE,
|
|
dictClass: 'string',
|
|
isTable: false,
|
|
isForm: false,
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
form: {
|
|
component: 'Switch',
|
|
value: plansettingData.autoAgree,
|
|
componentProps: {
|
|
inactiveValue: 'FALSE',
|
|
activeValue: 'TRUE',
|
|
disabled: true
|
|
}
|
|
}
|
|
},
|
|
{
|
|
label: '自动执行',
|
|
field: 'autoExecute',
|
|
dictType: DICT_TYPE.TRUE_FALSE,
|
|
dictClass: 'string',
|
|
isTable: false,
|
|
isForm: false,
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
form: {
|
|
component: 'Switch',
|
|
value: plansettingData.autoExecute,
|
|
componentProps: {
|
|
inactiveValue: 'FALSE',
|
|
activeValue: 'TRUE',
|
|
disabled: true
|
|
}
|
|
}
|
|
},
|
|
{
|
|
label: '最后更新者',
|
|
field: 'updater',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
isTable: false,
|
|
isForm: false,
|
|
},
|
|
{
|
|
label: '最后更新时间',
|
|
field: 'updateTime',
|
|
formatter: dateFormatter,
|
|
detail: {
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss'
|
|
},
|
|
sort: 'custom',
|
|
table: {
|
|
width: 180
|
|
},
|
|
isTable: false,
|
|
form: {
|
|
component: 'DatePicker',
|
|
componentProps: {
|
|
type: 'datetime',
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss',
|
|
valueFormat: 'x',
|
|
}
|
|
},
|
|
isForm: false,
|
|
},
|
|
{
|
|
label: '操作',
|
|
field: 'action',
|
|
isDetail: false,
|
|
isForm: false,
|
|
table: {
|
|
width: 300,
|
|
fixed: 'right'
|
|
},
|
|
}
|
|
]))
|
|
|
|
//表单校验
|
|
export const DeliverPlanMainRules = reactive({
|
|
customerCode: [
|
|
{ required: true, message: '请选择客户代码', trigger: 'change' }
|
|
],
|
|
deliverType: [
|
|
{ required: true, message: '发货库区类型不能为空', trigger: 'change' }
|
|
],
|
|
planDate: [
|
|
{ required: true, message: '计划日期不能为空', trigger: 'change' }
|
|
],
|
|
available: [
|
|
{ required: true, message: '请选择是否可用', trigger: 'change' }
|
|
],
|
|
status: [
|
|
{ required: true, message: '请选择状态', trigger: 'change' }
|
|
],
|
|
remark: [
|
|
{ max: 50, message: '不得超过50个字符', trigger: 'blur' }
|
|
],
|
|
})
|
|
|
|
/**
|
|
* @returns {Array} 发货计划子表
|
|
*/
|
|
export const DeliverPlanDetail = useCrudSchemas(reactive<CrudSchema[]>([
|
|
// {
|
|
// label: '销售订单号',
|
|
// field: 'soNumber',
|
|
// sort: 'custom',
|
|
// table: {
|
|
// width: 150
|
|
// },
|
|
// tableForm:{
|
|
// isInpuFocusShow: true, // 开启查询弹窗
|
|
// searchListPlaceholder: '请选择销售订单号',
|
|
// searchField: 'number',
|
|
// searchTitle: '销售订单信息',
|
|
// searchAllSchemas: SaleDetail.allSchemas,
|
|
// searchPage: SaleDetailApi.getSaleDetailPage,
|
|
// searchCondition: [{
|
|
// key: 'available',
|
|
// value: 'TRUE',
|
|
// isMainValue: false
|
|
// }]
|
|
// },
|
|
// form: {
|
|
// // labelMessage: '信息提示说明!!!',
|
|
// componentProps: {
|
|
// isSearchList: true,
|
|
// searchListPlaceholder: '请选择销售订单号',
|
|
// searchField: 'number',
|
|
// searchTitle: '销售订单信息',
|
|
// searchAllSchemas: SaleDetail.allSchemas,
|
|
// searchPage: SaleDetailApi.getSaleDetailPage,
|
|
// searchCondition: [{
|
|
// key: 'available',
|
|
// value: 'TRUE',
|
|
// isMainValue: false
|
|
// }]
|
|
// }
|
|
// }
|
|
// },
|
|
// {
|
|
// label: '销售订单行',
|
|
// field: 'soLine',
|
|
// sort: 'custom',
|
|
// table: {
|
|
// width: 150
|
|
// },
|
|
// tableForm: {
|
|
// disabled: true
|
|
// },
|
|
// form: {
|
|
// componentProps: {
|
|
// disabled: true
|
|
// }
|
|
// }
|
|
// },
|
|
{
|
|
label: '客户代码',
|
|
field: 'customerCode',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
isTable:false,
|
|
isTableForm: false,
|
|
tableForm:{
|
|
isInpuFocusShow: true,
|
|
searchListPlaceholder: '请选择客户代码',
|
|
searchField: 'code',
|
|
searchTitle: '客户信息',
|
|
searchAllSchemas: Customer.allSchemas,
|
|
searchPage: CustomerApi.getCustomerPage
|
|
},
|
|
form: {
|
|
// labelMessage: '信息提示说明!!!',
|
|
componentProps: {
|
|
isSearchList: true,
|
|
searchListPlaceholder: '请选择客户代码',
|
|
searchField: 'code',
|
|
searchTitle: '客户信息',
|
|
searchAllSchemas: Customer.allSchemas,
|
|
searchPage: CustomerApi.getCustomerPage
|
|
}
|
|
}
|
|
},
|
|
{
|
|
label: '客户月台',
|
|
field: 'customerDockCode',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
hiddenInMain: true,
|
|
isTableForm: false,
|
|
tableForm:{
|
|
isInpuFocusShow: true, // 开启查询弹窗
|
|
searchListPlaceholder: '请选择客户月台代码',
|
|
searchField: 'code',
|
|
searchTitle: '客户月台基础信息',
|
|
searchAllSchemas: Customerdock.allSchemas,
|
|
searchPage: CustomerDockApi.pageCustomerCodeToCustomerDock,
|
|
searchCondition: [{
|
|
key: 'available',
|
|
value: 'TRUE',
|
|
},{
|
|
key: 'customerCode',
|
|
value: 'customerCode',
|
|
isMainValue: true
|
|
}]
|
|
},
|
|
form: {
|
|
componentProps: {
|
|
isSearchList: true,
|
|
searchListPlaceholder: '请选择客户月台代码',
|
|
searchField: 'code',
|
|
searchTitle: '客户月台基础信息',
|
|
searchAllSchemas: Customerdock.allSchemas,
|
|
searchPage: CustomerDockApi.pageCustomerCodeToCustomerDock,
|
|
searchCondition: [{
|
|
key: 'available',
|
|
value: 'TRUE',
|
|
isMainValue: false
|
|
},{
|
|
key: 'customerCode',
|
|
value: 'customerCode',
|
|
isMainValue: true
|
|
}]
|
|
}
|
|
},
|
|
},
|
|
{
|
|
label: '物料代码',
|
|
field: 'itemCode',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
tableForm:{
|
|
multiple:true,
|
|
isInpuFocusShow: true, // 开启查询弹窗
|
|
searchListPlaceholder: '请选择物料代码',
|
|
searchField: 'itemCode',
|
|
searchTitle: '客户物料基础信息',
|
|
searchAllSchemas: Customeritem.allSchemas,
|
|
searchPage: CustomerItemApi.getPageBusinessTypeToItemCode,
|
|
},
|
|
form: {
|
|
componentProps: {
|
|
isSearchList: true,
|
|
searchListPlaceholder: '请选择物料代码',
|
|
searchField: 'itemCode',
|
|
searchTitle: '客户物料基础信息',
|
|
searchAllSchemas: Customeritem.allSchemas,
|
|
searchPage: CustomerItemApi.getPageBusinessTypeToItemCode,
|
|
}
|
|
}
|
|
},
|
|
{
|
|
label: '计划数量',
|
|
field: 'planQty',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
form: {
|
|
component: 'InputNumber',
|
|
componentProps: {
|
|
min: 0,
|
|
precision: 6
|
|
}
|
|
},
|
|
tableForm: {
|
|
type: 'InputNumber',
|
|
min: 0,
|
|
precision: 6
|
|
}
|
|
},
|
|
{
|
|
label: '计量单位',
|
|
field: 'uom',
|
|
dictType: DICT_TYPE.UOM,
|
|
dictClass: 'string',
|
|
isTable: true,
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
tableForm: {
|
|
disabled: true,
|
|
type: 'Select'
|
|
},
|
|
form: {
|
|
componentProps: {
|
|
disabled: true
|
|
}
|
|
}
|
|
},
|
|
{
|
|
label: '到仓库代码',
|
|
field: 'toWarehouseCode',
|
|
sort: 'custom',
|
|
isForm: false,
|
|
table: {
|
|
width: 150
|
|
},
|
|
},
|
|
{
|
|
label: '到库位代码',
|
|
field: 'toLocationCode',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
tableForm:{
|
|
isInpuFocusShow: true, // 开启查询弹窗
|
|
searchListPlaceholder: '请选择到库位代码',
|
|
searchField: 'code',
|
|
searchTitle: '库位基础信息',
|
|
searchAllSchemas: Location.allSchemas,
|
|
searchPage: WorkstationApi.selectAreaTypeToLocation,
|
|
searchCondition: [{
|
|
key: 'available',
|
|
value: 'TRUE',
|
|
isMainValue: false
|
|
},{
|
|
key: 'areaType',
|
|
value: "deliverType",
|
|
message:"请选择发货类型",
|
|
isMainValue: true
|
|
}]
|
|
},
|
|
form: {
|
|
componentProps: {
|
|
isSearchList: true,
|
|
searchListPlaceholder: '请选择到库位代码',
|
|
searchField: 'code',
|
|
searchTitle: '库位基础信息',
|
|
searchAllSchemas: Location.allSchemas,
|
|
searchPage: WorkstationApi.selectAreaTypeToLocation,
|
|
searchCondition: [{
|
|
key: 'available',
|
|
value: 'TRUE',
|
|
isMainValue: false
|
|
},{
|
|
key: 'areaType',
|
|
value: "deliverType",
|
|
message:"请选择发货类型",
|
|
isMainValue: false
|
|
}]
|
|
}
|
|
},
|
|
},
|
|
{
|
|
label: '项目',
|
|
field: 'project',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
isTable: false,
|
|
isTableForm: false,
|
|
isForm: false,
|
|
},
|
|
{
|
|
label: '单据号',
|
|
field: 'number',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 180
|
|
},
|
|
isTable: false,
|
|
isTableForm: false,
|
|
form: {
|
|
componentProps: {
|
|
disabled: true
|
|
}
|
|
}
|
|
},
|
|
|
|
|
|
{
|
|
label: '备注',
|
|
field: 'remark',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
isTable: false,
|
|
},
|
|
{
|
|
label: '创建时间',
|
|
field: 'createTime',
|
|
formatter: dateFormatter,
|
|
detail: {
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss'
|
|
},
|
|
sort: 'custom',
|
|
table: {
|
|
width: 180
|
|
},
|
|
isTable: false,
|
|
form: {
|
|
component: 'DatePicker',
|
|
componentProps: {
|
|
type: 'datetime',
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss',
|
|
valueFormat: 'x',
|
|
}
|
|
},
|
|
isTableForm: false,
|
|
isForm: false,
|
|
},
|
|
{
|
|
label: '创建者',
|
|
field: 'creator',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
isTable: false,
|
|
isTableForm: false,
|
|
isForm: false,
|
|
},
|
|
{
|
|
label: '最后更新时间',
|
|
field: 'updateTime',
|
|
formatter: dateFormatter,
|
|
detail: {
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss'
|
|
},
|
|
sort: 'custom',
|
|
table: {
|
|
width: 180
|
|
},
|
|
isTable: false,
|
|
form: {
|
|
component: 'DatePicker',
|
|
componentProps: {
|
|
type: 'datetime',
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss',
|
|
valueFormat: 'x',
|
|
}
|
|
},
|
|
isTableForm: false,
|
|
isForm: false,
|
|
},
|
|
{
|
|
label: '最后更新者',
|
|
field: 'updater',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
isTable: false,
|
|
isTableForm: false,
|
|
isForm: false,
|
|
},
|
|
{
|
|
label: '是否可用',
|
|
field: 'available',
|
|
dictType: DICT_TYPE.TRUE_FALSE,
|
|
dictClass: 'string',
|
|
isTable: false,
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
form: {
|
|
component: 'Switch',
|
|
value: 'TRUE',
|
|
componentProps: {
|
|
inactiveValue: 'FALSE',
|
|
activeValue: 'TRUE',
|
|
disabled: true
|
|
}
|
|
},
|
|
isTableForm: false
|
|
},
|
|
{
|
|
label: '操作',
|
|
field: 'action',
|
|
isDetail: false,
|
|
isForm: false ,
|
|
table: {
|
|
width: 150,
|
|
fixed: 'right'
|
|
},
|
|
hiddenInMain: true,
|
|
isTableForm:false,
|
|
}
|
|
]))
|
|
|
|
//表单校验
|
|
export const DeliverPlanDetailRules = reactive({
|
|
number: [
|
|
{ required: true, message: '请输入单据号', trigger: 'blur' }
|
|
],
|
|
customerDockCode: [
|
|
{ required: true, message: '请选择客户月台代码', trigger: 'blur' }
|
|
],
|
|
itemCode: [
|
|
{ required: true, message: '请选择物料代码', trigger: 'change' }
|
|
],
|
|
toLocationCode: [
|
|
{ required: true, message: '请选择到库位代码', trigger: 'change' }
|
|
],
|
|
available: [
|
|
{ required: true, message: '请选择是否可用', trigger: 'change' }
|
|
],
|
|
uom: [
|
|
{ required: true, message: '请选择计量单位', trigger: 'change' }
|
|
],
|
|
planQty: [
|
|
{ required: true, message: '请输入计划数量', trigger: 'blur' }
|
|
],
|
|
|
|
remark: [
|
|
{ max: 50, message: '不得超过50个字符', trigger: 'blur' }
|
|
],
|
|
})
|