|
|
|
@ -63,6 +63,7 @@
|
|
|
|
|
:maxHeight="300" |
|
|
|
|
:disabled="formDisabled" |
|
|
|
|
:isabled="isabled" |
|
|
|
|
@shifu="shifu" |
|
|
|
|
@valueChange ="onSelect" |
|
|
|
|
@descriptionFetch = "searchInformation" |
|
|
|
|
:actionButton="!task" |
|
|
|
@ -108,6 +109,7 @@ import { FormTypes, getRefPromise, VALIDATE_NO_PASSED, validateFormAndTables } f
|
|
|
|
|
import JSelectCompany from '../../../../components/jeecgbiz/JSelectCompany' |
|
|
|
|
import { getAction, getCurrentTime, getStringArry, httpAction } from '@api/manage' |
|
|
|
|
import pick from 'lodash.pick' |
|
|
|
|
import { accMul } from '../../../../../common/common' |
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
|
name: 'ProcessIndustrialDeliveryForm', |
|
|
|
@ -217,6 +219,63 @@ import pick from 'lodash.pick'
|
|
|
|
|
defaultValue:'', |
|
|
|
|
disabled: !this.disabled |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '库存', |
|
|
|
|
key: 'repertory', |
|
|
|
|
type: FormTypes.slot, |
|
|
|
|
width: '80px', |
|
|
|
|
// placeholder: '请输入${title}', |
|
|
|
|
// defaultValue: '', |
|
|
|
|
slotName: 'repertory', |
|
|
|
|
disabled: this.disabled |
|
|
|
|
// scopedSlots: {customRender: 'fileSlot'} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '供货商', |
|
|
|
|
key: 'manufacturer', |
|
|
|
|
type: FormTypes.input, |
|
|
|
|
dictCode: '', |
|
|
|
|
width: '200px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
defaultValue: '', |
|
|
|
|
disabled: this.disabled |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '单价(元)', |
|
|
|
|
key: 'unitPrice', |
|
|
|
|
type: FormTypes.inputNumber, |
|
|
|
|
width: '130px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
defaultValue: '', |
|
|
|
|
disabled: true |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '金额(元)', |
|
|
|
|
key: 'materialAmount', |
|
|
|
|
type: FormTypes.inputNumber, |
|
|
|
|
width: '130px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
defaultValue: '', |
|
|
|
|
disabled: true |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '生产日期', |
|
|
|
|
key: 'producedDate', |
|
|
|
|
type: FormTypes.date, |
|
|
|
|
width: '200px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
disabled: this.disabled, |
|
|
|
|
defaultValue: '' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '保质期', |
|
|
|
|
key: 'staleDated', |
|
|
|
|
type: FormTypes.inputNumber, |
|
|
|
|
width: '130px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
disabled: this.disabled, |
|
|
|
|
defaultValue: '' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '用途', |
|
|
|
|
key: 'purpose', |
|
|
|
@ -246,12 +305,17 @@ import pick from 'lodash.pick'
|
|
|
|
|
url: { |
|
|
|
|
add: "/burst/processIndustrialDelivery/add", |
|
|
|
|
addApply: "/burst/processIndustrialDelivery/addApply", |
|
|
|
|
queryById: "/burst/processIndustrial/queryById", //查询民爆基础信息 |
|
|
|
|
edit: "/burst/processIndustrialDelivery/edit", |
|
|
|
|
processIndustrialUrlList: '/burst/processIndustrial/list', //查询民爆物资表 |
|
|
|
|
processIndustrialUrlList: '/gunpowder/processIndustrialCachelibrary/oneselfList', //查询民爆缓存库物资表 |
|
|
|
|
processIndustrialDeliveryMaterial: { |
|
|
|
|
list: '/burst/processIndustrialDelivery/queryProcessIndustrialDeliveryMaterialByMainId' |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
isShifu:false, //是否搜索 |
|
|
|
|
historyNumList: [], // |
|
|
|
|
equipmentList: [], // |
|
|
|
|
MBShuJu: [], // |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
props: { |
|
|
|
@ -293,7 +357,7 @@ import pick from 'lodash.pick'
|
|
|
|
|
|
|
|
|
|
return new Promise( (resolve, reject) => { |
|
|
|
|
let par = { |
|
|
|
|
type: this.accounting |
|
|
|
|
category: this.accounting |
|
|
|
|
} |
|
|
|
|
let numberList = []; |
|
|
|
|
this.$refs.processIndustrialDeliveryMaterial.getValues((a, b, c) => { |
|
|
|
@ -304,24 +368,24 @@ import pick from 'lodash.pick'
|
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
//查询数据 |
|
|
|
|
console.log("=-=-=-",par); |
|
|
|
|
// console.log("=-=-=-",par); |
|
|
|
|
getAction(this.url.processIndustrialUrlList,par).then(res =>{ |
|
|
|
|
if(res.success){ |
|
|
|
|
console.log("res>>>>>>>>>>>>>>>>>>>>",res) |
|
|
|
|
// console.log("res>>>>>>>>>>>>>>>>>>>>",res) |
|
|
|
|
this.equipmentList = res.result.records; |
|
|
|
|
let nu = res.result.records || res.result; |
|
|
|
|
let qc = []; |
|
|
|
|
// if (this.processIndustrialScrapMaterialTable.columns[1].options.length > 0) { |
|
|
|
|
// this.processIndustrialScrapMaterialTable.columns[1].options = [] |
|
|
|
|
// } |
|
|
|
|
if (this.processIndustrialDeliveryMaterialTable.columns[1].options.length > 0) { |
|
|
|
|
this.processIndustrialDeliveryMaterialTable.columns[1].options = [] |
|
|
|
|
} |
|
|
|
|
nu.forEach(item =>{ |
|
|
|
|
qc.push({ |
|
|
|
|
title: item.materialNumber, |
|
|
|
|
value: item.merchandiseNewsId, |
|
|
|
|
title: item.coding, |
|
|
|
|
value: item.materialsNumber, |
|
|
|
|
disabled: false |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
console.log("qc>>>>>>>>>>>>>>>",qc) |
|
|
|
|
// console.log("qc>>>>>>>>>>>>>>>",qc) |
|
|
|
|
numberList.forEach( it => { |
|
|
|
|
// console.log("000000",it); |
|
|
|
|
qc.forEach(item =>{ |
|
|
|
@ -330,82 +394,131 @@ import pick from 'lodash.pick'
|
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
// this.processSmaterialsScrapListTable.columns[1].options = qc; |
|
|
|
|
this.processIndustrialDeliveryMaterialTable.columns[1].options = qc; |
|
|
|
|
} |
|
|
|
|
resolve(); |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
//列表搜索了 |
|
|
|
|
shifu() { |
|
|
|
|
this.isShifu = true |
|
|
|
|
}, |
|
|
|
|
getSurface(){ |
|
|
|
|
//取列表值 |
|
|
|
|
return new Promise(async(resolve, reject) => { |
|
|
|
|
this.historyNumList = []; |
|
|
|
|
await this.$refs.processIndustrialDeliveryMaterial.getValuesPromise().then(re => { |
|
|
|
|
this.historyNumList = re; |
|
|
|
|
}) |
|
|
|
|
resolve(this.historyNumList); |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
qingKong(id){ |
|
|
|
|
let values = [ |
|
|
|
|
{ |
|
|
|
|
rowKey: id, |
|
|
|
|
values: { |
|
|
|
|
'industrialId': undefined, |
|
|
|
|
'materialGroup': null, |
|
|
|
|
'industrialName': undefined, |
|
|
|
|
'unit': '', |
|
|
|
|
'quantity': '', |
|
|
|
|
'purpose': '' |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
console.log("清空"); |
|
|
|
|
this.$refs.processIndustrialDeliveryMaterial.setValues(values); |
|
|
|
|
}, |
|
|
|
|
//查询数据 |
|
|
|
|
async getMBShuJu(v){ |
|
|
|
|
let par ={}; |
|
|
|
|
if(!!v){ |
|
|
|
|
par.id = v; |
|
|
|
|
} |
|
|
|
|
par.category = this.assigneesText; |
|
|
|
|
await getAction(this.url.queryById,par).then(res => { |
|
|
|
|
if(res.success){ |
|
|
|
|
this.MBShuJu = res.result; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
//列表赋值 |
|
|
|
|
fuZhi(id,v){ |
|
|
|
|
console.log("vvv",v); |
|
|
|
|
let values = [ |
|
|
|
|
{ |
|
|
|
|
rowKey: id, |
|
|
|
|
values: { |
|
|
|
|
'industrialId': v.coding, |
|
|
|
|
'materialGroup': v.materialClassify, |
|
|
|
|
'industrialName': v.name, |
|
|
|
|
'unit': v.unit, |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
// console.log(values); |
|
|
|
|
this.$refs.processIndustrialDeliveryMaterial.setValues(values) |
|
|
|
|
}, |
|
|
|
|
async onSelect(record){ |
|
|
|
|
console.log("record>>>>>>>>>>>>>>>>>>>>>>>>>",record) |
|
|
|
|
// //物料号 |
|
|
|
|
// if(record.column.key == "equipment" && !!record.row.id || record.column.key == "materialName" && !!record.row.id ){ |
|
|
|
|
// await this.pastSla(); |
|
|
|
|
// let l = false; |
|
|
|
|
// this.historyNumList.forEach( item =>{ |
|
|
|
|
// // console.log("111",item); |
|
|
|
|
// if(item.equipment == record.value){ |
|
|
|
|
// l =true; |
|
|
|
|
// } |
|
|
|
|
// }); |
|
|
|
|
// if(l){ |
|
|
|
|
// this.qingKong(record.row.id); |
|
|
|
|
// }else{ |
|
|
|
|
// let sous = false; |
|
|
|
|
// this.equipmentList.forEach( item =>{ |
|
|
|
|
// // console.log(item) |
|
|
|
|
// if(item.merchandiseNewsId == record.value){ |
|
|
|
|
// sous = true; |
|
|
|
|
// } |
|
|
|
|
// }) |
|
|
|
|
// if(!sous){ |
|
|
|
|
// //根据ID查询 |
|
|
|
|
// await this.searchInformation(record.value); |
|
|
|
|
// } |
|
|
|
|
// this.fuZhi(record.row.id,record.value); |
|
|
|
|
// } |
|
|
|
|
// await this.jinYong(); |
|
|
|
|
// } |
|
|
|
|
// //计算金额 |
|
|
|
|
// if(record.column.key = "actualNumber" && !!record.row.scrapNumber && !this.allotBaoNumber){ |
|
|
|
|
// let ase = 0; |
|
|
|
|
// let bao = false; |
|
|
|
|
// this.BaoFeiNumList.forEach(item =>{ |
|
|
|
|
// |
|
|
|
|
// if(item.merchandiseNewsId === record.row.equipment){ |
|
|
|
|
// // console.log("11-=-=",item); |
|
|
|
|
// |
|
|
|
|
// if(record.row.actualNumber > item.materialQuantity){ |
|
|
|
|
// this.$message.warning("实际报废数大于库存数!"); |
|
|
|
|
// bao = true; |
|
|
|
|
// let values = [ |
|
|
|
|
// { |
|
|
|
|
// rowKey: record.row.id, |
|
|
|
|
// values: { |
|
|
|
|
// 'actualNumber': null , |
|
|
|
|
// 'materialAmount': null, |
|
|
|
|
// } |
|
|
|
|
// } |
|
|
|
|
// ] |
|
|
|
|
// this.$refs.processSmaterialsScrapList.setValues(values); |
|
|
|
|
// } |
|
|
|
|
// } |
|
|
|
|
// }) |
|
|
|
|
// if(!bao){ |
|
|
|
|
// ase = accMul(record.row.actualNumber,record.row.materialPrice) > 0 ? accMul(record.row.actualNumber,record.row.materialPrice) : 1 * record.row.materialPrice; |
|
|
|
|
// let values = [ |
|
|
|
|
// { |
|
|
|
|
// rowKey: record.row.id, |
|
|
|
|
// values: { |
|
|
|
|
// // 'scrapNumber': record.row.scrapNumber > 0 ? record.row.scrapNumber : 1 , |
|
|
|
|
// 'materialAmount': ase, |
|
|
|
|
// } |
|
|
|
|
// } |
|
|
|
|
// ] |
|
|
|
|
// this.$refs.processSmaterialsScrapList.setValues(values); |
|
|
|
|
// } |
|
|
|
|
// } |
|
|
|
|
// console.log("record>>>>>>>>>>>>>>>>>>>>>>>>>",record) |
|
|
|
|
await this.getSurface(); |
|
|
|
|
if(!!record.row.id){ |
|
|
|
|
let same = false; |
|
|
|
|
this.historyNumList.forEach( item =>{ |
|
|
|
|
// console.log("列表值=-",this.historyNumList); |
|
|
|
|
if(!!item.industrialId && !!item.industrialName && item.industrialId == record.value ){ |
|
|
|
|
console.log("111====",item); |
|
|
|
|
this.qingKong(record.row.id); |
|
|
|
|
same = true; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
if(same){ |
|
|
|
|
return ; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if ( record.column.key == "industrialId" && !!record.row.industrialName |
|
|
|
|
|| record.column.key =="industrialName" && !!record.row.industrialId ) { |
|
|
|
|
// console.log("select==清空数据",record.row); |
|
|
|
|
this.qingKong(record.row.id); |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
if(this.isShifu && !!record.row.id){ |
|
|
|
|
//查询民爆数据 |
|
|
|
|
await this.getMBShuJu(record.value); |
|
|
|
|
this.isShifu = false; |
|
|
|
|
this.fuZhi(record.row.id,this.MBShuJu); |
|
|
|
|
} |
|
|
|
|
if(record.column.key === "industrialId" && !!record.row.id ){ |
|
|
|
|
this.equipmentList.forEach(item =>{ |
|
|
|
|
if(item.materialsNumber === record.value){ |
|
|
|
|
// console.log("11134234",item); |
|
|
|
|
this.fuZhi(record.row.id,item); |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
//计算金额 |
|
|
|
|
if (!!record.row.quantity && !!record.row.materialPrice && !!record.row.id ) { |
|
|
|
|
// record.row.materialAmount = record.row.materialQuantity * record.row.materialPrice; |
|
|
|
|
console.log("3出发了"); |
|
|
|
|
//回填数据 |
|
|
|
|
if (record.row.id !== undefined) { |
|
|
|
|
let values = [ |
|
|
|
|
{ |
|
|
|
|
rowKey: record.row.id, |
|
|
|
|
values: { |
|
|
|
|
'quantity': record.row.quantity, |
|
|
|
|
'materialAmount': accMul(record.row.materialQuantity,record.row.materialPrice), |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
this.$refs.processIndustrialPurchaseMaterial.setValues(values) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
//物资类型切换 |
|
|
|
|