|
|
@ -103,7 +103,7 @@ const tableColumns = ref(SupplierAddrDeliTime.allSchemas.tableColumns) |
|
|
|
const detailAllSchemas = ref(SupplierAddrDeliTimeDetail.allSchemas) |
|
|
|
// 查询页面返回 |
|
|
|
const searchTableSuccess = (formField, searchField, val, formRef, type, row) => { |
|
|
|
nextTick(() => { |
|
|
|
nextTick(async() => { |
|
|
|
if (formField == 'code') { |
|
|
|
let codes = val.filter((item) => |
|
|
|
tableData.value.find((item1) => item1['code'] == item['code']) |
|
|
@ -132,9 +132,21 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row) => |
|
|
|
|
|
|
|
const setV = {} |
|
|
|
setV[formField] = val[0][searchField] |
|
|
|
if (formField == 'supplierCode') { |
|
|
|
if (formField == 'supplierCode') { |
|
|
|
setV['supplierCode'] = val[0].code |
|
|
|
setV['supplierName'] = val[0].name |
|
|
|
setV['supplierName'] = val[0].name |
|
|
|
console.log(SupplierAddrDeliTime.allSchemas.formSchema) |
|
|
|
const options = await SupplierAddrDeliTimeDetailApi.getSupplierAddrList(val[0].code) |
|
|
|
SupplierAddrDeliTime.allSchemas.formSchema.forEach(item => { |
|
|
|
if(item.field == 'supplierAddressShow'){ |
|
|
|
item.componentProps.options = options.map(item=> { |
|
|
|
return { |
|
|
|
label: item, |
|
|
|
value:item |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
formRef.setValues(setV) |
|
|
|
}) |
|
|
@ -150,6 +162,8 @@ const submitForm = async (formType, submitData) => { |
|
|
|
if (data.masterId) { |
|
|
|
data.id = data.masterId |
|
|
|
} |
|
|
|
data.supplierAddress =data.supplierAddressShow.join(',') |
|
|
|
data.yearAndMonth =data.yearAndMonthShow.join(',') |
|
|
|
data.subList = tableData.value // 拼接子表数据参数 |
|
|
|
data.subList.forEach((item) => { |
|
|
|
item.toWarehouseCode = data.toWarehouseCode |
|
|
@ -277,13 +291,27 @@ const openForm = async (type: string, row?: any) => { |
|
|
|
item.componentProps.isSearchList = false |
|
|
|
item.componentProps.disabled = true |
|
|
|
} |
|
|
|
if (item.field == 'supplierAddressShow') { |
|
|
|
item.componentProps.disabled = true |
|
|
|
} |
|
|
|
if (item.field == 'yearAndMonthShow') { |
|
|
|
item.componentProps.disabled = true |
|
|
|
} |
|
|
|
}) |
|
|
|
row.yearAndMonthShow =row.yearAndMonth.split(',') |
|
|
|
row.supplierAddressShow =row.supplierAddress.split(',') |
|
|
|
} else { |
|
|
|
SupplierAddrDeliTime.allSchemas.formSchema.forEach((item) => { |
|
|
|
if (item.field == 'supplierCode') { |
|
|
|
item.componentProps.isSearchList = true |
|
|
|
item.componentProps.disabled = false |
|
|
|
} |
|
|
|
if (item.field == 'supplierAddressShow') { |
|
|
|
item.componentProps.disabled = false |
|
|
|
} |
|
|
|
if (item.field == 'yearAndMonthShow') { |
|
|
|
item.componentProps.disabled = false |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
formRef.value.open(type, row) |
|
|
|