|
|
@ -383,6 +383,18 @@ import JSelectItem from '@/components/jeecgbiz/JSelectItem' |
|
|
|
this.popupCallback(company, userInfo, puwwcid) |
|
|
|
this.popupCallback(company, userInfo, puwwcid) |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
watch:{ |
|
|
|
|
|
|
|
'processMaterialWarehousingListTable.dataSource': { // 对对象的某一个属性进行深度监听 |
|
|
|
|
|
|
|
handler(nv) { |
|
|
|
|
|
|
|
// console.log(nv) |
|
|
|
|
|
|
|
if(nv.length>0){ |
|
|
|
|
|
|
|
this.echoStorage(nv); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
immediate: true, |
|
|
|
|
|
|
|
deep: true |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
methods: { |
|
|
|
methods: { |
|
|
|
//tab 值改变触发事件 |
|
|
|
//tab 值改变触发事件 |
|
|
|
onSelect(record){ |
|
|
|
onSelect(record){ |
|
|
@ -559,7 +571,7 @@ import JSelectItem from '@/components/jeecgbiz/JSelectItem' |
|
|
|
//1、文件回显 |
|
|
|
//1、文件回显 |
|
|
|
this.data = getRecord(this.data) |
|
|
|
this.data = getRecord(this.data) |
|
|
|
} |
|
|
|
} |
|
|
|
console.log(this.data,'回显表单数据') |
|
|
|
// console.log(this.data,'回显表单数据') |
|
|
|
let fieldval = pick(this.data, 'id', 'company', 'createTime', 'departId', 'createBy', 'processUdgetPlanId', 'materialType', 'targetLibrary', 'warehousingBatch', 'fileId','opinion') |
|
|
|
let fieldval = pick(this.data, 'id', 'company', 'createTime', 'departId', 'createBy', 'processUdgetPlanId', 'materialType', 'targetLibrary', 'warehousingBatch', 'fileId','opinion') |
|
|
|
this.$nextTick(() => { |
|
|
|
this.$nextTick(() => { |
|
|
|
this.form.setFieldsValue(fieldval) |
|
|
|
this.form.setFieldsValue(fieldval) |
|
|
@ -570,6 +582,54 @@ import JSelectItem from '@/components/jeecgbiz/JSelectItem' |
|
|
|
this.requestSubTableData(this.url.processMaterialWarehousingList.list, params, this.processMaterialWarehousingListTable) |
|
|
|
this.requestSubTableData(this.url.processMaterialWarehousingList.list, params, this.processMaterialWarehousingListTable) |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
/** 查询某个tab的数据 */ |
|
|
|
|
|
|
|
requestSubTableData(url, params, tab, success) { |
|
|
|
|
|
|
|
// tab.loading = true |
|
|
|
|
|
|
|
getAction(url, params).then(res => { |
|
|
|
|
|
|
|
let { result } = res |
|
|
|
|
|
|
|
let dataSource = [] |
|
|
|
|
|
|
|
if (result) { |
|
|
|
|
|
|
|
if (Array.isArray(result)) { |
|
|
|
|
|
|
|
dataSource = result |
|
|
|
|
|
|
|
} else if (Array.isArray(result.records)) { |
|
|
|
|
|
|
|
dataSource = result.records |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
tab.dataSource = dataSource |
|
|
|
|
|
|
|
typeof success === 'function' ? success(res) : '' |
|
|
|
|
|
|
|
}).finally(() => { |
|
|
|
|
|
|
|
// tab.loading = false |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async echoStorage(nv){ |
|
|
|
|
|
|
|
this.processMaterialWarehousingListTable.loading = true; |
|
|
|
|
|
|
|
for (const item of nv) { |
|
|
|
|
|
|
|
let par = { id : item.materialGroup,} |
|
|
|
|
|
|
|
let param = {id : item.materialNumber,} |
|
|
|
|
|
|
|
await getAction(this.url.queryByIdDescription,par).then( res=>{ |
|
|
|
|
|
|
|
// console.log(res); |
|
|
|
|
|
|
|
if(res.success){ |
|
|
|
|
|
|
|
this.processMaterialWarehousingListTable.columns[0].options= [{ |
|
|
|
|
|
|
|
title : res.result.materialClassify, |
|
|
|
|
|
|
|
value : item.materialGroup, |
|
|
|
|
|
|
|
disabled : true }]; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
await getAction(this.url.queryByIdMerchandiseNews,param).then( res=>{ |
|
|
|
|
|
|
|
// console.log(res); |
|
|
|
|
|
|
|
if(res.success){ |
|
|
|
|
|
|
|
this.processMaterialWarehousingListTable.columns[1].options= [{ |
|
|
|
|
|
|
|
title : res.result.materialsNumber, |
|
|
|
|
|
|
|
value : item.materialNumber, |
|
|
|
|
|
|
|
disabled : true }]; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
this.processMaterialWarehousingListTable.loading = false; |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
/** 整理成formData */ |
|
|
|
/** 整理成formData */ |
|
|
|
classifyIntoFormData(allValues) { |
|
|
|
classifyIntoFormData(allValues) { |
|
|
|
let main = Object.assign(this.model, allValues.formValue) |
|
|
|
let main = Object.assign(this.model, allValues.formValue) |
|
|
@ -597,30 +657,6 @@ import JSelectItem from '@/components/jeecgbiz/JSelectItem' |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
this.processUdgetPlanIds=ids.join(","); |
|
|
|
this.processUdgetPlanIds=ids.join(","); |
|
|
|
this.processMaterialWarehousingListTable.dataSource.forEach(item =>{ |
|
|
|
|
|
|
|
let par = { id : item.materialGroup,} |
|
|
|
|
|
|
|
let param = {id : item.materialNumber,} |
|
|
|
|
|
|
|
getAction(this.url.queryByIdDescription,par).then( res=>{ |
|
|
|
|
|
|
|
// console.log(res); |
|
|
|
|
|
|
|
if(res.success){ |
|
|
|
|
|
|
|
this.processMaterialWarehousingListTable.columns[0].options= [{ |
|
|
|
|
|
|
|
title : res.result.materialClassify, |
|
|
|
|
|
|
|
value : item.materialGroup, |
|
|
|
|
|
|
|
disabled : true }]; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
getAction(this.url.queryByIdMerchandiseNews,param).then( res=>{ |
|
|
|
|
|
|
|
// console.log(res); |
|
|
|
|
|
|
|
if(res.success){ |
|
|
|
|
|
|
|
this.processMaterialWarehousingListTable.columns[1].options= [{ |
|
|
|
|
|
|
|
title : res.result.materialsNumber, |
|
|
|
|
|
|
|
value : item.materialNumber, |
|
|
|
|
|
|
|
disabled : true }]; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
|
validateError(msg) { |
|
|
|
validateError(msg) { |
|
|
|
this.$message.error(msg) |
|
|
|
this.$message.error(msg) |
|
|
|