Browse Source

YT-2029:供应商物料编辑设置

intex_online20250311
songguoqiang 4 weeks ago
parent
commit
a9066ed8d5
  1. 6
      src/views/wms/basicDataManage/supplierManage/supplieritem/index.vue
  2. 6
      src/views/wms/basicDataManage/supplierManage/supplieritem/supplieritem.data.ts

6
src/views/wms/basicDataManage/supplierManage/supplieritem/index.vue

@ -227,7 +227,7 @@ const basicFormRef = ref()
const openForm = (type: string, row?: any) => { const openForm = (type: string, row?: any) => {
if(type == "update"){ if(type == "update"){
Supplieritem.allSchemas.formSchema.forEach((item) => { Supplieritem.allSchemas.formSchema.forEach((item) => {
if (item.field == 'supplierCode') { if (item.field == 'supplierCode' || item.field == 'defaultLocationCode') {
item.componentProps.disabled = true item.componentProps.disabled = true
item.componentProps.isSearchList = false item.componentProps.isSearchList = false
} }
@ -235,7 +235,9 @@ const openForm = (type: string, row?: any) => {
item.componentProps.disabled = true item.componentProps.disabled = true
item.componentProps.isSearchList = false item.componentProps.isSearchList = false
} }
}) })
}else { }else {
Supplieritem.allSchemas.formSchema.forEach((item) => { Supplieritem.allSchemas.formSchema.forEach((item) => {

6
src/views/wms/basicDataManage/supplierManage/supplieritem/supplieritem.data.ts

@ -152,8 +152,10 @@ export const Supplieritem = useCrudSchemas(reactive<CrudSchema[]>([
field: 'receivedNumber', field: 'receivedNumber',
isForm:true, isForm:true,
hiddenSearchHigh:true, hiddenSearchHigh:true,
componentProps:{ form:{
disabled: true componentProps:{
disabled: true
}
}, },
table: { table: {
width: 180 width: 180

Loading…
Cancel
Save