Browse Source

YT-1379WMS 报废出库申请,列表中的编辑功能,修改从仓库代码为不可编辑

intex_online20241228
张立 2 months ago
parent
commit
87ccd56958
  1. 12
      src/views/wms/inventoryjobManage/scrap/scrapRequestMain/index.vue

12
src/views/wms/inventoryjobManage/scrap/scrapRequestMain/index.vue

@ -591,6 +591,11 @@ const openForm = async (type: string, row?: any) => {
item.componentProps.isSearchList = true
item.componentProps.disabled = false
}
if (item.field == 'fromWarehouseCode') {
item.componentProps.enterSearch = true
item.componentProps.isSearchList = true
item.componentProps.disabled = false
}
})
} else {
if (row.q1Number) {
@ -644,6 +649,13 @@ const openForm = async (type: string, row?: any) => {
}
})
}
ScrapRequestMain.allSchemas.formSchema.forEach((item) => {
if (item.field == 'fromWarehouseCode') {
item.componentProps.enterSearch = false
item.componentProps.isSearchList = false
item.componentProps.disabled = true
}
})
}
tableData.value = [] //

Loading…
Cancel
Save