Browse Source

修改物资入库下载名称

dev
long 2 years ago
parent
commit
0cd8befad8
  1. 2
      src/views/activiti/form/ProcessMaterialsAllotForm.vue
  2. 12
      src/views/activiti/form/ProcessUdgetPlanForm.vue

2
src/views/activiti/form/ProcessMaterialsAllotForm.vue

@ -43,7 +43,7 @@
<a-col :span="8">
<a-form-item label="物资类型" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-dict-select-tag type="list" @change="materialType"
v-decorator="['materialType']" :trigger-change="true"
v-decorator="['materialType',validatorRules.materialType]" :trigger-change="true"
dictCode="material_type" placeholder="请选择物资类型" :disabled="issh" />
</a-form-item>
</a-col>

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

@ -907,6 +907,8 @@
//5
if (record.row.materialPrice > 50000) {
this.materialPrice = record.row.materialPrice
console.log("record.row.materialPrice ",)
console.log(record.row.materialPrice)
}
//
if (record.row.id !== undefined) {
@ -1166,7 +1168,11 @@
}
}
formData.fileId = getStringArry(formData.fileId)
formData.materialPrice = this.materialPrice
if (this.materialPrice!=0){
if (this.materialPrice!=0){
formData.materialPrice = this.materialPrice
}
}
formData.describes = this.describes
if (new Date(formData.createTime).getTime() / 100 > new Date(formData.needTime).getTime() / 100) {
this.$message.error('需求时间不能小于当前流程发起时间')
@ -1370,7 +1376,9 @@
}
}
formData.fileId = getStringArry(formData.fileId)
formData.materialPrice = this.materialPrice
if (this.materialPrice!=0){
formData.materialPrice = this.materialPrice
}
formData.describes = this.describes
// if (this.isPlanType){
// if (!formData.planType){

Loading…
Cancel
Save