Browse Source

关联出库流程,回显,上传文件

dev
0.0 2 years ago
parent
commit
201d43e916
  1. 7
      src/components/jeecg/HDelivery.vue
  2. 4
      src/components/jeecg/HPlan.vue
  3. 8
      src/views/activiti/form/ProcessMaterialBorrowingForm.vue
  4. 7
      src/views/activiti/form/ProcessMaterialWarehousingForm.vue
  5. 33
      src/views/activiti/form/ProcessSmaterialsScrapForm.vue

7
src/components/jeecg/HDelivery.vue

@ -189,14 +189,15 @@
if (this.triggerChange) {
//v-dectriggerChangetrue form setFieldsValue
this.$emit('callback', rows[0].id)
this.$emit('callType', rows[0].materialType)
this.$emit('mounted', rows[0].id)
this.$emit('callType', rows[0])
console.log(1)
} else {
//v-model field
// this.$emit("input",row[orgFieldsArr[destFieldsArr.indexOf(this.field)]])
this.$emit('input', this.showText, rows[0].id)
console.log(rows[0].id)
this.$emit('callType', rows[0].materialType)
this.$emit('mounted', rows[0].id)
this.$emit('callType', rows[0])
}
}
}

4
src/components/jeecg/HPlan.vue

@ -197,13 +197,13 @@
//v-dectriggerChangetrue form setFieldsValue
this.$emit('callback', rows[0].id)
this.$emit('mounted', rows[0].id)
this.$emit('callType', rows[0].materialType)
this.$emit('callType', rows[0])
} else {
//v-model field
// this.$emit("input",row[orgFieldsArr[destFieldsArr.indexOf(this.field)]])
this.$emit('input', this.showText, rows[0])
this.$emit('mounted', rows[0].id)
this.$emit('callType', rows[0].materialType)
this.$emit('callType', rows[0])
}
}
}

8
src/views/activiti/form/ProcessMaterialBorrowingForm.vue

@ -402,14 +402,6 @@
throw this.throwNotFunction('classifyIntoFormData')
}
let formData = this.classifyIntoFormData(allValues)
// if (formData.materialType === null || formData.materialType ==='' || formData.materialType === undefined){
// this.$message.error("")
// return;
// }
// if (formData.borrowedDepartments === null || formData.borrowedDepartments ==='' || formData.borrowedDepartments === undefined){
// this.$message.error("")
// return;
// }
this.form.validateFields((err, values) => {
if (!err) {
formData.procDefId = this.processData.id;

7
src/views/activiti/form/ProcessMaterialWarehousingForm.vue

@ -453,10 +453,9 @@ import JSelectCompany from '../../../components/jeecgbiz/JSelectCompany'
// })
},
getcallType(type){
let param={}
param.materialType = type;
this.data=param;
let fieldval =pick(this.data,'materialType')
this.data.materialType = type.materialType;
this.data.processUdgetPlanId=type.id
let fieldval =pick(this.data,'materialType','processUdgetPlanId')
this.$nextTick(() => {
this.form.setFieldsValue(fieldval)
})

33
src/views/activiti/form/ProcessSmaterialsScrapForm.vue

@ -38,8 +38,7 @@
</a-col>
<a-col :span="8">
<a-form-item label="关联出库流程" :labelCol="labelCol" :wrapperCol="wrapperCol">
<h-delivery v-model="processOutflowId" code="demo" field="name" orgFields="name" destFields="name"
@callType="getcallType" :multi="true"/>
<h-delivery v-decorator="['processOutflowId',validatorRules.processOutflowId]" code="demo" field="name" orgFields="name" @mounted="getPlanList" @callType="getcallType" destFields="name":multi="true"/>
</a-form-item>
</a-col>
<a-col :span="8">
@ -59,7 +58,7 @@
:columns="processSmaterialsScrapListTable.columns"
:dataSource="processSmaterialsScrapListTable.dataSource"
:maxHeight="300"
:disabled="this.heid"
:disabled="formDisabled"
:rowNumber="true"
:rowSelection="true"
:actionButton="true"/>
@ -244,6 +243,7 @@
add: '/hy/processSmaterialsScrap/add',
edit: '/hy/processSmaterialsScrap/edit',
queryById: '/hy/processSmaterialsScrap/queryById',
list:"/hy/processMaterialsDelivery/queryProcessMaterialsDeliveryListByMainId",
processSmaterialsScrapList: {
list: '/hy/processSmaterialsScrap/queryProcessSmaterialsScrapListByMainId'
}
@ -251,10 +251,10 @@
btndisabled: false,
validatorRules: {
// 'blur'
materialType: { rules: [{ required: true, message: '请选择物资类型!' }] },
processReturnId: { rules: [{ required: true, message: '关联归还流程不能为空!' }] },
processPlan: { rules: [{ required: true, message: '请选择流程计划!' }] }
}
processOutflowId: {rules: [{ required: true, message: '关联出库流程不能为空!' }]},
processReturnId: {rules:[{ required: true, message: '关联归还流程不能为空!' }]},
processPlan: {rules:[ { required: true, message: '请选择流程计划!'}]}
},
}
},
props: {
@ -350,6 +350,11 @@
}
})
},
getPlanList(id){
let params={}
params.id=id;
this.requestSubTableData(this.url.list, params, this.processSmaterialsScrapListTable)
},
close() {
//todo
this.$emit('close')
@ -372,11 +377,6 @@
}
let formData = this.classifyIntoFormData(allValues)
formData.fileId = getStringArry(formData.fileId)
formData.processOutflowId = this.processOutflowId
if (formData.processOutflowId === null || formData.processOutflowId === '' || formData.processOutflowId === undefined) {
this.$message.error('关联的出库流程不能为空')
return
}
this.form.validateFields((err, values) => {
if (!err) {
formData.procDefId = this.processData.id
@ -408,11 +408,10 @@
})
},
getcallType(type) {
let param = {}
param.materialType = type
this.data = param
let fieldval = pick(this.data, 'materialType')
getcallType(type){
this.data.materialType = type.materialType;
this.data.processOutflowId=type.id
let fieldval =pick(this.data,'materialType','processOutflowId')
this.$nextTick(() => {
this.form.setFieldsValue(fieldval)
})

Loading…
Cancel
Save