Browse Source

SBBJ-884pda领用出库,添加备件后,确认提示添加失败

master
张立 1 month ago
parent
commit
f38fb243e8
  1. 1
      src/views/eam/item/itemApplyMain/index.vue
  2. 11
      src/views/eam/item/itemApplyMain/itemApplyMain.data.ts

1
src/views/eam/item/itemApplyMain/index.vue

@ -93,6 +93,7 @@
}
row[formField] = val[0][searchField]
row['itemNumber'] = val[0]['itemNumber']
row['locationNumber'] = val[0]['locationNumber']
row['isInAccount'] = val[0]['isInAccount']
row['currentQty'] = val[0]['qty']
row['available'] = val[0]['available']

11
src/views/eam/item/itemApplyMain/itemApplyMain.data.ts

@ -29,6 +29,7 @@ export const ItemApplyMain = useCrudSchemas(reactive<CrudSchema[]>([
isForm: false,
isSearch: false,
},
{
label: '审批人',
field: 'approveId',
@ -211,6 +212,16 @@ export const ItemApplyDetail = useCrudSchemas(reactive<CrudSchema[]>([
disabled: true
}
},
{
label: '库位编号',
field: 'locationNumber',
sort: 'custom',
isForm: false,
isTableForm: true,
tableForm: {
disabled: true
}
},
{
label: '类型',
field: 'type',

Loading…
Cancel
Save