Browse Source

生产收料记录

修改 查询条件 从包装号 改为 包装号
删除 查询条件 到包装号
master_hella_20240701
李达明 8 months ago
parent
commit
5bfde1eb89
  1. 18
      src/views/wms/issueManage/productionreceipt/productionreceiptRecordMain/productionreceiptRecordMain.data.ts

18
src/views/wms/issueManage/productionreceipt/productionreceiptRecordMain/productionreceiptRecordMain.data.ts

@ -257,7 +257,7 @@ export const ProductionreceiptRecordMain = useCrudSchemas(reactive<CrudSchema[]>
width: 150 width: 150
}, },
}, },
{ {
label: '到仓库代码', label: '到仓库代码',
field: 'toWarehouseCode', field: 'toWarehouseCode',
@ -402,7 +402,7 @@ export const ProductionreceiptRecordMainRules = reactive({
*/ */
export const ProductionreceiptRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([ export const ProductionreceiptRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([
{ {
label: '包装号', label: '包装号',
field: 'fromPackingNumber', field: 'fromPackingNumber',
sort: 'custom', sort: 'custom',
table: { table: {
@ -418,7 +418,7 @@ export const ProductionreceiptRecordDetail = useCrudSchemas(reactive<CrudSchema[
table: { table: {
width: 150 width: 150
}, },
isSearch: true, isSearch: false,
hiddenInMain: true hiddenInMain: true
}, },
{ {
@ -596,7 +596,7 @@ export const ProductionreceiptRecordDetail = useCrudSchemas(reactive<CrudSchema[
sortSearchDefault:2, sortSearchDefault:2,
sortTableDefault:4, sortTableDefault:4,
}, },
{ {
label: '物料名称', label: '物料名称',
field: 'itemName', field: 'itemName',
@ -746,7 +746,7 @@ export const ProductionreceiptRecordDetail = useCrudSchemas(reactive<CrudSchema[
isTable: false, isTable: false,
hiddenInMain:true, hiddenInMain:true,
}, },
// { // {
// label: '任务明细ID', // label: '任务明细ID',
// field: 'jobDetailId', // field: 'jobDetailId',
@ -755,9 +755,9 @@ export const ProductionreceiptRecordDetail = useCrudSchemas(reactive<CrudSchema[
// width: 150 // width: 150
// }, // },
// }, // },
])) ]))
//表单校验 //表单校验
@ -807,4 +807,4 @@ export const ProductionreceiptRecordDetailRules = reactive({
creator: [ creator: [
{ required: true, message: '请输入创建者', trigger: 'blur' } { required: true, message: '请输入创建者', trigger: 'blur' }
], ],
}) })

Loading…
Cancel
Save