|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
<template> |
|
|
|
|
|
|
|
|
|
<a-spin :spinning="confirmLoading" style="height: 680px;padding-top: 10px"> |
|
|
|
|
<j-form-container :disabled="formDisabled" style="background-color: #efefef;padding-top: 10px" > |
|
|
|
|
<j-form-container style="background-color: #efefef;padding-top: 10px" > |
|
|
|
|
<!-- 主表单区域 --> |
|
|
|
|
<a-form :form="form" slot="detail"> |
|
|
|
|
<a-row> |
|
|
|
@ -37,22 +37,22 @@
|
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :span="8"> |
|
|
|
|
<a-form-item label="物资类型" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
|
<j-dict-select-tag type="list" v-decorator="['materialType',validatorRules.materialType]" |
|
|
|
|
<a-form-item label="物资类型" :labelCol="labelCol" :wrapperCol="wrapperCol" > |
|
|
|
|
<j-dict-select-tag type="list" v-decorator="['materialType',validatorRules.materialType]" :disabled="formDisabled" |
|
|
|
|
:trigger-change="true" dictCode="material_type" |
|
|
|
|
placeholder="请选择物资类型" @change="elect"/> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :span="8"> |
|
|
|
|
<a-form-item label="流程计划" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
|
<j-dict-select-tag type="list" v-decorator="['processPlan',validatorRules.processPlan]" |
|
|
|
|
<a-form-item label="流程计划" :labelCol="labelCol" :wrapperCol="wrapperCol" > |
|
|
|
|
<j-dict-select-tag type="list" v-decorator="['processPlan',validatorRules.processPlan]" :disabled="formDisabled" |
|
|
|
|
:trigger-change="true" dictCode="process_plan" |
|
|
|
|
placeholder="请选择流程计划"/> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :span="8"> |
|
|
|
|
<a-form-item label="需求时间" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
|
<j-date placeholder="请选择需求时间" v-decorator="['needTime',validatorRules.needTime]" :trigger-change="true" |
|
|
|
|
<a-form-item label="需求时间" :labelCol="labelCol" :wrapperCol="wrapperCol" > |
|
|
|
|
<j-date placeholder="请选择需求时间" v-decorator="['needTime',validatorRules.needTime]" :trigger-change="true" :disabled="formDisabled" |
|
|
|
|
:show-time="true" date-format="YYYY-MM-DD HH:mm:ss" style="width: 100%"/> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
@ -90,10 +90,22 @@
|
|
|
|
|
placeholder="请选择是否需要送检"/> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :span="8" v-if="isBuyerName"> |
|
|
|
|
<a-form-item label="采购项目名称" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
|
<a-input v-decorator="['buyerName',validatorRules.buyerName]" placeholder="请输入采购项目名称" |
|
|
|
|
style="width: 100%"/> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :span="8" v-if="lead"> |
|
|
|
|
<a-form-item label="部门签收人" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
|
<!-- <a-input v-decorator="['signer',validatorRules.signer]" placeholder="请选择部门签收人" style="width: 100%"/>--> |
|
|
|
|
<j-select-user-by-dep v-decorator="['signer',validatorRules.signer]"/> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
|
|
|
|
|
<a-col :span="8"> |
|
|
|
|
<a-form-item label="文件" :labelCol="labelCol3" :wrapperCol="wrapperCol3"> |
|
|
|
|
<j-upload v-decorator="['fileId']" :trigger-change="true" style="z-index: 999"></j-upload> |
|
|
|
|
<a-col :span="8" > |
|
|
|
|
<a-form-item label="文件" :labelCol="labelCol3" :wrapperCol="wrapperCol3" > |
|
|
|
|
<j-upload v-decorator="['fileId']" :trigger-change="true" style="z-index: 999" :disabled="formDisabled"></j-upload> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
|
|
|
|
@ -200,7 +212,7 @@
|
|
|
|
|
|
|
|
|
|
const VALIDATE_NO_PASSED = Symbol() |
|
|
|
|
import pick from 'lodash.pick' |
|
|
|
|
import { getAction, httpAction, getCurrentTime, getStringArry, getRecord, downFile } from '@/api/manage' |
|
|
|
|
import { getAction, httpAction, getCurrentTime, getStringArry, getRecord, downFile,putAction } from '@/api/manage' |
|
|
|
|
import { FormTypes, getRefPromise, validateFormAndTables } from '@/utils/JEditableTableUtil' |
|
|
|
|
import { JEditableTableMixin } from '@/mixins/JEditableTableMixin' |
|
|
|
|
import JFormContainer from '@/components/jeecg/JFormContainer' |
|
|
|
@ -215,41 +227,6 @@
|
|
|
|
|
import { queryDepartTreeList } from '@api/api' |
|
|
|
|
import { accMul } from '../../../../common/common' |
|
|
|
|
|
|
|
|
|
// const columns = [ |
|
|
|
|
// { |
|
|
|
|
// title: 'name', |
|
|
|
|
// dataIndex: 'name', |
|
|
|
|
// width: '25%', |
|
|
|
|
// scopedSlots: { customRender: 'name' }, |
|
|
|
|
// }, |
|
|
|
|
// { |
|
|
|
|
// title: 'age', |
|
|
|
|
// dataIndex: 'age', |
|
|
|
|
// width: '15%', |
|
|
|
|
// scopedSlots: { customRender: 'age' }, |
|
|
|
|
// }, |
|
|
|
|
// { |
|
|
|
|
// title: 'address', |
|
|
|
|
// dataIndex: 'address', |
|
|
|
|
// width: '40%', |
|
|
|
|
// scopedSlots: { customRender: 'address' }, |
|
|
|
|
// }, |
|
|
|
|
// { |
|
|
|
|
// title: 'operation', |
|
|
|
|
// dataIndex: 'operation', |
|
|
|
|
// scopedSlots: { customRender: 'operation' }, |
|
|
|
|
// }, |
|
|
|
|
// ]; |
|
|
|
|
// const data = []; |
|
|
|
|
// for (let i = 0; i < 100; i++) { |
|
|
|
|
// data.push({ |
|
|
|
|
// key: i.toString(), |
|
|
|
|
// name: `Edrward ${i}`, |
|
|
|
|
// age: 32, |
|
|
|
|
// address: `London Park no. ${i}`, |
|
|
|
|
// }); |
|
|
|
|
// } |
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
|
name: 'ProcessUdgetPlanForm', |
|
|
|
|
mixins: [JEditableTableMixin], |
|
|
|
@ -295,6 +272,8 @@
|
|
|
|
|
historyPrice: {}, |
|
|
|
|
isHistoryBigId: false, |
|
|
|
|
isIfInspection: false, |
|
|
|
|
isBuyerNames: false, |
|
|
|
|
leads: false, |
|
|
|
|
bigIdMerchandiseNews: [], |
|
|
|
|
bigIdMerchandiseNewsList: [], |
|
|
|
|
labelCol: { |
|
|
|
@ -569,6 +548,7 @@
|
|
|
|
|
url: { |
|
|
|
|
add: '/hy/processUdgetPlan/add', |
|
|
|
|
edit: '/hy/processUdgetPlan/edit', |
|
|
|
|
queryByIdUpdate: '/hy/processUdgetPlan/queryByIdUpdate', |
|
|
|
|
getSortOrder: '/hy/processUdgetPlan/querySortOrder', |
|
|
|
|
addFromTableApply: '/hy/processUdgetPlan/addFromTableApply', |
|
|
|
|
editFromTableApply: '/hy/processUdgetPlan/editFromTableApply', |
|
|
|
@ -600,6 +580,8 @@
|
|
|
|
|
sourceCapital: { rules: [{ required: true, message: '请选择资金来源!' }] }, |
|
|
|
|
planType: { rules: [{ required: true, message: '请选择采购类型!' }] }, |
|
|
|
|
ifInspection: { rules: [{ required: true, message: '请选择是否送检!' }] }, |
|
|
|
|
buyerName: { rules: [{ required: true, message: '请输入采购项目名称!' }] }, |
|
|
|
|
signer: { rules: [{ required: true, message: '请选择部门签收人!' }] }, |
|
|
|
|
processPlan: { rules: [{ required: true, message: '请选择流程计划!' }] }, |
|
|
|
|
sort: { |
|
|
|
|
rules: [{ required: true, type: 'number', max: 999999999999, message: '请输入序号!(0 ~ 12个数字)' } |
|
|
|
@ -625,6 +607,8 @@
|
|
|
|
|
isNew: { type: Boolean, default: false, required: false }, |
|
|
|
|
/*是否处理流程*/ |
|
|
|
|
task: { type: Boolean, default: false, required: false }, |
|
|
|
|
isBuyerName: { type: Boolean, default: false, required: false }, |
|
|
|
|
lead: { type: Boolean, default: false, required: false }, |
|
|
|
|
/*采购类型*/ |
|
|
|
|
isPlanType: { type: Boolean, default: false, required: false }, |
|
|
|
|
/*资金来源*/ |
|
|
|
@ -1293,6 +1277,7 @@
|
|
|
|
|
id: r.tableId |
|
|
|
|
}).then((res) => { |
|
|
|
|
if (res.success) { |
|
|
|
|
console.log("??????????????",res.result); |
|
|
|
|
// this.planType = res.result.planType |
|
|
|
|
let formData = res.result |
|
|
|
|
formData.tableName = r.tableName |
|
|
|
@ -1319,7 +1304,7 @@
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
console.log("qwerqwe..........",this.lead,this.isBuyerName); |
|
|
|
|
this.editAfter() |
|
|
|
|
this.btndisabled = false |
|
|
|
|
} else { |
|
|
|
@ -1333,7 +1318,36 @@
|
|
|
|
|
}, |
|
|
|
|
/*通过审批*/ |
|
|
|
|
passTask() { |
|
|
|
|
this.$emit('passTask') |
|
|
|
|
if(this.isBuyerName || this.lead){ |
|
|
|
|
this.getAllTable().then(tables => { |
|
|
|
|
return validateFormAndTables(this.form, tables) |
|
|
|
|
}).then( allValues => { |
|
|
|
|
if (typeof this.classifyIntoFormData !== 'function') { |
|
|
|
|
throw this.throwNotFunction('classifyIntoFormData') |
|
|
|
|
} |
|
|
|
|
let formData = this.classifyIntoFormData(allValues) |
|
|
|
|
console.log("1321231313112",formData); |
|
|
|
|
let pre = { |
|
|
|
|
id : formData.id, |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
if(this.isBuyerName){ |
|
|
|
|
pre.buyerName= formData.buyerName; |
|
|
|
|
} |
|
|
|
|
if(this.lead){ |
|
|
|
|
pre.signer= formData.signer; |
|
|
|
|
} |
|
|
|
|
putAction(this.url.queryByIdUpdate,pre).then(res =>{ |
|
|
|
|
if(res.success){ |
|
|
|
|
// console.log("修改采购"); |
|
|
|
|
this.$emit('passTask'); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
}else{ |
|
|
|
|
this.$emit('passTask') |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
/*导出world*/ |
|
|
|
|
ewrold() { |
|
|
|
@ -1569,7 +1583,7 @@
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
console.log(this.data, '数据回显') |
|
|
|
|
let fieldval = pick(this.data, 'id','putUnder', 'planType', 'company', 'createTime', 'departId', 'createBy', 'materialType', 'processPlan', 'needTime', 'sort', 'orderNumber', 'fileId', 'opinion', 'sourceCapital', 'ifDirect', 'ifInspection') |
|
|
|
|
let fieldval = pick(this.data, 'id','putUnder', 'planType', 'company', 'createTime','buyerName','signer', 'departId', 'createBy', 'materialType', 'processPlan', 'needTime', 'sort', 'orderNumber', 'fileId', 'opinion', 'sourceCapital', 'ifDirect', 'ifInspection') |
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
this.assigneesText = this.data.materialType |
|
|
|
|
this.form.setFieldsValue(fieldval) |
|
|
|
|