Browse Source

修改流程页面

dev
caoyizhong 2 years ago
parent
commit
b9f127e59e
  1. 186
      src/views/activiti/form/ProcessUdgetPlanForm.vue

186
src/views/activiti/form/ProcessUdgetPlanForm.vue

@ -119,6 +119,8 @@
data() {
return {
bigId:[],
bigIdMerchandiseNews:[],
bigIdMerchandiseNewsList:[],
labelCol: {
xs: { span: 24 },
sm: { span: 6 }
@ -156,7 +158,6 @@
width: '200px',
placeholder: '请输入${title}',
options: [],
props:{title: 'show title'}
// scopedSlots: { customRender: 'edit' },//
// customRender:function (t,r,index) {
// console.log(t,r);
@ -171,7 +172,7 @@
dictCode: '',
width: '200px',
placeholder: '请输入${title}',
defaultValue: ''
options: [],
},
// {
// title: '',
@ -240,7 +241,8 @@
{
title: '物料名称及规格型号',
key: 'materialName',
type: FormTypes.sel_search,
type: FormTypes.input,
// type: FormTypes.sel_search,
dictCode: '',
width: '200px',
placeholder: '请输入${title}',
@ -249,7 +251,7 @@
{
title: '系列',
key: 'materialSeries',
type: FormTypes.sel_search,
type: FormTypes.input,
dictCode: '',
width: '200px',
placeholder: '请输入${title}',
@ -258,7 +260,8 @@
{
title: '单位',
key: 'materialUnit',
type: FormTypes.select,
type: FormTypes.input,
// type: FormTypes.select,
dictCode: '',
width: '200px',
placeholder: '请输入${title}',
@ -396,17 +399,55 @@
},
methods: {
onSelect(record) {
// this.$refs.processUdgetPlanMaterial.getValues((error, values) => {
//
// console.log(error, values)
// })
console.log(record.row);
console.log(record.row.materialGroup);
if(record.row.materialGroup.length > 0){
console.log("执行l")
// console.log(record.row);
if(record.row.materialGroup !== '' && record.row.materialGroup !== undefined && record.row.materialNumber === ''){
// console.log("materialGroup")
this.fetchMerchandiseNews(record.row.materialGroup);
}
if(record.row.materialGroup !== '' && record.row.materialGroup !== undefined && record.row.materialNumber !== ''){
// console.log("materialNumber")
let materialName = { }
this.bigIdMerchandiseNewsList.forEach( item => {
if( item.id === record.row.materialNumber ){
materialName ={
name: item.merchandiseName,
unit: item.materialsUnit,
}
}
})
let values = [
{
rowKey: record.row.id,
values: {
'materialNumber': record.row.materialNumber,
'materialGroup': record.row.materialGroup,
'materialSeries':"SM-JD36-BA",
'materialName': materialName.name,
'materialUnit': materialName.unit,
},
},
]
this.$refs.processUdgetPlanMaterial.setValues(values);
}
if(record.row.materialQuantity !== '' && record.row.materialPrice !== '' && record.row.materialQuantity !== undefined && record.row.materialPrice !== undefined){
// record.row.materialAmount = record.row.materialQuantity * record.row.materialPrice;
let values = [
{
rowKey: record.row.id,
values: {
'materialNumber': record.row.materialNumber,
'materialGroup': record.row.materialGroup,
'materialSeries': record.row.materialSeries,
'materialName': record.row.materialName,
'materialUnit': record.row.materialUnit,
'materialAmount': record.row.materialQuantity * record.row.materialPrice
},
},
]
this.$refs.processUdgetPlanMaterial.setValues(values);
}
},
fetchMerchandiseNews(value){ //
@ -415,16 +456,54 @@
delFlag: 0,
descriptionId:value,
}
this.bigId = [];
this.bigIdMerchandiseNews = [];
this.bigIdMerchandiseNewsList = [];
let qc = [];
let numberList = [];
if(this.processUdgetPlanMaterialTable.columns[1].options.length > 0){
this.processUdgetPlanMaterialTable.columns[1].options = [];
}
this.$refs.processUdgetPlanMaterial.getValues((a,b,c)=>{
// console.log(a,b,c)
b.forEach(item =>{
if(item.materialNumber !== '' && item.materialNumber !== undefined && item.materialNumber !== null){
numberList.push(item.materialNumber);
}
});
});
getAction(this.url.merchandiseNewsList,par).then((res)=>{
if(res.success){
console.log(res.result);
// res.result.forEach( item => {
// this.processUdgetPlanMaterialTable.columns[0].options.push({
// title : item.descriptionName,
// value : item.id,
// })
// })
// console.log(res.result);
let newList = res.result;
// console.log("12312312:"+numberList.length);
if(numberList.length > 0){
newList.forEach( item => {
qc.push({
title : item.materialsNumber,
value : item.id,
disabled : false
})
})
numberList.forEach( num => {
qc.forEach( i => {
if(num === i.value){
console.log(num,i.value);
i.disabled = true;
}
});
})
this.processUdgetPlanMaterialTable.columns[1].options = qc;
}else{
newList.forEach( item => {
this.processUdgetPlanMaterialTable.columns[1].options.push({
title : item.materialsNumber,
value : item.id,
disabled : false
})
})
}
// console.log(this.processUdgetPlanMaterialTable.columns[1].options);
this.bigIdMerchandiseNewsList = res.result;
}
});
},
@ -437,7 +516,10 @@
this.bigId = [];
getAction(this.url.descriptionRake,par).then((res)=>{
if(res.success){
console.log(res.result);
// console.log(res.result);
if(this.processUdgetPlanMaterialTable.columns[0].options.length > 0){
this.processUdgetPlanMaterialTable.columns[0].options = [];
}
res.result.forEach( item => {
this.processUdgetPlanMaterialTable.columns[0].options.push({
title : item.descriptionName,
@ -555,35 +637,35 @@
throw this.throwNotFunction('classifyIntoFormData')
}
let formData = this.classifyIntoFormData(allValues)
this.form.validateFields((err, values) => {
if (!err) {
formData.procDefId = this.processData.id;
formData.procDeTitle = this.processData.name;
formData.title=this.processData.description;
if (!formData.tableName)formData.tableName = this.processData.businessTable;
console.log('格式化后的数据',formData)
var url = this.url.add;
let method='post';
if (!this.isNew){
url = this.url.edit;
method='put';
}
console.log('提交方法',method)
this.btndisabled = true;
httpAction(url,formData,method).then((res)=>{
if (res.success){
this.$message.success("保存成功!")
//todo
this.$emit('afterSubmit',formData)
}else {
this.$message.error(res.message)
}
}).finally(()=>{
this.btndisabled = false;
})
}
})
console.log('格式化后的数据',formData)
// this.form.validateFields((err, values) => {
// if (!err) {
// formData.procDefId = this.processData.id;
// formData.procDeTitle = this.processData.name;
// formData.title=this.processData.description;
// if (!formData.tableName)formData.tableName = this.processData.businessTable;
// console.log('',formData)
// var url = this.url.add;
// let method='post';
// if (!this.isNew){
// url = this.url.edit;
// method='put';
// }
// console.log('',method)
// this.btndisabled = true;
// httpAction(url,formData,method).then((res)=>{
// if (res.success){
// this.$message.success("")
// //todo
// this.$emit('afterSubmit',formData)
// }else {
// this.$message.error(res.message)
// }
// }).finally(()=>{
// this.btndisabled = false;
// })
// }
// })
})
},

Loading…
Cancel
Save