|
|
@ -83,6 +83,7 @@ export const CustomerreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>( |
|
|
|
label: '从仓库代码', |
|
|
|
field: 'fromWarehouseCode', |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
@ -91,6 +92,7 @@ export const CustomerreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>( |
|
|
|
label: '到仓库代码', |
|
|
|
field: 'toWarehouseCode', |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
@ -101,6 +103,7 @@ export const CustomerreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>( |
|
|
|
dictType: DICT_TYPE.LOCATION_TYPE, |
|
|
|
dictClass: 'string', |
|
|
|
isTable: true, |
|
|
|
isForm: false, |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
@ -113,6 +116,7 @@ export const CustomerreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>( |
|
|
|
dictClass: 'string', |
|
|
|
isTable: true, |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
@ -121,6 +125,7 @@ export const CustomerreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>( |
|
|
|
label: '从库区代码范围', |
|
|
|
field: 'fromAreaCodes', |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
@ -129,6 +134,7 @@ export const CustomerreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>( |
|
|
|
label: '到库区代码范围', |
|
|
|
field: 'toAreaCodes', |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
@ -445,6 +451,7 @@ export const CustomerreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[] |
|
|
|
label: '销售订单号', |
|
|
|
field: 'soNumber', |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
@ -453,6 +460,7 @@ export const CustomerreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[] |
|
|
|
label: '销售订单行', |
|
|
|
field: 'soLine', |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
@ -687,9 +695,9 @@ export const CustomerreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[] |
|
|
|
|
|
|
|
//表单校验
|
|
|
|
export const CustomerreceiptRequestDetailRules = reactive({ |
|
|
|
soNumber: [ |
|
|
|
{ required: true, message: '请选择销售订单号', trigger: 'change' } |
|
|
|
], |
|
|
|
// soNumber: [
|
|
|
|
// { required: true, message: '请选择销售订单号', trigger: 'change' }
|
|
|
|
// ],
|
|
|
|
packingNumber: [ |
|
|
|
{ required: true, message: '请选择包装号', trigger: 'change' } |
|
|
|
], |
|
|
|